1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Parser: disable SV for tmp tables [closes #344]

This commit is contained in:
Aleksey Midenkov
2017-11-24 17:44:43 +03:00
parent 86e57eaaa3
commit 7320c683b9
3 changed files with 19 additions and 9 deletions

View File

@@ -192,11 +192,6 @@ create or replace table t1 (
A8 int without system versioning
) with system versioning;
# table with/without system versioning
create or replace table t1 (a int) with system versioning;
create temporary table tmp with system versioning select * from t1;
# CREATE TABLE ... LIKE
create or replace table t1 (a int) with system versioning;
create table tt1 like t1;
@@ -286,5 +281,8 @@ create or replace table t (sys_trx_end int);
--error ER_DUP_FIELDNAME
alter table t with system versioning;
--error ER_WRONG_USAGE
create or replace temporary table t (x int) with system versioning;
drop database test;
create database test;