diff options
author | unknown <cmiller@zippy.cornsilk.net> | 2008-04-09 21:19:41 -0400 |
---|---|---|
committer | unknown <cmiller@zippy.cornsilk.net> | 2008-04-09 21:19:41 -0400 |
commit | ec63ce25294e38a8ad581b72b1da83d48235d9e3 (patch) | |
tree | 7689fc16ef8af3e9d27d6a436b7406c4d86f56a9 | |
parent | b64f6648566ad3803163dd00693b81e69c6dc114 (diff) | |
download | mariadb-git-ec63ce25294e38a8ad581b72b1da83d48235d9e3.tar.gz |
Error message changed across versions.
-rw-r--r-- | mysql-test/r/type_blob.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/type_blob.result b/mysql-test/r/type_blob.result index 2211c8ac9df..90857269c5c 100644 --- a/mysql-test/r/type_blob.result +++ b/mysql-test/r/type_blob.result @@ -895,7 +895,7 @@ Warning 1287 The syntax 'TIMESTAMP(4294967294)' is deprecated and will be remove DROP TABLE b15776; CREATE TABLE b15776 (a timestamp(4294967295)); Warnings: -Warning 1287 'TIMESTAMP(4294967295)' is deprecated; use 'TIMESTAMP' instead +Warning 1287 The syntax 'TIMESTAMP(4294967295)' is deprecated and will be removed in MySQL 5.2. Please use 'TIMESTAMP' instead DROP TABLE b15776; CREATE TABLE b15776 (a timestamp(4294967296)); ERROR 42000: Display width out of range for column 'a' (max = 4294967295) |