forked from MaterializeInc/materialize
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathupdates.slt
51 lines (40 loc) · 935 Bytes
/
updates.slt
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
# Copyright Materialize, Inc. and contributors. All rights reserved.
#
# Use of this software is governed by the Business Source License
# included in the LICENSE file at the root of this repository.
#
# As of the Change Date specified in that file, in accordance with
# the Business Source License, use of this software will be governed
# by the Apache License, Version 2.0.
# This test may seem simple, but it is surprisingly good at verifying that
# logical timestamp handling for internal inputs is sane.
statement ok
CREATE TABLE t (a INT)
statement ok
INSERT INTO t VALUES (1)
query I rowsort
SELECT a FROM t
----
1
statement ok
INSERT INTO t VALUES (2)
query I rowsort
SELECT a FROM t
----
1
2
statement ok
CREATE TABLE t2 (a INT)
statement ok
INSERT INTO t2 VALUES (1), (3)
query I
SELECT a FROM t NATURAL JOIN t2
----
1
statement ok
INSERT INTO t VALUES (3)
query I rowsort
SELECT a FROM t NATURAL JOIN t2
----
1
3