1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

SQL: create versioned tmp table from query [fixes #144]

This commit is contained in:
kevg
2017-03-04 23:05:45 +03:00
committed by Aleksey Midenkov
parent b8bfc06b26
commit 204b54d2d9
3 changed files with 7 additions and 1 deletions

View File

@ -204,4 +204,7 @@ create or replace table t1 (
A int
) without system versioning without system versioning;
create or replace table t1 (a int) with system versioning;
create temporary table tmp with system versioning select * from t1;
drop table t1;