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
class IndexMergeComplicate(SimpleCase):
name = "TICASE-1849"
def run(self):
self.execute_sql(
"create table t(a int,b varchar(20),c datetime,d double,e int,f int as(a+b),key(a),key(b),key(c),key(d),key(e),key(f))")
for i in range(20):
if i < 5:
self.execute_sql('''insert into t(a,b,e) values(null,"%d",null)''' % i)
else:
self.execute_sql('''insert into t(a,b,e) values(%d,null,%d)''' % (i, 20 - i))
res = self.execute_sql("select /*+ use_index_merge(t)*/ e,f from t where t.e=3 or t.a=10")
Development Task
Run the following test in UTF:
panic would occur like:
The text was updated successfully, but these errors were encountered: