forked from feldera/feldera
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_row_max.py
More file actions
78 lines (66 loc) · 2.74 KB
/
Copy pathtest_row_max.py
File metadata and controls
78 lines (66 loc) · 2.74 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
from .aggtst_base import TstView
class aggtst_row_max_value(TstView):
def __init__(self):
# checked manually
self.data = [{"c1": {"expr$0": 7, "expr$1": "hi", "expr$2": "hiya"}}]
self.sql = """CREATE MATERIALIZED VIEW row_max AS SELECT
MAX(ROW(c1, c2, c3)) AS c1
FROM row_tbl"""
class aggtst_row_max_gby(TstView):
def __init__(self):
# checked manually
self.data = [
{
"id": 0,
"c1": {"expr$0": 4, "expr$1": None, "expr$2": "adios"},
"c2": {"expr$0": "ola", "expr$1": 3, "expr$2": "ciao"},
},
{
"id": 1,
"c1": {"expr$0": 7, "expr$1": "hi", "expr$2": "hiya"},
"c2": {"expr$0": "hi", "expr$1": 7, "expr$2": "hiya"},
},
]
self.sql = """CREATE MATERIALIZED VIEW row_max_gby AS SELECT
id,
MAX(ROW(c1, c2, c3)) AS c1,
MAX(ROW(c2, c1, c3)) AS c2
FROM row_tbl
GROUP BY id"""
class aggtst_row_max_distinct(TstView):
def __init__(self):
# checked manually
self.data = [{"c1": {"expr$0": 7, "expr$1": "hi", "expr$2": "hiya"}}]
self.sql = """CREATE MATERIALIZED VIEW row_max_distinct AS SELECT
MAX(DISTINCT ROW(c1, c2, c3)) AS c1
FROM row_tbl"""
class aggtst_row_max_distinct_gby(TstView):
def __init__(self):
# checked manually
self.data = [
{"id": 0, "c1": {"expr$0": 4, "expr$1": None, "expr$2": "adios"}},
{"id": 1, "c1": {"expr$0": 7, "expr$1": "hi", "expr$2": "hiya"}},
]
self.sql = """CREATE MATERIALIZED VIEW row_max_distinct_gby AS SELECT
id,
MAX(DISTINCT ROW(c1, c2, c3)) AS c1
FROM row_tbl
GROUP BY id"""
class aggtst_row_max_where(TstView):
def __init__(self):
# checked manually
self.data = [{"c1": {"expr$0": 7, "expr$1": "hi", "expr$2": "hiya"}}]
self.sql = """CREATE MATERIALIZED VIEW row_max_where AS SELECT
MAX(ROW(c1, c2, c3)) FILTER(WHERE c2 < c3) AS c1
FROM row_tbl"""
class aggtst_row_max_where_gby(TstView):
def __init__(self):
# checked manually
self.data = [
{"id": 0, "c1": None},
{"id": 1, "c1": {"expr$0": 7, "expr$1": "hi", "expr$2": "hiya"}},
]
self.sql = """CREATE MATERIALIZED VIEW row_max_where_gby AS SELECT
id, MAX(ROW(c1, c2, c3)) FILTER(WHERE c2 < c3) AS c1
FROM row_tbl
GROUP BY id"""