summaryrefslogtreecommitdiff
path: root/mysql-test/t/bigint.test
diff options
context:
space:
mode:
authormonty@hundin.mysql.fi <>2002-01-03 00:46:43 +0200
committermonty@hundin.mysql.fi <>2002-01-03 00:46:43 +0200
commit2597b1aadd45f166c2c8efe04d0e5444e4389ea6 (patch)
tree4e18e3ee4d74189f2a784d419334e02f025eacd1 /mysql-test/t/bigint.test
parentb0ea238d2ea39e24b4d47be6cd671702fb94f59c (diff)
downloadmariadb-git-2597b1aadd45f166c2c8efe04d0e5444e4389ea6.tar.gz
New CAST syntax
Cleanup of multi-table-delete in sql_yacc.yy Changed syntax of MAXIMUM QUERIES PER HOUR to MAX_QUERIES_PER_HOUR to not get too many reserved words.
Diffstat (limited to 'mysql-test/t/bigint.test')
-rw-r--r--mysql-test/t/bigint.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/t/bigint.test b/mysql-test/t/bigint.test
index 27ac346825b..e779b0fd49b 100644
--- a/mysql-test/t/bigint.test
+++ b/mysql-test/t/bigint.test
@@ -30,6 +30,6 @@ select min(big),max(big),max(big)-1 from t1;
select min(big),max(big),max(big)-1 from t1 group by a;
drop table t1;
-select UNSIGNED 1-2;
-select SIGNED (UNSIGNED 1-2);
-select UNSIGNED '-1';
+select CAST(1-2 AS UNSIGNED);
+select CAST(CAST(1-2 AS UNSIGNED) AS SIGNED INTEGER);
+select CONVERT('-1',UNSIGNED);