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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user