forked from MaterializeInc/materialize
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkeys.slt
46 lines (36 loc) · 1.08 KB
/
keys.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
# 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.
# Keys should be detected for constants with
# no duplicates in a column.
query T multiline
EXPLAIN TYPED PLAN FOR (VALUES (1, 1), (1, 2))
----
%0 =
| Constant (1, 1) (1, 2)
| | types = (integer, integer)
| | keys = ((#1))
EOF
# A global primary key should be detected for constants with fewer than two rows.
query T multiline
EXPLAIN TYPED PLAN FOR (VALUES (1, 2, 3))
----
%0 =
| Constant (1, 2, 3)
| | types = (integer, integer, integer)
| | keys = (())
EOF
# Each detected-unique column belongs in a separate key.
query T multiline
EXPLAIN TYPED PLAN FOR (VALUES (1, 1, 1), (2, 2, 1), (3, 3, 1))
----
%0 =
| Constant (1, 1, 1) (2, 2, 1) (3, 3, 1)
| | types = (integer, integer, integer)
| | keys = ((#0), (#1))
EOF