mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
10 lines
281 B
Text
10 lines
281 B
Text
-- source include/have_binlog_format_row.inc
|
|
-- source include/master-slave.inc
|
|
-- source include/have_innodb.inc
|
|
|
|
create table t (a int) with system versioning engine=innodb;
|
|
--error ER_VERS_NOT_ALLOWED
|
|
truncate t for system_time all;
|
|
drop table t;
|
|
|
|
-- source include/rpl_end.inc
|