forked from feldera/feldera
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_array.py
More file actions
160 lines (148 loc) · 6 KB
/
test_array.py
File metadata and controls
160 lines (148 loc) · 6 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_array_agg_value(TstView):
def __init__(self):
# Validated on Postgres
self.data = [
{
"c1": [None, None, 4, 5],
"c2": [2, 5, 3, 2],
"c3": [3, 6, 4, None],
"c4": [2, 2, 6, 4],
"c5": [3, 2, 2, 5],
"c6": [4, 1, 3, 6],
"c7": [3, None, 4, None],
"c8": [3, 5, 2, 8],
}
]
self.sql = """CREATE MATERIALIZED VIEW int_array_agg AS SELECT
ARRAY_AGG(c1) AS c1, ARRAY_AGG(c2) AS c2, ARRAY_AGG(c3) AS c3, ARRAY_AGG(c4) AS c4, ARRAY_AGG(c5) AS c5, ARRAY_AGG(c6) AS c6, ARRAY_AGG(c7) AS c7, ARRAY_AGG(c8) AS c8
FROM int0_tbl"""
class aggtst_int_array_agg_groupby(TstView):
def __init__(self):
# Validated on Postgres
self.data = [
{
"id": 0,
"c1": [None, 5],
"c2": [2, 2],
"c3": [3, None],
"c4": [2, 4],
"c5": [3, 5],
"c6": [4, 6],
"c7": [3, None],
"c8": [3, 8],
},
{
"id": 1,
"c1": [None, 4],
"c2": [5, 3],
"c3": [6, 4],
"c4": [2, 6],
"c5": [2, 2],
"c6": [1, 3],
"c7": [None, 4],
"c8": [5, 2],
},
]
self.sql = """CREATE MATERIALIZED VIEW int_array_agg_gby AS SELECT
id, ARRAY_AGG(c1) AS c1, ARRAY_AGG(c2) AS c2, ARRAY_AGG(c3) AS c3, ARRAY_AGG(c4) AS c4, ARRAY_AGG(c5) AS c5, ARRAY_AGG(c6) AS c6, ARRAY_AGG(c7) AS c7, ARRAY_AGG(c8) AS c8
FROM int0_tbl
GROUP BY id"""
class aggtst_int_array_agg_distinct(TstView):
def __init__(self):
# Validated on Postgres
self.data = [
{
"c1": [None, 4, 5],
"c2": [2, 3, 5],
"c3": [None, 3, 4, 6],
"c4": [2, 4, 6],
"c5": [2, 3, 5],
"c6": [1, 3, 4, 6],
"c7": [None, 3, 4],
"c8": [2, 3, 5, 8],
}
]
self.sql = """CREATE MATERIALIZED VIEW int_array_agg_distinct AS SELECT
ARRAY_AGG(DISTINCT c1) AS c1,ARRAY_AGG(DISTINCT c2) AS c2, ARRAY_AGG(DISTINCT c3) AS c3, ARRAY_AGG(DISTINCT c4) AS c4, ARRAY_AGG(DISTINCT c5) AS c5, ARRAY_AGG(DISTINCT c6) AS c6, ARRAY_AGG(DISTINCT c7) AS c7, ARRAY_AGG(DISTINCT c8) AS c8
FROM int0_tbl"""
class aggtst_int_array_agg_distinct_groupby(TstView):
def __init__(self):
# Validated on Postgres
self.data = [
{
"id": 0,
"c1": [None, 5],
"c2": [2],
"c3": [None, 3],
"c4": [2, 4],
"c5": [3, 5],
"c6": [4, 6],
"c7": [None, 3],
"c8": [3, 8],
},
{
"id": 1,
"c1": [None, 4],
"c2": [3, 5],
"c3": [4, 6],
"c4": [2, 6],
"c5": [2],
"c6": [1, 3],
"c7": [None, 4],
"c8": [2, 5],
},
]
self.sql = """CREATE MATERIALIZED VIEW int_array_agg_distinct_groupby AS SELECT
id, ARRAY_AGG(DISTINCT c1) AS c1,ARRAY_AGG(DISTINCT c2) AS c2, ARRAY_AGG(DISTINCT c3) AS c3, ARRAY_AGG(DISTINCT c4) AS c4, ARRAY_AGG(DISTINCT c5) AS c5, ARRAY_AGG(DISTINCT c6) AS c6, ARRAY_AGG(DISTINCT c7) AS c7, ARRAY_AGG(DISTINCT c8) AS c8
FROM int0_tbl
GROUP BY id"""
class aggtst_int_array_agg_where(TstView):
def __init__(self):
# Validated on Postgres
self.data = [
{
"f_c1": [None, 4, 5],
"f_c2": [2, 3, 2],
"f_c3": [3, 4, None],
"f_c4": [2, 6, 4],
"f_c5": [3, 2, 5],
"f_c6": [4, 3, 6],
"f_c7": [3, 4, None],
"f_c8": [3, 2, 8],
}
]
self.sql = """CREATE MATERIALIZED VIEW int_array_agg_where AS SELECT
ARRAY_AGG(c1) FILTER(WHERE (c5+C6)> 3) AS f_c1, ARRAY_AGG(c2) FILTER(WHERE (c5+C6)> 3) AS f_c2, ARRAY_AGG(c3) FILTER(WHERE (c5+C6)> 3) AS f_c3, ARRAY_AGG(c4) FILTER(WHERE (c5+C6)> 3) AS f_c4, ARRAY_AGG(c5) FILTER(WHERE (c5+C6)> 3) AS f_c5, ARRAY_AGG(c6) FILTER(WHERE (c5+C6)> 3) AS f_c6, ARRAY_AGG(c7) FILTER(WHERE (c5+C6)> 3) AS f_c7, ARRAY_AGG(c8) FILTER(WHERE (c5+C6)> 3) AS f_c8
FROM int0_tbl """
class aggtst_array_agg_where_groupby(TstView):
def __init__(self):
# Validated on Postgres
self.data = [
{
"id": 0,
"f_c1": [None, 5],
"f_c2": [2, 2],
"f_c3": [3, None],
"f_c4": [2, 4],
"f_c5": [3, 5],
"f_c6": [4, 6],
"f_c7": [3, None],
"f_c8": [3, 8],
},
{
"id": 1,
"f_c1": [4],
"f_c2": [3],
"f_c3": [4],
"f_c4": [6],
"f_c5": [2],
"f_c6": [3],
"f_c7": [4],
"f_c8": [2],
},
]
self.sql = """CREATE MATERIALIZED VIEW int_array_agg_where_gby AS SELECT
id, ARRAY_AGG(c1) FILTER(WHERE (c5+C6)> 3) AS f_c1, ARRAY_AGG(c2) FILTER(WHERE (c5+C6)> 3) AS f_c2, ARRAY_AGG(c3) FILTER(WHERE (c5+C6)> 3) AS f_c3, ARRAY_AGG(c4) FILTER(WHERE (c5+C6)> 3) AS f_c4, ARRAY_AGG(c5) FILTER(WHERE (c5+C6)> 3) AS f_c5, ARRAY_AGG(c6) FILTER(WHERE (c5+C6)> 3) AS f_c6, ARRAY_AGG(c7) FILTER(WHERE (c5+C6)> 3) AS f_c7, ARRAY_AGG(c8) FILTER(WHERE (c5+C6)> 3) AS f_c8
FROM int0_tbl
GROUP BY id"""