diff options
author | monty@hundin.mysql.fi <> | 2002-01-16 00:42:52 +0200 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2002-01-16 00:42:52 +0200 |
commit | 4d10a0cb7eac04d7134537df139c87023453111d (patch) | |
tree | 890cb295feeab3ebd6413663178be56ec5ed21a2 /mysql-test/r/null.result | |
parent | 7dd4eb71fe7576e428fe1ecaaad214d3a39ff4dc (diff) | |
download | mariadb-git-4d10a0cb7eac04d7134537df139c87023453111d.tar.gz |
Add support for NULL=NULL in keys (Used in GROUP BY optimization)
Add ISAM to Windows version
Fix of test results
Fixes for NULL keys in HEAP tables.
Diffstat (limited to 'mysql-test/r/null.result')
-rw-r--r-- | mysql-test/r/null.result | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mysql-test/r/null.result b/mysql-test/r/null.result index 77f2c67bf05..e6e3b7155a3 100644 --- a/mysql-test/r/null.result +++ b/mysql-test/r/null.result @@ -40,7 +40,6 @@ insert into t1 values (null); select * from t1 where x != 0; x drop table t1; -DROP TABLE IF EXISTS t1; CREATE TABLE t1 ( indexed_field int default NULL, KEY indexed_field (indexed_field) |