1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

MDEV-15062 Information Schema COLUMNS Table does not show system versioning information

get_schema_column_record(): print 'WITHOUT SYSTEM VERSIONING` in 'EXTRA'
for such fields
This commit is contained in:
Eugene Kosov
2018-03-16 15:47:48 +03:00
committed by Sergei Golubchik
parent 339b905579
commit bb56a06d26
3 changed files with 24 additions and 0 deletions

View File

@@ -30,4 +30,11 @@ insert into t values (1, 2), (3, 4);
select * from t for system_time as of timestamp now(6);
select * from t for system_time as of timestamp now(6) where b is NULL;
#
# MDEV-15062 Information Schema COLUMNS Table does not show system versioning information
#
create or replace table t (x int with system versioning, y int);
select column_name, extra from information_schema.columns where table_name='t';
show create table t;
drop table t;