You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.2 KiB
24 lines
1.2 KiB
[
|
|
{
|
|
"name": "TestHashPartitionPruner",
|
|
"cases": [
|
|
"explain select * from t1 where id = 7 and a = 6",
|
|
"explain select * from t3 where id = 9 and a = 1",
|
|
"explain select * from t2 where id = 9 and a = -110",
|
|
"explain select * from t1 where id = -17",
|
|
"explain select * from t2 where id = a and a = b and b = 2",
|
|
"explain select * from t1 join t2 on (t1.id = t2.id) where t1.id = 5 and t2.a = 7",
|
|
"explain select * from t1 left join t2 on t1.id = 1 and t2.a = 2 where t2.id = 7",
|
|
"explain select * from t2 join t1 on t1.id = t2.id and t2.a = t1.id and t2.id = 12",
|
|
"explain select * from t1 left join t2 on true where t1.a = 1 and false",
|
|
"explain select * from t1 left join t2 on true where t1.a = 1 and null",
|
|
"explain select * from t1 left join t2 on true where t1.a = null",
|
|
"explain select * from t4 where d = '2019-10-07 10:40:00' and a = 1",
|
|
"explain select * from t5 where d = '2019-10-07'",
|
|
"explain select * from t6 where a is null",
|
|
"explain select * from t6 where b is null",
|
|
"explain select * from t5 where d is null",
|
|
"explain select * from t7 where b = -3 and a is null"
|
|
]
|
|
}
|
|
]
|
|
|