Commit 8f3d1f60 authored by Roman Nozdrin's avatar Roman Nozdrin Committed by Sergei Petrunia

CLX-5 Changes in the basic MTR test.

      Removed unused code.
parent 6da15be8
CREATE DATABASE clx;
USE clx;
DROP TABLE IF EXISTS cx1;
Warnings:
Note 1051 Unknown table 'test.cx1'
Note 1051 Unknown table 'clx.cx1'
CREATE TABLE cx1(i BIGINT)ENGINE=clustrixdb;
CREATE TABLE cx1(i BIGINT)ENGINE=clustrixdb;
ERROR 42S01: Table 'cx1' already exists
......@@ -10,4 +12,6 @@ i
42
DROP TABLE cx1;
SHOW CREATE TABLE cx1;
ERROR 42S02: Table 'test.cx1' doesn't exist
ERROR 42S02: Table 'clx.cx1' doesn't exist
USE test;
DROP DATABASE clx;
......@@ -323,17 +323,6 @@ int clustrix_connection::scan_init(ulonglong clustrix_table_oid, uint index,
return error_code;
}
/*int clustrix_connection::scan_init_select(String &stmt)
{
int error_code = mysql_real_query(&clustrix_net, stmt.ptr(), stmt.length());
if (error_code)
return mysql_errno(&clustrix_net);
results = mysql_store_result(&clustrix_net);
return error_code;
}*/
/**
* @brief
* Sends a command to initiate query scan.
......
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