polardbxengine/mysql-test/suite/x/r/update_table.result

227 lines
3.8 KiB
Plaintext

CREATE DATABASE `ytest`;
0 rows affected
1 rows affected
0 rows affected
1 rows affected
1 rows affected
1 rows affected
1 rows affected
1 rows affected
0 rows affected
5 rows affected
Records: 5 Duplicates: 0 Warnings: 0
Rel: Update a valid row
1 rows affected
Rows matched: 1 Changed: 1 Warnings: 0
id name price
1 lemon 1.20
2 apple 0.25
3 tomato 1.80
4 mango 3.14
5 orange 0.90
0 rows affected
0 rows affected
5 rows affected
Records: 5 Duplicates: 0 Warnings: 0
Rel: Update non-existing row
0 rows affected
Rows matched: 0 Changed: 0 Warnings: 0
id name price
1 banana 1.20
2 apple 0.25
3 tomato 1.80
4 mango 3.14
5 orange 0.90
0 rows affected
0 rows affected
5 rows affected
Records: 5 Duplicates: 0 Warnings: 0
Rel: Update multiple rows
3 rows affected
Rows matched: 3 Changed: 3 Warnings: 0
id name price
1 lemon 1.20
2 apple 0.25
3 lemon 1.80
4 lemon 3.14
5 orange 0.90
0 rows affected
0 rows affected
5 rows affected
Records: 5 Duplicates: 0 Warnings: 0
Rel: Update all rows (no criteria)
5 rows affected
Rows matched: 5 Changed: 5 Warnings: 0
id name price
1 lemon 1.20
2 lemon 0.25
3 lemon 1.80
4 lemon 3.14
5 lemon 0.90
0 rows affected
0 rows affected
5 rows affected
Records: 5 Duplicates: 0 Warnings: 0
Rel: Update two first rows in desc order
2 rows affected
Rows matched: 2 Changed: 2 Warnings: 0
id name price
1 banana 1.20
2 apple 0.25
3 lemon 1.80
4 lemon 3.14
5 orange 0.90
0 rows affected
0 rows affected
5 rows affected
Records: 5 Duplicates: 0 Warnings: 0
Rel: Update non-existing column
Got expected error: Unknown column 'noname' in 'field list' (code 1054)
id name price
1 banana 1.20
2 apple 0.25
3 tomato 1.80
4 mango 3.14
5 orange 0.90
0 rows affected
0 rows affected
5 rows affected
Records: 5 Duplicates: 0 Warnings: 0
Rel: Update on a table with expression on invalid columns
Got expected error: Unknown column 'noprice' in 'where clause' (code 1054)
id name price
1 banana 1.20
2 apple 0.25
3 tomato 1.80
4 mango 3.14
5 orange 0.90
0 rows affected
0 rows affected
5 rows affected
Records: 5 Duplicates: 0 Warnings: 0
Rel: Update with empty operations type
Got expected error: Invalid update expression list (code 5050)
id name price
1 banana 1.20
2 apple 0.25
3 tomato 1.80
4 mango 3.14
5 orange 0.90
0 rows affected
0 rows affected
5 rows affected
Records: 5 Duplicates: 0 Warnings: 0
Rel: Update source column with table
Got expected error: Invalid column name to update (code 5052)
id name price
1 banana 1.20
2 apple 0.25
3 tomato 1.80
4 mango 3.14
5 orange 0.90
0 rows affected
0 rows affected
5 rows affected
Records: 5 Duplicates: 0 Warnings: 0
Rel: Update source column with table
Got expected error: Invalid column name to update (code 5052)
id name price
1 banana 1.20
2 apple 0.25
3 tomato 1.80
4 mango 3.14
5 orange 0.90
0 rows affected
0 rows affected
5 rows affected
Records: 5 Duplicates: 0 Warnings: 0
Rel: Update source column with table and schema
Got expected error: Invalid column name to update (code 5052)
id name price
1 banana 1.20
2 apple 0.25
3 tomato 1.80
4 mango 3.14
5 orange 0.90
0 rows affected
0 rows affected
5 rows affected
Records: 5 Duplicates: 0 Warnings: 0
Rel: Update on an invalid schema
Got expected error: Table 'ytest.xtable' doesn't exist (code 1146)
id name price
1 banana 1.20
2 apple 0.25
3 tomato 1.80
4 mango 3.14
5 orange 0.90
0 rows affected
0 rows affected
5 rows affected
Records: 5 Duplicates: 0 Warnings: 0
Rel: Update on an invalid collection
Got expected error: Table 'xtest.ytable' doesn't exist (code 1146)
id name price
1 banana 1.20
2 apple 0.25
3 tomato 1.80
4 mango 3.14
5 orange 0.90
0 rows affected
Rel: Update one field twice
5 rows affected
Rows matched: 5 Changed: 5 Warnings: 0
id name price
1 lemon 1.20
2 lemon 0.25
3 lemon 1.80
4 lemon 3.14
5 lemon 0.90
0 rows affected
Mysqlx.Ok {
msg: "bye!"
}
ok
drop schema ytest;
drop schema xtest;