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
794f2fd8
Commit
794f2fd8
authored
May 19, 2004
by
tomas@mc05.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix to make scan filter ndb testprogram work
parent
7d6b9880
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
ndb/test/ndbapi/testScanInterpreter/testScanInterpreter.cpp
ndb/test/ndbapi/testScanInterpreter/testScanInterpreter.cpp
+10
-10
No files found.
ndb/test/ndbapi/testScanInterpreter/testScanInterpreter.cpp
View file @
794f2fd8
...
...
@@ -214,8 +214,8 @@ TESTCASE("ScanLessThan",
"Read all records in table TX with attrX less "
\
"than a value and store the resultset in TX_RES."
\
"Then compare records in TX_RES with records in TX."
){
TABLE
(
"T1"
);
TABLE
(
"T2"
);
//
TABLE("T1");
//
TABLE("T2");
INITIALIZER
(
runLoadTable
);
INITIALIZER
(
runCreateResultTable
);
STEP
(
runScanLessThan
);
...
...
@@ -227,8 +227,8 @@ TESTCASE("ScanEqual",
"Read all records in table TX with attrX equal "
\
"to a value and store the resultset in TX_RES."
\
"Then compare records in TX_RES with records in TX."
){
TABLE
(
"T1"
);
TABLE
(
"T2"
);
//
TABLE("T1");
//
TABLE("T2");
INITIALIZER
(
runLoadTable
);
INITIALIZER
(
runCreateResultTable
);
STEP
(
runScanEqual
);
...
...
@@ -239,8 +239,8 @@ TESTCASE("ScanEqual",
TESTCASE
(
"ScanEqualLoop"
,
"Scan all records in TX equal to a value."
\
"Do this loop number of times"
){
TABLE
(
"T1"
);
TABLE
(
"T2"
);
//
TABLE("T1");
//
TABLE("T2");
INITIALIZER
(
runLoadTable
);
INITIALIZER
(
runCreateResultTable
);
STEP
(
runScanEqualLoop
);
...
...
@@ -251,8 +251,8 @@ TESTCASE("ScanEqualVerifyLoop",
"Scan all records in TX equal to a value."
\
"Verify record in TX_RES table"
\
"Do this loop number of times"
){
TABLE
(
"T1"
);
TABLE
(
"T2"
);
//
TABLE("T1");
//
TABLE("T2");
INITIALIZER
(
runLoadTable
);
INITIALIZER
(
runCreateResultTable
);
STEP
(
runScanEqualVerifyLoop
);
...
...
@@ -262,8 +262,8 @@ TESTCASE("ScanEqualVerifyLoop",
TESTCASE
(
"ScanLessThanLoop"
,
"Scan all records in TX less than a value."
\
"Do this loop number of times"
){
TABLE
(
"T1"
);
TABLE
(
"T2"
);
//
TABLE("T1");
//
TABLE("T2");
INITIALIZER
(
runLoadTable
);
INITIALIZER
(
runCreateResultTable
);
STEP
(
runScanLessThanLoop
);
...
...
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