forked from feldera/feldera
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_row_some.py
More file actions
67 lines (55 loc) · 2.2 KB
/
Copy pathtest_row_some.py
File metadata and controls
67 lines (55 loc) · 2.2 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
from .aggtst_base import TstView
class aggtst_row_some(TstView):
def __init__(self):
# Validated on Postgres
self.data = [{"c1": True}]
self.sql = """CREATE MATERIALIZED VIEW row_some AS SELECT
SOME(ROW(c3, c2) != ROW(c2, c3)) AS c1
FROM row_tbl"""
class aggtst_row_some_groupby(TstView):
def __init__(self):
# Validated on Postgres
self.data = [
{"id": 0, "c1": True},
{"id": 1, "c1": True},
]
self.sql = """CREATE MATERIALIZED VIEW row_some_gby AS SELECT
id, SOME(ROW(c3, c2) != ROW(c2, c3)) AS c1
FROM row_tbl
GROUP BY id"""
class aggtst_row_some_distinct(TstView):
def __init__(self):
# Validated on Postgres
self.data = [{"c1": False}]
self.sql = """CREATE MATERIALIZED VIEW row_some_distinct AS SELECT
SOME(DISTINCT ROW(c3, c2) != ROW(c3, c2)) AS c1
FROM row_tbl"""
class aggtst_row_some_distinct_gby(TstView):
def __init__(self):
# Validated on Postgres
self.data = [
{"id": 0, "c1": False},
{"id": 1, "c1": False},
]
self.sql = """CREATE MATERIALIZED VIEW row_some_distinct_gby AS SELECT
id, SOME(DISTINCT ROW(c3, c2) != ROW(c3, c2)) AS c1
FROM row_tbl
GROUP BY id"""
class aggtst_row_some_where(TstView):
def __init__(self):
# Validated on Postgres
self.data = [{"c1": None}]
self.sql = """CREATE MATERIALIZED VIEW row_some_where AS SELECT
SOME(ROW(c3, c2) = ROW(c2, c3)) FILTER(WHERE c2 IS NULL) AS c1
FROM row_tbl"""
class aggtst_row_some_where_groupby(TstView):
def __init__(self):
# Validated on Postgres
self.data = [
{"id": 0, "c1": None},
{"id": 1, "c1": None},
]
self.sql = """CREATE MATERIALIZED VIEW row_some_where_gby AS SELECT
id, SOME(ROW(c3, c2) = ROW(c2, c3)) FILTER(WHERE c2 IS NULL) AS c1
FROM row_tbl
GROUP BY id"""