Files
tidb/executor/testdata/executor_suite_in.json
2020-08-18 15:31:14 +08:00

31 lines
1.3 KiB
JSON

[
{
"name": "TestSetOperation",
"cases": [
"select * from t3 union select * from t1",
"select * from t2 union all select * from t1",
"select * from t1 except select * from t3",
"select * from t1 intersect select * from t2",
"select * from t1 union all select * from t2 union all select * from t3",
"select * from t1 union all select * from t2 except select * from t3",
"select * from t1 intersect select * from t2 intersect select * from t1",
"select * from t1 union all select * from t2 intersect select * from t3",
"select * from t1 except select * from t2 intersect select * from t3"
]
},
{
"name": "TestSetOperationOnDiffColType",
"cases": [
"select * from t3 union select * from t1",
"select * from t2 union all select * from t1",
"select * from t1 except select * from t3",
"select * from t1 intersect select * from t2",
"select * from t1 union all select * from t2 union all select * from t3",
"select * from t1 union all select * from t2 except select * from t3",
"select * from t1 intersect select * from t2 intersect select * from t1",
"select * from t1 union all select * from t2 intersect select * from t3",
"select * from t1 except select * from t2 intersect select * from t3"
]
}
]