mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
unify "partitioning cannot do X" error messages
This commit is contained in:
committed by
Sergei Golubchik
parent
3bef848226
commit
e6af62189e
@@ -4,7 +4,7 @@ CREATE TEMPORARY TABLE t1 (a INT NOT NULL);
|
||||
LOAD DATA INFILE 'x' INTO TABLE x;
|
||||
ERROR 42S02: Table 'test.x' doesn't exist
|
||||
CREATE OR REPLACE TEMPORARY TABLE t1 (x INT) PARTITION BY HASH(x);
|
||||
ERROR HY000: Cannot create temporary table with partitions
|
||||
ERROR HY000: Partitioned tables do not support CREATE TEMPORARY TABLE
|
||||
"************** DROP TEMPORARY TABLE Should be present in Binary log **************"
|
||||
include/show_binlog_events.inc
|
||||
Log_name Pos Event_type Server_id End_log_pos Info
|
||||
|
@@ -38,7 +38,7 @@ CREATE TEMPORARY TABLE t1 (a INT NOT NULL);
|
||||
--error ER_NO_SUCH_TABLE
|
||||
LOAD DATA INFILE 'x' INTO TABLE x;
|
||||
|
||||
--error ER_PARTITION_NO_TEMPORARY
|
||||
--error ER_FEATURE_NOT_SUPPORTED_WITH_PARTITIONING
|
||||
CREATE OR REPLACE TEMPORARY TABLE t1 (x INT) PARTITION BY HASH(x);
|
||||
|
||||
--echo "************** DROP TEMPORARY TABLE Should be present in Binary log **************"
|
||||
|
Reference in New Issue
Block a user