diff options
author | unknown <monty@mishka.local> | 2005-04-16 10:53:30 +0300 |
---|---|---|
committer | unknown <monty@mishka.local> | 2005-04-16 10:53:30 +0300 |
commit | 48faa137af3d610228041d221363a3e574c137f8 (patch) | |
tree | a671e7e830d1281e3ff4bd54043017e0c63e298b /mysql-test/t/range.test | |
parent | 2be63528bc0f7d524df4660cea4fcc002604c42e (diff) | |
download | mariadb-git-48faa137af3d610228041d221363a3e574c137f8.tar.gz |
Added more rows to test to get predictable results
mysql-test/t/range.test:
Added more rows to test to get predictable results
(if it still fails, we need to add even more rows)
scripts/make_binary_distribution.sh:
Apply Jims patch for mysql.server
support-files/mysql.server.sh:
Apply Jims patch to support mysqld_safe
Diffstat (limited to 'mysql-test/t/range.test')
-rw-r--r-- | mysql-test/t/range.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/range.test b/mysql-test/t/range.test index 16be850548c..38ed665bdf1 100644 --- a/mysql-test/t/range.test +++ b/mysql-test/t/range.test @@ -198,7 +198,7 @@ drop table t1; # bug #1172: "Force index" option caused server crash # CREATE TABLE t1 (key1 int(11) NOT NULL default '0', KEY i1 (key1)); -INSERT INTO t1 VALUES (0),(1),(1); +INSERT INTO t1 VALUES (0),(0),(0),(0),(0),(1),(1); CREATE TABLE t2 (keya int(11) NOT NULL default '0', KEY j1 (keya)); INSERT INTO t2 VALUES (0),(0),(1),(1),(2),(2); explain select * from t1, t2 where (t1.key1 <t2.keya + 1) and t2.keya=3; |