mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-28 17:15:19 +03:00 
			
		
		
		
	More tests cases After merge fixes BitKeeper/deleted/.del-ansi-master.opt~4d337eb61642a838: Delete: mysql-test/t/ansi-master.opt mysql-test/r/ansi.result: Cleaned up test to be able to remove ansi-master.opt mysql-test/r/create.result: Updated results mysql-test/r/insert_select.result: Updated results mysql-test/r/rpl000009.result: Updated results mysql-test/t/ansi.test: Cleaned up test to be able to remove ansi-master.opt mysql-test/t/create.test: More tests mysql-test/t/insert_select.test: More tests mysql-test/t/mysqlbinlog.test: Fixed test after merge sql/mysql_priv.h: Added character-sets-dir to 'show variables' sql/set_var.cc: Added character-sets-dir to 'show variables' sql/sql_class.cc: Fixed that send_error() is called properly when a SELECT fails sql/sql_class.h: Fixed that send_error() is called properly when a SELECT fails sql/sql_insert.cc: Fixed bug in error handling of CREATE ... SELECT sql/sql_select.cc: Fixed bug in error handling of CREATE ... SELECT
		
			
				
	
	
		
			20 lines
		
	
	
		
			476 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			476 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| drop table if exists t1;
 | |
| set sql_mode="MySQL40";
 | |
| select @@sql_mode;
 | |
| @@sql_mode
 | |
| NO_FIELD_OPTIONS,MYSQL40
 | |
| set @@sql_mode="ANSI";
 | |
| select @@sql_mode;
 | |
| @@sql_mode
 | |
| REAL_AS_FLOAT,PIPES_AS_CONCAT,ANSI_QUOTES,IGNORE_SPACE,ONLY_FULL_GROUP_BY,ANSI
 | |
| SELECT 'A' || 'B';
 | |
| 'A' || 'B'
 | |
| AB
 | |
| CREATE TABLE t1 (id INT, id2 int);
 | |
| SELECT id,NULL,1,1.1,'a' FROM t1 GROUP BY id;
 | |
| id	NULL	1	1.1	a
 | |
| SELECT id FROM t1 GROUP BY id2;
 | |
| ERROR 42000: 'test.t1.id' isn't in GROUP BY
 | |
| drop table t1;
 | |
| SET @@SQL_MODE="";
 |