mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Removed column_list and fixed all issues relating to this change
This commit is contained in:
@ -3,8 +3,7 @@ create table t1 (a int)
|
||||
partition by range (a)
|
||||
( partition p0 values less than (NULL),
|
||||
partition p1 values less than (MAXVALUE));
|
||||
ERROR 42000: Not allowed to use NULL value in VALUES LESS THAN near '),
|
||||
partition p1 values less than (MAXVALUE))' at line 3
|
||||
ERROR HY000: Not allowed to use NULL value in VALUES LESS THAN
|
||||
create table t1 (a datetime not null)
|
||||
partition by range (TO_SECONDS(a))
|
||||
( partition p0 VALUES LESS THAN (TO_SECONDS('2007-03-08 00:00:00')),
|
||||
|
Reference in New Issue
Block a user