You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bug#28856115 NDB.NDB_SUBQUERY FAILS IN SOLARIS/SPARC
Problem:
--------
The ndb_subquery test failed sporadically on Solaris platforms.
This was due to a slightly different query plan.
Fix:
----
Use an optimizer hint in the subquery to use the duplicate
weedout strategy.
Change-Id: Ied3821d16ad2f47c90da50e7df7cab46fea4eeb7
WHERE table1.col_int_key IN (SELECT col_int_key AS field2 FROM i as table1s)
163
+
WHERE table1.col_int_key IN (
164
+
SELECT /*+ SEMIJOIN(DUPSWEEDOUT) */ col_int_key AS field2 FROM i as table1s)
170
165
;
171
166
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
172
-
1 SIMPLE table1 p0,p1,p2,p3,p4,p5,p6,p7 ALL col_int_key NULL NULL NULL 15 100.00 Using where with pushed condition (`test`.`table1`.`col_int_key` is not null)
1 SIMPLE table1 p0,p1,p2,p3,p4,p5,p6,p7 ALL col_int_key NULL NULL NULL ### 100.00 Using where with pushed condition (`test`.`table1`.`col_int_key` is not null)
0 commit comments