1751.3.7
by Brian Aker
Fix test cases around new DD. |
1 |
--replace_column 1 #
|
1751.3.1
by Brian Aker
This add a couple of utility table functions to be used with testing. |
2 |
SELECT value from data_dictionary.counter LIMIT 10; |
3 |
CREATE TABLE t1 SELECT value from data_dictionary.counter LIMIT 20; |
|
4 |
SELECT count(*) from t1; |
|
5 |
INSERT INTO t1 SELECT value from data_dictionary.counter LIMIT 10; |
|
6 |
SELECT count(*) from t1; |
|
7 |
||
8 |
# These two test that we won't just have runaway queries |
|
1751.3.7
by Brian Aker
Fix test cases around new DD. |
9 |
--replace_column 1 #
|
1751.3.1
by Brian Aker
This add a couple of utility table functions to be used with testing. |
10 |
SELECT value from data_dictionary.counter GROUP BY value LIMIT 10; |
1751.3.7
by Brian Aker
Fix test cases around new DD. |
11 |
--replace_column 1 #
|
1751.3.1
by Brian Aker
This add a couple of utility table functions to be used with testing. |
12 |
select count(value) from data_dictionary.counter; |
13 |
||
14 |
DROP TABLE t1; |