mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	Changed error message to be compatible with old error file Added new error message for new DUP_ENTRY syntax BUILD/SETUP.sh: Give warnings for unused objects mysql-test/extra/binlog_tests/insert_select-binlog.test: Changed to use new error message mysql-test/extra/binlog_tests/mix_innodb_myisam_binlog.test: Changed to use new error message mysql-test/extra/rpl_tests/rpl_auto_increment.test: Changed to use new error message mysql-test/extra/rpl_tests/rpl_foreign_key.test: Changed to use new error message mysql-test/extra/rpl_tests/rpl_insert_id.test: Changed to use new error message mysql-test/extra/rpl_tests/rpl_insert_id_pk.test: Changed to use new error message mysql-test/extra/rpl_tests/rpl_loaddata.test: Changed to use new error message mysql-test/extra/rpl_tests/rpl_row_basic.test: Changed to use new error message mysql-test/extra/rpl_tests/rpl_stm_EE_err2.test: Changed to use new error message mysql-test/extra/rpl_tests/rpl_trig004.test: Changed to use new error message mysql-test/include/mix1.inc: Changed to use new error message mysql-test/include/mix2.inc: Changed to use new error message mysql-test/include/ps_modify.inc: Changed to use new error message mysql-test/include/query_cache.inc: Changed to use new error message mysql-test/include/varchar.inc: Changed to use new error message mysql-test/r/create.result: Changed to use new error message mysql-test/r/rpl_sp.result: Changed to use new error message mysql-test/r/sp.result: Changed to use new error message mysql-test/r/view.result: Changed to use new error message mysql-test/t/auto_increment.test: Changed to use new error message mysql-test/t/create.test: Changed to use new error message mysql-test/t/create_select_tmp.test: Changed to use new error message mysql-test/t/ctype_utf8.test: Changed to use new error message mysql-test/t/delayed.test: Changed to use new error message mysql-test/t/heap.test: Changed to use new error message mysql-test/t/heap_btree.test: Changed to use new error message mysql-test/t/heap_hash.test: Changed to use new error message mysql-test/t/innodb.test: Changed to use new error message mysql-test/t/insert_select.test: Changed to use new error message mysql-test/t/insert_update.test: Changed to use new error message mysql-test/t/join_outer.test: Changed to use new error message mysql-test/t/key.test: Changed to use new error message mysql-test/t/merge.test: Changed to use new error message mysql-test/t/myisam.test: Changed to use new error message mysql-test/t/ndb_charset.test: Changed to use new error message mysql-test/t/ndb_index_unique.test: Changed to use new error message mysql-test/t/ndb_insert.test: Changed to use new error message mysql-test/t/ndb_replace.test: Changed to use new error message mysql-test/t/ndb_update.test: Changed to use new error message mysql-test/t/replace.test: Changed to use new error message mysql-test/t/rpl_err_ignoredtable.test: Changed to use new error message mysql-test/t/rpl_row_create_table.test: Changed to use new error message mysql-test/t/rpl_skip_error-slave.opt: Changed to use new error message mysql-test/t/rpl_sp.test: Changed to use new error message mysql-test/t/show_check.test: Changed to use new error message mysql-test/t/sp-error.test: Changed to use new error message mysql-test/t/sp.test: Changed to use new error message mysql-test/t/sp_trans.test: Changed to use new error message mysql-test/t/temp_table.test: Changed to use new error message mysql-test/t/type_binary.test: Changed to use new error message mysql-test/t/type_bit.test: Changed to use new error message mysql-test/t/type_bit_innodb.test: Changed to use new error message mysql-test/t/type_blob.test: Changed to use new error message mysql-test/t/type_varchar.test: Changed to use new error message mysql-test/t/view.test: Changed to use new error message sql/handler.cc: ER_DUP_ENTRY -> ER_DUP_ENTRY_WITH_KEY_NAME sql/share/errmsg.txt: Changed error message to be compatible with old error file Added new error message for new DUP_ENTRY syntax sql/sql_table.cc: ER_DUP_ENTRY -> ER_DUP_ENTRY_WITH_KEY_NAME sql-bench/example: Example file for how to run tests
		
			
				
	
	
		
			258 lines
		
	
	
		
			6.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			258 lines
		
	
	
		
			6.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| --source include/have_ndb.inc
 | |
| -- source include/not_embedded.inc
 | |
| 
 | |
| --disable_warnings
 | |
| drop table if exists t1;
 | |
| --enable_warnings
 | |
| 
 | |
| #
 | |
| # Minimal NDB charset test.
 | |
| #
 | |
| 
 | |
| # pk - binary
 | |
| 
 | |
| create table t1 (
 | |
|   a char(3) character set latin1 collate latin1_bin primary key
 | |
| ) engine=ndb;
 | |
| # ok
 | |
| insert into t1 values('aAa');
 | |
| insert into t1 values('aaa');
 | |
| insert into t1 values('AAA');
 | |
| # 3
 | |
| select * from t1 order by a;
 | |
| # 1
 | |
| select * from t1 where a = 'aAa';
 | |
| # 1
 | |
| select * from t1 where a = 'aaa';
 | |
| # 0
 | |
| select * from t1 where a = 'AaA';
 | |
| # 1
 | |
| select * from t1 where a = 'AAA';
 | |
| drop table t1;
 | |
| 
 | |
| # pk - case insensitive
 | |
| 
 | |
| create table t1 (
 | |
|   a char(3) character set latin1 collate latin1_swedish_ci primary key
 | |
| ) engine=ndb;
 | |
| # ok
 | |
| insert into t1 values('aAa');
 | |
| # fail
 | |
| --error ER_DUP_ENTRY_WITH_KEY_NAME
 | |
| insert into t1 values('aaa');
 | |
| --error ER_DUP_ENTRY_WITH_KEY_NAME
 | |
| insert into t1 values('AAA');
 | |
| # 1
 | |
| select * from t1 order by a;
 | |
| # 1
 | |
| select * from t1 where a = 'aAa';
 | |
| # 1
 | |
| select * from t1 where a = 'aaa';
 | |
| # 1
 | |
| select * from t1 where a = 'AaA';
 | |
| # 1
 | |
| select * from t1 where a = 'AAA';
 | |
| drop table t1;
 | |
| 
 | |
| # pk - varchar
 | |
| 
 | |
| create table t1 (
 | |
|   a varchar(20) character set latin1 collate latin1_swedish_ci primary key
 | |
| ) engine=ndb;
 | |
| #
 | |
| insert into t1 values ('A'),('b '),('C  '),('d      '),('E'),('f');
 | |
| -- error ER_DUP_ENTRY_WITH_KEY_NAME
 | |
| insert into t1 values('b');
 | |
| -- error ER_DUP_ENTRY_WITH_KEY_NAME
 | |
| insert into t1 values('a         ');
 | |
| #
 | |
| select a,length(a) from t1 order by a;
 | |
| select a,length(a) from t1 order by a desc;
 | |
| select * from t1 where a = 'a';
 | |
| select * from t1 where a = 'a   ';
 | |
| select * from t1 where a = 'd';
 | |
| drop table t1;
 | |
| 
 | |
| # unique hash index - binary
 | |
| 
 | |
| create table t1 (
 | |
|   p int primary key,
 | |
|   a char(3) character set latin1 collate latin1_bin not null,
 | |
|   unique key(a)
 | |
| ) engine=ndb;
 | |
| # ok
 | |
| insert into t1 values(1, 'aAa');
 | |
| insert into t1 values(2, 'aaa');
 | |
| insert into t1 values(3, 'AAA');
 | |
| # 3
 | |
| select * from t1 order by p;
 | |
| # 1
 | |
| select * from t1 where a = 'aAa';
 | |
| # 1
 | |
| select * from t1 where a = 'aaa';
 | |
| # 0
 | |
| select * from t1 where a = 'AaA';
 | |
| # 1
 | |
| select * from t1 where a = 'AAA';
 | |
| drop table t1;
 | |
| 
 | |
| # unique hash index - case insensitive
 | |
| 
 | |
| create table t1 (
 | |
|   p int primary key,
 | |
|   a char(3) character set latin1 collate latin1_swedish_ci not null,
 | |
|   unique key(a)
 | |
| ) engine=ndb;
 | |
| # ok
 | |
| insert into t1 values(1, 'aAa');
 | |
| # fail
 | |
| --error ER_DUP_ENTRY_WITH_KEY_NAME
 | |
| insert into t1 values(2, 'aaa');
 | |
| --error ER_DUP_ENTRY_WITH_KEY_NAME
 | |
| insert into t1 values(3, 'AAA');
 | |
| # 1
 | |
| select * from t1 order by p;
 | |
| # 1
 | |
| select * from t1 where a = 'aAa';
 | |
| # 1
 | |
| select * from t1 where a = 'aaa';
 | |
| # 1
 | |
| select * from t1 where a = 'AaA';
 | |
| # 1
 | |
| select * from t1 where a = 'AAA';
 | |
| drop table t1;
 | |
| 
 | |
| # unique hash index - varchar
 | |
| 
 | |
| create table t1 (
 | |
|   p int primary key,
 | |
|   a varchar(20) character set latin1 collate latin1_swedish_ci not null,
 | |
|   unique key(a)
 | |
| ) engine=ndb;
 | |
| #
 | |
| insert into t1 values (1,'A'),(2,'b '),(3,'C  '),(4,'d      '),(5,'E'),(6,'f');
 | |
| -- error ER_DUP_ENTRY_WITH_KEY_NAME
 | |
| insert into t1 values(99,'b');
 | |
| -- error ER_DUP_ENTRY_WITH_KEY_NAME
 | |
| insert into t1 values(99,'a         ');
 | |
| #
 | |
| select a,length(a) from t1 order by a;
 | |
| select a,length(a) from t1 order by a desc;
 | |
| select * from t1 where a = 'a';
 | |
| select * from t1 where a = 'a   ';
 | |
| select * from t1 where a = 'd';
 | |
| drop table t1;
 | |
| 
 | |
| # ordered index - binary
 | |
| 
 | |
| create table t1 (
 | |
|   p int primary key,
 | |
|   a char(3) character set latin1 collate latin1_bin not null,
 | |
|   index(a)
 | |
| ) engine=ndb;
 | |
| # ok
 | |
| insert into t1 values(1, 'aAa');
 | |
| insert into t1 values(2, 'aaa');
 | |
| insert into t1 values(3, 'AAA');
 | |
| insert into t1 values(4, 'aAa');
 | |
| insert into t1 values(5, 'aaa');
 | |
| insert into t1 values(6, 'AAA');
 | |
| # 6
 | |
| select * from t1 order by p;
 | |
| # plan too flaky
 | |
| #--replace_column 9 #
 | |
| #explain select * from t1 where a = 'zZz' order by p;
 | |
| # 2
 | |
| select * from t1 where a = 'aAa' order by p;
 | |
| # 2
 | |
| select * from t1 where a = 'aaa' order by p;
 | |
| # 0
 | |
| select * from t1 where a = 'AaA' order by p;
 | |
| # 2
 | |
| select * from t1 where a = 'AAA' order by p;
 | |
| drop table t1;
 | |
| 
 | |
| # ordered index - case insensitive
 | |
| 
 | |
| create table t1 (
 | |
|   p int primary key,
 | |
|   a char(3) character set latin1 collate latin1_swedish_ci not null,
 | |
|   index(a)
 | |
| ) engine=ndb;
 | |
| # ok
 | |
| insert into t1 values(1, 'aAa');
 | |
| insert into t1 values(2, 'aaa');
 | |
| insert into t1 values(3, 'AAA');
 | |
| insert into t1 values(4, 'aAa');
 | |
| insert into t1 values(5, 'aaa');
 | |
| insert into t1 values(6, 'AAA');
 | |
| # 6
 | |
| select * from t1 order by p;
 | |
| # plan too flaky
 | |
| #--replace_column 9 #
 | |
| #explain select * from t1 where a = 'zZz' order by p;
 | |
| # 6
 | |
| select * from t1 where a = 'aAa' order by p;
 | |
| # 6
 | |
| select * from t1 where a = 'aaa' order by p;
 | |
| # 6
 | |
| select * from t1 where a = 'AaA' order by p;
 | |
| # 6
 | |
| select * from t1 where a = 'AAA' order by p;
 | |
| drop table t1;
 | |
| 
 | |
| # ordered index - varchar
 | |
| 
 | |
| create table t1 (
 | |
|   p int primary key,
 | |
|   a varchar(20) character set latin1 collate latin1_swedish_ci not null,
 | |
|   index(a, p)
 | |
| ) engine=ndb;
 | |
| #
 | |
| insert into t1 values (1,'A'),(2,'b '),(3,'C  '),(4,'d      '),(5,'E'),(6,'f');
 | |
| insert into t1 values (7,'a'),(8,'B '),(9,'c  '),(10,'D'),(11,'e'),(12,'F  ');
 | |
| select p,a,length(a) from t1 order by a, p;
 | |
| select * from t1 where a = 'a  ' order by a desc, p desc;
 | |
| select * from t1 where a >= 'D' order by a, p;
 | |
| select * from t1 where a < 'D' order by a, p;
 | |
| #
 | |
| select count(*) from t1 x, t1 y, t1 z where x.a = y.a and y.a = z.a;
 | |
| drop table t1;
 | |
| 
 | |
| # minimal multi-byte test
 | |
| # removed by jonas as this requires a configure --with-extra-charsets
 | |
| #create table t1 (
 | |
| #  a char(5) character set ucs2,
 | |
| #  b varchar(7) character set utf8,
 | |
| #  primary key(a, b)
 | |
| #) engine=ndb;
 | |
| #
 | |
| #insert into t1 values
 | |
| #  ('a','A '),('B   ','b'),('c','C    '),('D','d'),('e  ','E'),('F','f  '),
 | |
| #  ('A','b '),('b   ','C'),('C','d  '),('d','E'),('E  ','f'),
 | |
| #  ('a','C '),('B   ','d'),('c','E  '),('D','f');
 | |
| #-- error ER_DUP_ENTRY_WITH_KEY_NAME
 | |
| #insert into t1 values('d','f');
 | |
| #
 | |
| #select a,b,length(a),length(b) from t1 order by a,b limit 3;
 | |
| #select a,b,length(a),length(b) from t1 order by a desc, b desc limit 3;
 | |
| #select a,b,length(a),length(b) from t1 where a='c' and b='c';
 | |
| #drop table t1;
 | |
| 
 | |
| # bug#14007
 | |
| create table t1 (
 | |
|   a char(10) primary key
 | |
| ) engine=ndbcluster default charset=latin1;
 | |
| 
 | |
| insert into t1 values ('aaabb');
 | |
| select * from t1;
 | |
| replace into t1 set a = 'AAABB';
 | |
| select * from t1;
 | |
| replace into t1 set a = 'aAaBb';
 | |
| select * from t1;
 | |
| replace into t1 set a = 'aaabb';
 | |
| select * from t1;
 | |
| drop table t1;
 | |
| 
 | |
| # End of 4.1 tests
 |