forked from uwdb/Cosette
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gen_cos_files.py
131 lines (116 loc) · 4.91 KB
/
gen_cos_files.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
"""
Generate cos files from calcite test cases
"""
import json
import os.path
CALCITE_RULE_PATH = "./examples/calcite/"
SUPPORTED_TESTS = ["testUnionToDistinctRule",
"testAddRedundantSemiJoinRule",
"testPushFilterPastAgg",
"testPushFilterPastAggTwo",
"testPushFilterPastAggFour",
"testSemiJoinRuleExists",
"testPushProjectPastSetOp",
"testPushJoinThroughUnionOnLeft",
"testPushJoinThroughUnionOnRight",
"testMergeFilter",
"testMergeUnionAll",
"testPushSemiJoinPastJoinRuleLeft",
"testPushSemiJoinPastJoinRuleRight",
"testConvertMultiJoinRule",
"testReduceConstantsDup",
"testRemoveSemiJoin",
"testRemoveSemiJoinRight",
"testReduceConstantsNegated",
"testReduceConstantsNegatedInverted",
"testEmptyAggregate",
"testEmptyAggregateEmptyKey",
"testEmptyAggregateEmptyKeyWithAggregateValuesRule",
"testPushSumConstantThroughUnion",
"testPushSumNullableThroughUnion",
"testPushSumNullableNOGBYThroughUnion",
"testPushCountStarThroughUnion",
"testPushCountNullableThroughUnion",
"testPushMaxNullableThroughUnion",
"testPushMinThroughUnion",
"testPushSumCountStarThroughUnion",
"testPushSumConstantGroupingSetsThroughUnion",
"testPushSumNullableGroupingSetsThroughUnion",
"testPushCountStarGroupingSetsThroughUnion",
"testPushCountNullableGroupingSetsThroughUnion",
"testPushMaxNullableGroupingSetsThroughUnion",
"testPushMinGroupingSetsThroughUnion",
"testPushSumCountStarGroupingSetsThroughUnion",
"testPushCountFilterThroughUnion",
"testPullFilterThroughAggregate",
"testPullConstantThroughUnion",
"testPullConstantThroughUnion2",
"testPullConstantThroughUnion3",
"testAggregateProjectMerge",
"testAggregateGroupingSetsProjectMerge",
"testPullAggregateThroughUnion",
"testPullConstantIntoProject",
"testAggregateProjectPullUpConstants",
"testPushJoinCondDownToProject",
"testAggregateConstantKeyRule",
"testAggregateConstantKeyRule2",
"testExpandProjectScalar",
"testExpandFilterExists",
"testExpandFilterExistsSimple",
"testExpandFilterExistsSimpleAnd",
"testDecorrelateExists",
"testDecorrelateTwoExists",
"testDecorrelateTwoScalar",
"testExpandWhereComparisonCorrelated",
"testCustomColumnResolvingInCorrelatedSubQuery"]
# from MockCatalogReader.java
SCHEMA_TABLE_DECS = """
schema emp(empno:int, ename:int, job:int, mgr:int, hiredate:int, comm:int, sal:int, deptno:int, slacker:int);
schema dept(deptno:int, name:int);
schema bonus(ename:int, job:int, sal:int, comm:int);
schema account(acctno:int, type:int, balance:int);
schema t(k0:int, c1:int, f1_a0:int, f2_a0:int, f0_c0:int, f1_c0:int, f0_c1:int, f1_c2:int, f2_c3:int);
table emp(emp);
table dept(dept);
table bonus(bonus);
table account(account);
table t(t);
"""
def gen_cos_files():
"""
generate cos file
"""
with open(CALCITE_RULE_PATH+'calcite_tests.json') as input_file:
data = json.load(input_file)
supported_tests = set(SUPPORTED_TESTS)
count = 0
for i in data:
if i["name"] in supported_tests:
fname = "{}.cos".format(i["name"])
if os.path.isfile(CALCITE_RULE_PATH+fname):
print "{} already exists. ".format(fname)
else:
print "writing {}.".format(CALCITE_RULE_PATH+fname)
with open(fname, 'w') as output_file:
output_file.write(gen_cos_source(i["q1"], i["q2"]))
count += 1
print "converted {} test cases to cosette programs.".format(count)
def gen_cos_source(q1, q2):
""" generate cosette source code """
return "{}\n{}\n{}\n{}".format(
SCHEMA_TABLE_DECS,
gen_q_stmt("q1", q1),
gen_q_stmt("q2", q2),
gen_v_stmt("q1", "q2"))
def gen_q_stmt(name, query):
"""
return a string of query statement.
"""
return "query {} `{}`;\n".format(name, query)
def gen_v_stmt(q1n, q2n):
"""
return a string of verify statement.
"""
return "verify {} {};\n".format(q1n, q2n)
if __name__ == '__main__':
gen_cos_files()