mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge 10.2 into 10.3
main.derived_cond_pushdown: Move all 10.3 tests to the end, trim trailing white space, and add an "End of 10.3 tests" marker. Add --sorted_result to tests where the ordering is not deterministic. main.win_percentile: Add --sorted_result to tests where the ordering is no longer deterministic.
This commit is contained in:
@ -453,14 +453,14 @@ CREATE TABLE t3(a INT);
|
||||
LOCK TABLE t2 WRITE;
|
||||
SELECT * FROM t2;
|
||||
# drops t2
|
||||
--error ER_UNSUPPORT_COMPRESSED_TEMPORARY_TABLE
|
||||
CREATE OR REPLACE TEMPORARY TABLE t1(a INT) ENGINE=InnoDB ROW_FORMAT=COMPRESSED;
|
||||
--error ER_INVALID_DEFAULT
|
||||
CREATE OR REPLACE TEMPORARY TABLE t1(c INT DEFAULT '');
|
||||
# make sure we didn't leave locked tables mode
|
||||
--error ER_TABLE_NOT_LOCKED
|
||||
SELECT * FROM t3;
|
||||
# drops t1
|
||||
--error ER_UNSUPPORT_COMPRESSED_TEMPORARY_TABLE
|
||||
CREATE OR REPLACE TEMPORARY TABLE t2(a INT) ENGINE=InnoDB ROW_FORMAT=COMPRESSED;
|
||||
--error ER_INVALID_DEFAULT
|
||||
CREATE OR REPLACE TEMPORARY TABLE t2(c INT DEFAULT '');
|
||||
# make sure we didn't leave locked tables mode
|
||||
--error ER_TABLE_NOT_LOCKED
|
||||
SELECT * FROM t3;
|
||||
|
Reference in New Issue
Block a user