Commit 794f2fd8 authored by tomas@mc05.(none)'s avatar tomas@mc05.(none)

fix to make scan filter ndb testprogram work

parent 7d6b9880
...@@ -214,8 +214,8 @@ TESTCASE("ScanLessThan", ...@@ -214,8 +214,8 @@ TESTCASE("ScanLessThan",
"Read all records in table TX with attrX less "\ "Read all records in table TX with attrX less "\
"than a value and store the resultset in TX_RES."\ "than a value and store the resultset in TX_RES."\
"Then compare records in TX_RES with records in TX."){ "Then compare records in TX_RES with records in TX."){
TABLE("T1"); // TABLE("T1");
TABLE("T2"); // TABLE("T2");
INITIALIZER(runLoadTable); INITIALIZER(runLoadTable);
INITIALIZER(runCreateResultTable); INITIALIZER(runCreateResultTable);
STEP(runScanLessThan); STEP(runScanLessThan);
...@@ -227,8 +227,8 @@ TESTCASE("ScanEqual", ...@@ -227,8 +227,8 @@ TESTCASE("ScanEqual",
"Read all records in table TX with attrX equal "\ "Read all records in table TX with attrX equal "\
"to a value and store the resultset in TX_RES."\ "to a value and store the resultset in TX_RES."\
"Then compare records in TX_RES with records in TX."){ "Then compare records in TX_RES with records in TX."){
TABLE("T1"); // TABLE("T1");
TABLE("T2"); // TABLE("T2");
INITIALIZER(runLoadTable); INITIALIZER(runLoadTable);
INITIALIZER(runCreateResultTable); INITIALIZER(runCreateResultTable);
STEP(runScanEqual); STEP(runScanEqual);
...@@ -239,8 +239,8 @@ TESTCASE("ScanEqual", ...@@ -239,8 +239,8 @@ TESTCASE("ScanEqual",
TESTCASE("ScanEqualLoop", TESTCASE("ScanEqualLoop",
"Scan all records in TX equal to a value."\ "Scan all records in TX equal to a value."\
"Do this loop number of times"){ "Do this loop number of times"){
TABLE("T1"); // TABLE("T1");
TABLE("T2"); // TABLE("T2");
INITIALIZER(runLoadTable); INITIALIZER(runLoadTable);
INITIALIZER(runCreateResultTable); INITIALIZER(runCreateResultTable);
STEP(runScanEqualLoop); STEP(runScanEqualLoop);
...@@ -251,8 +251,8 @@ TESTCASE("ScanEqualVerifyLoop", ...@@ -251,8 +251,8 @@ TESTCASE("ScanEqualVerifyLoop",
"Scan all records in TX equal to a value."\ "Scan all records in TX equal to a value."\
"Verify record in TX_RES table"\ "Verify record in TX_RES table"\
"Do this loop number of times"){ "Do this loop number of times"){
TABLE("T1"); // TABLE("T1");
TABLE("T2"); // TABLE("T2");
INITIALIZER(runLoadTable); INITIALIZER(runLoadTable);
INITIALIZER(runCreateResultTable); INITIALIZER(runCreateResultTable);
STEP(runScanEqualVerifyLoop); STEP(runScanEqualVerifyLoop);
...@@ -262,8 +262,8 @@ TESTCASE("ScanEqualVerifyLoop", ...@@ -262,8 +262,8 @@ TESTCASE("ScanEqualVerifyLoop",
TESTCASE("ScanLessThanLoop", TESTCASE("ScanLessThanLoop",
"Scan all records in TX less than a value."\ "Scan all records in TX less than a value."\
"Do this loop number of times"){ "Do this loop number of times"){
TABLE("T1"); // TABLE("T1");
TABLE("T2"); // TABLE("T2");
INITIALIZER(runLoadTable); INITIALIZER(runLoadTable);
INITIALIZER(runCreateResultTable); INITIALIZER(runCreateResultTable);
STEP(runScanLessThanLoop); STEP(runScanLessThanLoop);
......
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