mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
a4f610f55e
- enabling some new tests
15 lines
369 B
Text
15 lines
369 B
Text
-- source include/have_ndb.inc
|
|
-- source include/have_binlog_format_row.inc
|
|
|
|
--disable_warnings
|
|
drop table if exists t1;
|
|
drop database if exists mysqltest;
|
|
--enable_warnings
|
|
|
|
create database mysqltest;
|
|
use mysqltest;
|
|
create table t1 (a int primary key, b int) engine=ndb;
|
|
insert into t1 values (1, 1);
|
|
-- source include/show_binlog_events.inc
|
|
|
|
drop database mysqltest;
|