diff options
author | monty@hundin.mysql.fi <> | 2002-06-30 18:57:21 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2002-06-30 18:57:21 +0300 |
commit | f87efa928b807a03c83b75a87f0d773e4bc8eb68 (patch) | |
tree | c1bcaea9558c224371254c107ba497d9242758b7 /mysql-test/t/func_test.test | |
parent | e5b02fbe6efd6c88a485a50fde2f44837c55f6bc (diff) | |
download | mariadb-git-f87efa928b807a03c83b75a87f0d773e4bc8eb68.tar.gz |
Update for running gcc 3.x (mainly on HPUX)
Portability fixes for HPUX
Rename of CHECK_LOCK to IS_FREE_LOCK
Apply lower_case_table_names also to databases
Cleanup of describe code
Don't allow \ in database names
Diffstat (limited to 'mysql-test/t/func_test.test')
-rw-r--r-- | mysql-test/t/func_test.test | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mysql-test/t/func_test.test b/mysql-test/t/func_test.test index 844db1a0214..f5ad2e21c73 100644 --- a/mysql-test/t/func_test.test +++ b/mysql-test/t/func_test.test @@ -15,8 +15,9 @@ select 2 between 1 and 3, "monty" between "max" and "my",2=2 and "monty" between select 'b' between 'a' and 'c', 'B' between 'a' and 'c'; select 2 in (3,2,5,9,5,1),"monty" in ("david","monty","allan"), 1.2 in (1.4,1.2,1.0); select -1.49 or -1.49,0.6 or 0.6; -select 3 ^ 11; -select 1 XOR 0; +select 3 ^ 11, 1 ^ 1, 1 ^ 0, 1 ^ NULL, NULL ^ 1; +select 1 XOR 1, 1 XOR 0, 0 XOR 1, 0 XOR 0, NULL XOR 1, 1 XOR NULL, 0 XOR NULL; + # # Wrong usage of functions # |