-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathtest_sum.py
More file actions
160 lines (148 loc) · 5.07 KB
/
Copy pathtest_sum.py
File metadata and controls
160 lines (148 loc) · 5.07 KB
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
from .aggtst_base import TstView
class aggtst_int_sum(TstView):
def __init__(self):
# Validated on Postgres
self.sql = """CREATE MATERIALIZED VIEW int_sum AS SELECT
SUM(c1) AS c1, SUM(c2) AS c2, SUM(c3) AS c3, SUM(c4) AS c4, SUM(c5) AS c5, SUM(c6) AS c6, SUM(c7) AS c7, SUM(c8) AS c8
FROM int0_tbl"""
self.data = [
{
"c1": 9,
"c2": 12,
"c3": 13,
"c4": 14,
"c5": 12,
"c6": 14,
"c7": 7,
"c8": 18,
}
]
class aggtst_int_sum_gby(TstView):
# Validated on Postgres
def __init__(self):
self.sql = """CREATE MATERIALIZED VIEW int_sum_gby AS SELECT
id, SUM(c1) AS c1, SUM(c2) AS c2, SUM(c3) AS c3, SUM(c4) AS c4, SUM(c5) AS c5, SUM(c6) AS c6, SUM(c7) AS c7, SUM(c8) AS c8
FROM int0_tbl
GROUP BY id"""
self.data = [
{
"id": 0,
"c1": 5,
"c2": 4,
"c3": 3,
"c4": 6,
"c5": 8,
"c6": 10,
"c7": 3,
"c8": 11,
},
{
"id": 1,
"c1": 4,
"c2": 8,
"c3": 10,
"c4": 8,
"c5": 4,
"c6": 4,
"c7": 4,
"c8": 7,
},
]
class aggtst_int_sum_distinct(TstView):
def __init__(self):
# Validated on Postgres
self.sql = """CREATE MATERIALIZED VIEW int_sum_distinct AS SELECT
SUM(DISTINCT c1) AS c1, SUM(DISTINCT c2) AS c2, SUM(DISTINCT c3) AS c3, SUM(DISTINCT c4) AS c4, SUM(DISTINCT c5) AS c5, SUM(DISTINCT c6) AS c6, SUM(DISTINCT c7) AS c7, SUM(DISTINCT c8) AS c8
FROM int0_tbl"""
self.data = [
{
"c1": 9,
"c2": 10,
"c3": 13,
"c4": 12,
"c5": 10,
"c6": 14,
"c7": 7,
"c8": 18,
}
]
class aggtst_int_sum_distinct_gby(TstView):
def __init__(self):
# Validated on Postgres
self.sql = """CREATE MATERIALIZED VIEW int_sum_distinct_gby AS SELECT
id, SUM(DISTINCT c1) AS c1, SUM(DISTINCT c2) AS c2, SUM(DISTINCT c3) AS c3, SUM(DISTINCT c4) AS c4, SUM(DISTINCT c5) AS c5, SUM(DISTINCT c6) AS c6, SUM(DISTINCT c7) AS c7, SUM(DISTINCT c8) AS c8
FROM int0_tbl
GROUP BY id"""
self.data = [
{
"id": 0,
"c1": 5,
"c2": 2,
"c3": 3,
"c4": 6,
"c5": 8,
"c6": 10,
"c7": 3,
"c8": 11,
},
{
"id": 1,
"c1": 4,
"c2": 8,
"c3": 10,
"c4": 8,
"c5": 2,
"c6": 4,
"c7": 4,
"c8": 7,
},
]
class aggtst_int_sum_where(TstView):
def __init__(self):
# Validated on Postgres
self.sql = """CREATE MATERIALIZED VIEW int_sum_where AS SELECT
SUM(c1) FILTER(WHERE c8>2) AS f_c1, SUM(c2) FILTER(WHERE c8>2) AS f_c2, SUM(c3) FILTER(WHERE c8>2) AS f_c3, SUM(c4) FILTER(WHERE c8>2) AS f_c4, SUM(c5) FILTER(WHERE c8>2) AS f_c5, SUM(c6) FILTER(WHERE c8>2) AS f_c6, SUM(c7) FILTER(WHERE c8>2) AS f_c7, SUM(c8) FILTER(WHERE c8>2) AS f_c8
FROM int0_tbl"""
self.data = [
{
"f_c1": 5,
"f_c2": 9,
"f_c3": 9,
"f_c4": 8,
"f_c5": 10,
"f_c6": 11,
"f_c7": 3,
"f_c8": 16,
}
]
class aggtst_int_sum_where_gby(TstView):
def __init__(self):
# Validated on Postgres
self.sql = """CREATE MATERIALIZED VIEW int_sum_where_gby AS SELECT
id, SUM(c1) FILTER(WHERE c8>2) AS f_c1, SUM(c2) FILTER(WHERE c8>2) AS f_c2, SUM(c3) FILTER(WHERE c8>2) AS f_c3, SUM(c4) FILTER(WHERE c8>2) AS f_c4, SUM(c5) FILTER(WHERE c8>2) AS f_c5, SUM(c6) FILTER(WHERE c8>2) AS f_c6, SUM(c7) FILTER(WHERE c8>2) AS f_c7, SUM(c8) FILTER(WHERE c8>2) AS f_c8
FROM int0_tbl
GROUP BY id"""
self.data = [
{
"id": 0,
"f_c1": 5,
"f_c2": 4,
"f_c3": 3,
"f_c4": 6,
"f_c5": 8,
"f_c6": 10,
"f_c7": 3,
"f_c8": 11,
},
{
"id": 1,
"f_c1": None,
"f_c2": 5,
"f_c3": 6,
"f_c4": 2,
"f_c5": 2,
"f_c6": 1,
"f_c7": None,
"f_c8": 5,
},
]