Commit 82faccc5 authored by Roman Nozdrin's avatar Roman Nozdrin Committed by Sergei Petrunia

CLX-4 Basic version of MTR based test suite.

parent ab09e22a
DROP TABLE IF EXISTS cx1;
Warnings:
Note 1051 Unknown table 'test.cx1'
CREATE TABLE cx1(i BIGINT)ENGINE=clustrixdb;
CREATE TABLE cx1(i BIGINT)ENGINE=clustrixdb;
ERROR 42S01: Table 'cx1' already exists
INSERT INTO cx1 VALUES (42);
SELECT * FROM cx1;
i
42
DROP TABLE cx1;
SHOW CREATE TABLE cx1;
ERROR 42S02: Table 'test.cx1' doesn't exist
#CREATE DATABASE clx;
#USE clx;
DROP TABLE IF EXISTS cx1;
CREATE TABLE cx1(i BIGINT)ENGINE=clustrixdb;
--error ER_TABLE_EXISTS_ERROR
CREATE TABLE cx1(i BIGINT)ENGINE=clustrixdb;
INSERT INTO cx1 VALUES (42);
SELECT * FROM cx1;
DROP TABLE cx1;
--error ER_NO_SUCH_TABLE
SHOW CREATE TABLE cx1;
#USE test;
#DROP DATABASE cxl;
!include include/default_my.cnf
[mysqld.1]
socket= /tmp/mysqld42.sock
--plugin-load=clustrixdb=ha_clustrixdb.so
--core-file
--clustrixdb_port=3306
--plugin-maturity=unknown
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment