Files
MaxScale/system-test/long_insert_sql/test_init.sql
Esa Korhonen 08f5174915 MXS-2900 Rename maxscale-system-test directory to system-test
A link with the old directory name is provided.
2020-07-28 15:24:27 +03:00

5 lines
136 B
SQL

CREATE DATABASE IF NOT EXISTS test;
USE test;
DROP TABLE IF EXISTS test_bind_fetch;
CREATE TABLE test_bind_fetch(c1 char(10), c2 text);