1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-02 09:41:40 +03:00

Merge 10.0 into 10.1

This commit is contained in:
Marko Mäkelä
2019-01-23 14:34:23 +02:00
12 changed files with 107 additions and 19 deletions

View File

@@ -0,0 +1,9 @@
create table t1 (a int) engine=innodb;
insert t1 values (1),(2);
create database ib_logfile2;
select * from t1;
a
1
2
drop table t1;
drop database ib_logfile2;