mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	into mysql.com:/usr_rh9/home/elkin.rh9/MySQL/Merge/5.1-new BitKeeper/deleted/.del-ctype_ucs_binlog.result~280d136b1a0bcf17: Auto merged mysql-test/r/user_var-binlog.result: Auto merged mysql-test/t/mysql.test: Auto merged mysql-test/t/mysqlbinlog.test: Auto merged mysql-test/t/rpl_trigger.test: Auto merged sql/item_cmpfunc.cc: Auto merged mysql-test/r/rpl_stm_charset.result: Auto merged sql/log_event.cc: Auto merged sql/sql_select.cc: Auto merged mysql-test/r/rpl_timezone.result: manual merge use local. Result file has to be refined according to changes brought in to the test.
		
			
				
	
	
		
			59 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# This test should work in embedded server after we fix mysqltest
 | 
						|
-- source include/not_embedded.inc
 | 
						|
#
 | 
						|
# Testing the MySQL command line client(mysql)
 | 
						|
#
 | 
						|
 | 
						|
--disable_warnings
 | 
						|
drop table if exists t1;
 | 
						|
--enable_warnings
 | 
						|
 | 
						|
#
 | 
						|
# Test the "delimiter" functionality
 | 
						|
# Bug#9879
 | 
						|
#
 | 
						|
create table t1(a int);
 | 
						|
insert into t1 values(1);
 | 
						|
 | 
						|
# Test delimiters
 | 
						|
--exec $MYSQL test 2>&1 < "./t/mysql_delimiter.sql"
 | 
						|
 | 
						|
--disable_query_log
 | 
						|
# Test delimiter : supplied on the command line
 | 
						|
select "Test delimiter : from command line" as " ";
 | 
						|
--exec $MYSQL test --delimiter=":" -e "select * from t1:"
 | 
						|
# Test delimiter :; supplied on the command line
 | 
						|
select "Test delimiter :; from command line" as " ";
 | 
						|
--exec $MYSQL test --delimiter=":;" -e "select * from t1:;"
 | 
						|
# Test 'go' command (vertical output) \G
 | 
						|
select "Test 'go' command(vertical output) \G" as " ";
 | 
						|
--exec $MYSQL test -e "select * from t1\G"
 | 
						|
# Test 'go' command \g
 | 
						|
select "Test  'go' command \g" as " ";
 | 
						|
--exec $MYSQL test -e "select * from t1\g"
 | 
						|
--enable_query_log
 | 
						|
drop table t1;
 | 
						|
 | 
						|
#
 | 
						|
# BUG9998 - MySQL client hangs on USE "database"
 | 
						|
#
 | 
						|
create table t1(a int);
 | 
						|
lock tables t1 write;
 | 
						|
--exec $MYSQL -e "use test; select database();"
 | 
						|
unlock tables;
 | 
						|
drop table t1;
 | 
						|
 | 
						|
#
 | 
						|
# BUG#16217 - MySQL client misinterpretes multi-byte char as escape `\' 
 | 
						|
#
 | 
						|
 | 
						|
# new command \C or charset
 | 
						|
--exec $MYSQL --default-character-set=utf8 test -e "\C cp932 \g"
 | 
						|
--exec $MYSQL --default-character-set=cp932 test -e "charset utf8;"
 | 
						|
 | 
						|
# its usage to switch internally in mysql to requested charset
 | 
						|
--exec $MYSQL --default-character-set=utf8 test -e "charset cp932; set @@session.character_set_client= cp932; select 'ƒ\'; create table t1 (c_cp932 TEXT CHARACTER SET cp932); insert into t1 values('ƒ\'); select * from t1;  drop table t1;"
 | 
						|
--exec $MYSQL --default-character-set=utf8 test -e "charset cp932; set character_set_client= cp932; select 'ƒ\'"
 | 
						|
--exec $MYSQL --default-character-set=utf8 test -e "/*charset cp932 */; set character_set_client= cp932; select 'ƒ\'"
 | 
						|
--exec $MYSQL --default-character-set=utf8 test -e "/*!\C cp932 */; set character_set_client= cp932; select 'ƒ\'"
 |