diff options
author | unknown <cmiller@zippy.cornsilk.net> | 2006-09-29 09:12:23 -0400 |
---|---|---|
committer | unknown <cmiller@zippy.cornsilk.net> | 2006-09-29 09:12:23 -0400 |
commit | f52333ab089eea5ca1d054cd1b62032eb40c797f (patch) | |
tree | 85e4667bc23f004d37dd36bb1f1ce0c2a4d4c42a /mysql-test/r/partition.result | |
parent | 1b212ad95066cddf170aad1e17d5a20c818709e0 (diff) | |
download | mariadb-git-f52333ab089eea5ca1d054cd1b62032eb40c797f.tar.gz |
Update from Stefan. 2006-09-29 msg id <451BEF1.4030506@mysql.com>
mysql-test/r/partition.result:
Altered results after errmsg update.
Diffstat (limited to 'mysql-test/r/partition.result')
-rw-r--r-- | mysql-test/r/partition.result | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/r/partition.result b/mysql-test/r/partition.result index d8d433ef216..f844746cc4f 100644 --- a/mysql-test/r/partition.result +++ b/mysql-test/r/partition.result @@ -7,7 +7,7 @@ drop table t1; create table t1 (a int) partition by key(a) partitions 0.2+e1; -ERROR 42000: Only normal integers allowed as number here near '0.2+e1' at line 3 +ERROR 42000: Only integers allowed as number here near '0.2+e1' at line 3 create table t1 (a int) partition by key(a) partitions -1; @@ -15,11 +15,11 @@ ERROR 42000: You have an error in your SQL syntax; check the manual that corresp create table t1 (a int) partition by key(a) partitions 1.5; -ERROR 42000: Only normal integers allowed as number here near '1.5' at line 3 +ERROR 42000: Only integers allowed as number here near '1.5' at line 3 create table t1 (a int) partition by key(a) partitions 1e+300; -ERROR 42000: Only normal integers allowed as number here near '1e+300' at line 3 +ERROR 42000: Only integers allowed as number here near '1e+300' at line 3 create table t1 (a int) engine = innodb partition by key (a); |