diff options
author | unknown <mikael/pappa@dator5.(none)> | 2006-08-16 10:41:17 -0400 |
---|---|---|
committer | unknown <mikael/pappa@dator5.(none)> | 2006-08-16 10:41:17 -0400 |
commit | d35df78b4a83ae03ee03f3337d303637b7524efc (patch) | |
tree | 1e224d36fd91479fb6ab5e1698bc64176523ea6e /mysql-test/r/partition.result | |
parent | aa3a33a1854f25cf4790a3836dc4f487ae6769c8 (diff) | |
parent | feb8bcbcd91326d4f39a3b9f37983c1d06bbaeaf (diff) | |
download | mariadb-git-d35df78b4a83ae03ee03f3337d303637b7524efc.tar.gz |
Merge dator5.(none):/home/pappa/bug15890
into dator5.(none):/home/pappa/bug21388
mysql-test/r/partition.result:
Auto merged
mysql-test/t/partition.test:
Auto merged
sql/sql_yacc.yy:
Auto merged
sql/share/errmsg.txt:
manual review
Diffstat (limited to 'mysql-test/r/partition.result')
-rw-r--r-- | mysql-test/r/partition.result | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/mysql-test/r/partition.result b/mysql-test/r/partition.result index 6f72068c0b7..5848618ff65 100644 --- a/mysql-test/r/partition.result +++ b/mysql-test/r/partition.result @@ -1,5 +1,21 @@ drop table if exists 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 +create table t1 (a int) +partition by key(a) +partitions -1; +ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-1' at line 3 +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 +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 +create table t1 (a int) partition by list (a) (partition p0 values in (1)); create procedure pz() |