forked from feldera/feldera
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_map_arr_agg.py
More file actions
125 lines (113 loc) · 4.12 KB
/
Copy pathtest_map_arr_agg.py
File metadata and controls
125 lines (113 loc) · 4.12 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
from .aggtst_base import TstView
class aggtst_map_array_agg_value(TstView):
def __init__(self):
# checked manually
self.data = [
{
"c1": [
{"a": 75, "b": 66},
{"f": 45, "h": 66},
{"q": 11, "v": 66},
{"q": 11, "v": 66},
{"x": 8, "y": 6},
],
"c2": [
None,
{"f": 1},
{"q": 11, "v": 66, "x": None},
{"q": 22},
{"i": 5, "j": 66},
],
}
]
self.sql = """CREATE MATERIALIZED VIEW map_array_agg AS SELECT
ARRAY_AGG(c1) AS c1, ARRAY_AGG(c2) AS c2
FROM map_tbl"""
class aggtst_map_array_agg_gby(TstView):
def __init__(self):
# checked manually
self.data = [
{
"id": 0,
"c1": [{"a": 75, "b": 66}, {"q": 11, "v": 66}],
"c2": [None, {"q": 22}],
},
{
"id": 1,
"c1": [{"f": 45, "h": 66}, {"q": 11, "v": 66}, {"x": 8, "y": 6}],
"c2": [{"f": 1}, {"q": 11, "v": 66, "x": None}, {"i": 5, "j": 66}],
},
]
self.sql = """CREATE MATERIALIZED VIEW map_array_agg_gby AS SELECT
id, ARRAY_AGG(c1) AS c1, ARRAY_AGG(c2) AS c2
FROM map_tbl
GROUP BY id"""
class aggtst_map_array_agg_distinct(TstView):
def __init__(self):
# checked manually
self.data = [
{
"c1": [
{"a": 75, "b": 66},
{"f": 45, "h": 66},
{"q": 11, "v": 66},
{"x": 8, "y": 6},
],
"c2": [
None,
{"f": 1},
{"i": 5, "j": 66},
{"q": 11, "v": 66, "x": None},
{"q": 22},
],
}
]
self.sql = """CREATE MATERIALIZED VIEW map_array_agg_distinct AS SELECT
ARRAY_AGG(DISTINCT c1) AS c1, ARRAY_AGG(DISTINCT c2) AS c2
FROM map_tbl"""
class aggtst_map_array_agg_distinct_gby(TstView):
def __init__(self):
# checked manually
self.data = [
{
"id": 0,
"c1": [{"a": 75, "b": 66}, {"q": 11, "v": 66}],
"c2": [None, {"q": 22}],
},
{
"id": 1,
"c1": [{"f": 45, "h": 66}, {"q": 11, "v": 66}, {"x": 8, "y": 6}],
"c2": [{"f": 1}, {"i": 5, "j": 66}, {"q": 11, "v": 66, "x": None}],
},
]
self.sql = """CREATE MATERIALIZED VIEW map_array_agg_distinct_gby AS SELECT
id, ARRAY_AGG(DISTINCT c1) AS c1, ARRAY_AGG(DISTINCT c2) AS c2
FROM map_tbl
GROUP BY id"""
class aggtst_map_array_agg_where(TstView):
def __init__(self):
# checked manually
self.data = [
{
"f_c1": [{"q": 11, "v": 66}, {"q": 11, "v": 66}],
"f_c2": [{"q": 11, "v": 66, "x": None}, {"q": 22}],
}
]
self.sql = """CREATE MATERIALIZED VIEW map_array_where AS SELECT
ARRAY_AGG(c1) FILTER(WHERE c1 < c2) AS f_c1, ARRAY_AGG(c2) FILTER(WHERE c1 < c2) AS f_c2
FROM map_tbl"""
class aggtst_map_array_agg_where_gby(TstView):
def __init__(self):
# checked manually
self.data = [
{"id": 0, "f_c1": [{"q": 11, "v": 66}], "f_c2": [{"q": 22}]},
{
"id": 1,
"f_c1": [{"q": 11, "v": 66}],
"f_c2": [{"q": 11, "v": 66, "x": None}],
},
]
self.sql = """CREATE MATERIALIZED VIEW map_array_where_gby AS SELECT
id, ARRAY_AGG(c1) FILTER(WHERE c1 < c2) AS f_c1, ARRAY_AGG(c2) FILTER(WHERE c1 < c2) AS f_c2
FROM map_tbl
GROUP BY id"""