⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mysql.test

📁 这是linux下运行的mysql软件包,可用于linux 下安装 php + mysql + apach 的网络配置
💻 TEST
字号:
# This test should work in embedded server after we fix mysqltest-- source include/not_embedded.inc## Testing the MySQL command line client(mysql)#--disable_warningsdrop 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 lineselect "Test delimiter : from command line" as " ";--exec $MYSQL test --delimiter=":" -e "select * from t1:"# Test delimiter :; supplied on the command lineselect "Test delimiter :; from command line" as " ";--exec $MYSQL test --delimiter=":;" -e "select * from t1:;"# Test 'go' command (vertical output) \Gselect "Test 'go' command(vertical output) \G" as " ";--exec $MYSQL test -e "select * from t1\G"# Test 'go' command \gselect "Test  'go' command \g" as " ";--exec $MYSQL test -e "select * from t1\g"--enable_query_logdrop 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 '僜'"## Bug#16859 -- NULLs in columns must not truncate data as if a C-language "string".#--exec $MYSQL -t test -e "create table t1 (col1 binary(4), col2 varchar(10), col3 int); insert into t1 values ('a', 'b', 123421),('a ', '0123456789', 4), ('abcd', '', 4); select concat('>',col1,'<'), col2, col3 from t1; drop table t1;" 2>&1

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -