1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-24 19:42:23 +03:00

Merge 10.2 into 10.3

This commit is contained in:
Marko Mäkelä
2018-07-23 18:56:52 +03:00
27 changed files with 236 additions and 82 deletions

View File

@ -0,0 +1,4 @@
CREATE TEMPORARY TABLE t (i INT);
CREATE or replace TABLE t AS SELECT * FROM t;
DROP TEMPORARY TABLE t;
DROP TABLE t;