diff options
author | monty@mysql.com <> | 2005-07-28 03:22:47 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2005-07-28 03:22:47 +0300 |
commit | 3c12d0ae54eccaef7c265af4f782d95250308dc9 (patch) | |
tree | e744bd42ed2b003e8c6b7fbc043e115fc964966c /mysql-test/t/bool.test | |
parent | d28f576cf4beae12611515eb95eb88f50499f672 (diff) | |
download | mariadb-git-3c12d0ae54eccaef7c265af4f782d95250308dc9.tar.gz |
Added end marker for tests to make future merges easier
Diffstat (limited to 'mysql-test/t/bool.test')
-rw-r--r-- | mysql-test/t/bool.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/bool.test b/mysql-test/t/bool.test index b263ecfded2..67b9eeaeb94 100644 --- a/mysql-test/t/bool.test +++ b/mysql-test/t/bool.test @@ -48,3 +48,5 @@ select ifnull(A, 'N') as A, ifnull(B, 'N') as B, ifnull(not A, 'N') as nA, ifnul select ifnull(A=1, 'N') as A, ifnull(B=1, 'N') as B, ifnull(not (A=1), 'N') as nA, ifnull(not (B=1), 'N') as nB, ifnull((A=1) and (B=1), 'N') as AB, ifnull(not ((A=1) and (B=1)), 'N') as `n(AB)`, ifnull((not (A=1) or not (B=1)), 'N') as nAonB, ifnull((A=1) or (B=1), 'N') as AoB, ifnull(not((A=1) or (B=1)), 'N') as `n(AoB)`, ifnull(not (A=1) and not (B=1), 'N') as nAnB from t1; drop table t1; + +# End of 4.1 tests |