1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-17 09:41:06 +03:00
Files
mariadb-columnstore-engine/mysql/queries/nightly/srvswdev11/test297/rowsAffected.sql.ref.log
2016-01-06 14:08:59 -06:00

61 lines
804 B
Plaintext

--------------
drop table if exists a
--------------
Query OK, 0 rows affected, 1 warning
--------------
create table a (a char(20)) engine=infinidb
--------------
Query OK, 0 rows affected
--------------
insert into a values ('x')
--------------
Query OK, 1 row affected
--------------
select * from a
--------------
a
x
1 row in set
--------------
update a join a y on a.a = y.a set a.a='99'
--------------
Query OK, 1 row affected
Rows matched: 0 Changed: 0 Warnings: 0
--------------
select * from a
--------------
a
99
1 row in set
--------------
delete from a where a in (select x.a from (select a from a) x)
--------------
Query OK, 1 row affected
--------------
select * from a
--------------
Empty set
--------------
drop table a
--------------
Query OK, 0 rows affected
Bye