mirror of
https://github.com/MariaDB/server.git
synced 2025-05-29 21:42:28 +03:00
11 lines
281 B
Plaintext
11 lines
281 B
Plaintext
-- 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
|