Commit 98fcd841 authored by unknown's avatar unknown

ndb - Fixed INCORRECT result file for unique index test


mysql-test/r/ndb_index_unique.result:
  Fixed INCORRECT result file for unique index test! SHAME!
parent 0cf029f8
......@@ -77,8 +77,10 @@ a b c
3 NULL NULL
select * from t1 use index (bc) where b IS NULL and c IS NULL order by a;
a b c
3 NULL NULL
select * from t1 use index (bc) where b IS NULL and c = 2 order by a;
a b c
2 NULL 2
select * from t1 use index (bc) where b < 4 order by a;
a b c
1 1 1
......
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