Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
8f3d1f60
Commit
8f3d1f60
authored
Jun 30, 2019
by
Roman Nozdrin
Committed by
Sergei Petrunia
Mar 10, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CLX-5 Changes in the basic MTR test.
Removed unused code.
parent
6da15be8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
13 deletions
+6
-13
mysql-test/suite/clustrixdb/basics.result
mysql-test/suite/clustrixdb/basics.result
+6
-2
storage/clustrixdb/clustrix_connection.cc
storage/clustrixdb/clustrix_connection.cc
+0
-11
No files found.
mysql-test/suite/clustrixdb/basics.result
View file @
8f3d1f60
CREATE DATABASE clx;
USE clx;
DROP TABLE IF EXISTS cx1;
DROP TABLE IF EXISTS cx1;
Warnings:
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;
CREATE TABLE cx1(i BIGINT)ENGINE=clustrixdb;
CREATE TABLE cx1(i BIGINT)ENGINE=clustrixdb;
ERROR 42S01: Table 'cx1' already exists
ERROR 42S01: Table 'cx1' already exists
...
@@ -10,4 +12,6 @@ i
...
@@ -10,4 +12,6 @@ i
42
42
DROP TABLE cx1;
DROP TABLE cx1;
SHOW CREATE 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;
storage/clustrixdb/clustrix_connection.cc
View file @
8f3d1f60
...
@@ -323,17 +323,6 @@ int clustrix_connection::scan_init(ulonglong clustrix_table_oid, uint index,
...
@@ -323,17 +323,6 @@ int clustrix_connection::scan_init(ulonglong clustrix_table_oid, uint index,
return
error_code
;
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
* @brief
* Sends a command to initiate query scan.
* Sends a command to initiate query scan.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment