mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	mysql-test/include/have_ndb_extra.inc: New BitKeeper file ``mysql-test/include/have_ndb_extra.inc'' mysql-test/include/not_ndb.inc: New BitKeeper file ``mysql-test/include/not_ndb.inc'' mysql-test/r/have_ndb_extra.require: New BitKeeper file ``mysql-test/r/have_ndb_extra.require'' mysql-test/r/ndb_alter_table_row.result: New BitKeeper file ``mysql-test/r/ndb_alter_table_row.result'' mysql-test/r/ndb_alter_table_stm.result: New BitKeeper file ``mysql-test/r/ndb_alter_table_stm.result'' mysql-test/r/ndb_binlog_basic.result: New BitKeeper file ``mysql-test/r/ndb_binlog_basic.result'' mysql-test/r/ndb_binlog_multi.result: New BitKeeper file ``mysql-test/r/ndb_binlog_multi.result'' mysql-test/r/ndb_multi_row.result: New BitKeeper file ``mysql-test/r/ndb_multi_row.result'' mysql-test/r/not_ndb.require: New BitKeeper file ``mysql-test/r/not_ndb.require'' mysql-test/r/rpl_ndb_bank.result: New BitKeeper file ``mysql-test/r/rpl_ndb_bank.result'' mysql-test/r/rpl_ndb_basic.result: New BitKeeper file ``mysql-test/r/rpl_ndb_basic.result'' mysql-test/r/rpl_ndb_disk.result: New BitKeeper file ``mysql-test/r/rpl_ndb_disk.result'' mysql-test/r/rpl_ndb_idempotent.result: New BitKeeper file ``mysql-test/r/rpl_ndb_idempotent.result'' mysql-test/r/rpl_ndb_load.result: New BitKeeper file ``mysql-test/r/rpl_ndb_load.result'' mysql-test/r/rpl_ndb_multi.result: New BitKeeper file ``mysql-test/r/rpl_ndb_multi.result'' mysql-test/r/rpl_ndb_sync.result: New BitKeeper file ``mysql-test/r/rpl_ndb_sync.result'' mysql-test/r/rpl_row_basic_7ndb.result: New BitKeeper file ``mysql-test/r/rpl_row_basic_7ndb.result'' mysql-test/t/ndb_alter_table_row.test: New BitKeeper file ``mysql-test/t/ndb_alter_table_row.test'' mysql-test/t/ndb_alter_table_stm.test: New BitKeeper file ``mysql-test/t/ndb_alter_table_stm.test'' mysql-test/t/ndb_binlog_basic.test: New BitKeeper file ``mysql-test/t/ndb_binlog_basic.test'' mysql-test/t/ndb_binlog_multi.test: New BitKeeper file ``mysql-test/t/ndb_binlog_multi.test'' mysql-test/t/ndb_multi_row.test: New BitKeeper file ``mysql-test/t/ndb_multi_row.test'' mysql-test/t/rpl_ndb_bank.test: New BitKeeper file ``mysql-test/t/rpl_ndb_bank.test'' mysql-test/t/rpl_ndb_basic.test: New BitKeeper file ``mysql-test/t/rpl_ndb_basic.test'' mysql-test/t/rpl_ndb_disk.test: New BitKeeper file ``mysql-test/t/rpl_ndb_disk.test'' mysql-test/t/rpl_ndb_idempotent.test: New BitKeeper file ``mysql-test/t/rpl_ndb_idempotent.test'' mysql-test/t/rpl_ndb_load.test: New BitKeeper file ``mysql-test/t/rpl_ndb_load.test'' mysql-test/t/rpl_ndb_multi.test: New BitKeeper file ``mysql-test/t/rpl_ndb_multi.test'' mysql-test/t/rpl_ndb_sync.test: New BitKeeper file ``mysql-test/t/rpl_ndb_sync.test'' mysql-test/t/rpl_row_basic_7ndb.test: New BitKeeper file ``mysql-test/t/rpl_row_basic_7ndb.test'' sql/ha_ndbcluster_binlog.cc: New BitKeeper file ``sql/ha_ndbcluster_binlog.cc'' sql/ha_ndbcluster_binlog.h: New BitKeeper file ``sql/ha_ndbcluster_binlog.h'' sql/ha_ndbcluster_tables.h: New BitKeeper file ``sql/ha_ndbcluster_tables.h'' sql/rpl_injector.cc: New BitKeeper file ``sql/rpl_injector.cc'' sql/rpl_injector.h: New BitKeeper file ``sql/rpl_injector.h'' storage/ndb/include/kernel/signaldata/DihFragCount.hpp: New BitKeeper file ``storage/ndb/include/kernel/signaldata/DihFragCount.hpp''
		
			
				
	
	
		
			77 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
drop table if exists t1;
 | 
						|
drop database if exists mysqltest;
 | 
						|
drop database if exists client_test_db;
 | 
						|
drop table t1;
 | 
						|
ERROR 42S02: Unknown table 't1'
 | 
						|
create table t1(n int);
 | 
						|
insert into t1 values(1);
 | 
						|
create temporary table t1( n int);
 | 
						|
insert into t1 values(2);
 | 
						|
create table t1(n int);
 | 
						|
ERROR 42S01: Table 't1' already exists
 | 
						|
drop table t1;
 | 
						|
select * from t1;
 | 
						|
n
 | 
						|
1
 | 
						|
create database mysqltest;
 | 
						|
drop database if exists mysqltest;
 | 
						|
create database mysqltest;
 | 
						|
create table mysqltest.mysqltest (n int);
 | 
						|
insert into mysqltest.mysqltest values (4);
 | 
						|
select * from mysqltest.mysqltest;
 | 
						|
n
 | 
						|
4
 | 
						|
drop database if exists mysqltest;
 | 
						|
affected rows: 1
 | 
						|
create database mysqltest;
 | 
						|
use mysqltest;
 | 
						|
drop table table1, table2, table3, table4, table5, table6,
 | 
						|
table7, table8, table9, table10, table11, table12, table13,
 | 
						|
table14, table15, table16, table17, table18, table19, table20,
 | 
						|
table21, table22, table23, table24, table25, table26, table27,
 | 
						|
table28;
 | 
						|
ERROR 42S02: Unknown table 'table1,table2,table3,table4,table5,table6,table7,table8,table9,table10,table11,table12,table13,table'
 | 
						|
drop table table1, table2, table3, table4, table5, table6,
 | 
						|
table7, table8, table9, table10, table11, table12, table13,
 | 
						|
table14, table15, table16, table17, table18, table19, table20,
 | 
						|
table21, table22, table23, table24, table25, table26, table27,
 | 
						|
table28, table29, table30;
 | 
						|
ERROR 42S02: Unknown table 'table1,table2,table3,table4,table5,table6,table7,table8,table9,table10,table11,table12,table13,table'
 | 
						|
use test;
 | 
						|
drop database mysqltest;
 | 
						|
flush tables with read lock;
 | 
						|
create database mysqltest;
 | 
						|
Got one of the listed errors
 | 
						|
unlock tables;
 | 
						|
create database mysqltest;
 | 
						|
show databases;
 | 
						|
Database
 | 
						|
information_schema
 | 
						|
cluster_replication
 | 
						|
mysql
 | 
						|
mysqltest
 | 
						|
test
 | 
						|
flush tables with read lock;
 | 
						|
drop database mysqltest;
 | 
						|
Got one of the listed errors
 | 
						|
unlock tables;
 | 
						|
drop database mysqltest;
 | 
						|
show databases;
 | 
						|
Database
 | 
						|
information_schema
 | 
						|
cluster_replication
 | 
						|
mysql
 | 
						|
test
 | 
						|
drop database mysqltest;
 | 
						|
ERROR HY000: Can't drop database 'mysqltest'; database doesn't exist
 | 
						|
drop table t1;
 | 
						|
flush tables with read lock;
 | 
						|
create table t1(n int);
 | 
						|
ERROR HY000: Can't execute the query because you have a conflicting read lock
 | 
						|
unlock tables;
 | 
						|
create table t1(n int);
 | 
						|
show tables;
 | 
						|
Tables_in_test
 | 
						|
t1
 | 
						|
drop table t1;
 |