polardbxengine/mysql-test/suite/ndb/include/ndb_addnode_restart_setup.inc

22 lines
463 B
SQL

--source include/have_ndb.inc
# Test configs should be cleared and
# servers should be restarted in case of retries
--source include/force_restart.inc
#create database and table so that test can
#access them through a mysql client
CREATE DATABASE TEST_DB;
CREATE TABLE TEST_DB.T1(
col1 INT PRIMARY KEY,
col2 FLOAT,
col3 CHAR(10),
col4 VARCHAR(100),
col5 BINARY(10),
col6 VARBINARY(10),
col7 INT UNSIGNED,
col8 INT UNSIGNED
)ENGINE=NDBCLUSTER;