Commit 857bd559 authored by unknown's avatar unknown
Browse files

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 88b177a5
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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