File: test_cast_struct.test

package info (click to toggle)
duckdb 1.5.1-2
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 299,196 kB
  • sloc: cpp: 865,414; ansic: 57,292; python: 18,871; sql: 12,663; lisp: 11,751; yacc: 7,412; lex: 1,682; sh: 747; makefile: 558
file content (168 lines) | stat: -rw-r--r-- 4,173 bytes parent folder | download | duplicates (3)
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
# name: test/common/test_cast_struct.test
# description: Test casting structs
# group: [common]

statement ok
PRAGMA enable_verification

statement error
SELECT struct_pack(b => 42)::STRUCT(a INT);
----
<REGEX>:Binder Error.*STRUCT to STRUCT cast must have at least one matching member.*

statement error
SELECT struct_extract(struct_pack(b => 42)::STRUCT(a INT), 'a');
----
<REGEX>:Binder Error.*STRUCT to STRUCT cast must have at least one matching member.*

query I
SELECT struct_extract(struct_pack(a => 42)::STRUCT(a STRING), 'a');
----
42

statement error
SELECT struct_extract(struct_pack(b => 42)::ROW(a INT), 'a');
----
<REGEX>:Binder Error.*STRUCT to STRUCT cast must have at least one matching member.*

query I
SELECT struct_extract(struct_pack(a => 42)::ROW(a INT), 'a');
----
42

statement error
SELECT struct_extract(struct_pack(b => 42::DOUBLE)::STRUCT(a INT), 'a');
----
<REGEX>:Binder Error.*STRUCT to STRUCT cast must have at least one matching member.*

query I
SELECT struct_extract(struct_pack(a => 42::DOUBLE)::STRUCT(a INT), 'a');
----
42

statement error
SELECT struct_extract(struct_pack(b => '42'::DOUBLE)::STRUCT(a INT), 'a');
----
<REGEX>:Binder Error.*STRUCT to STRUCT cast must have at least one matching member.*

query I
SELECT struct_extract(struct_pack(a => '42'::DOUBLE)::STRUCT(a INT), 'a');
----
42

statement error
SELECT struct_pack(b => '42'::DOUBLE)::STRUCT(a INT, c STRING)
----
<REGEX>:Binder Error.*STRUCT to STRUCT cast must have at least one matching member.*

statement error
SELECT struct_pack(b => 'hello'::STRING)::STRUCT(b INT)
----
Could not convert string 'hello' to INT32

statement error
SELECT struct_pack(a => 'hello'::STRING, b => 'world'::STRING)::STRUCT(a STRING, b INT)
----
Could not convert string 'world' to INT32

statement error
SELECT struct_pack(a => [1, 2, 3])::STRUCT(a INT)
----
Unimplemented type for cast (INTEGER[] -> INTEGER)

statement error
SELECT struct_pack(a => struct_pack(b => 42)::STRUCT(b INT))::STRUCT(a INT)
----
Unimplemented type for cast (STRUCT(b INTEGER) -> INTEGER)

statement error
SELECT struct_pack(b => 'hello'::STRING)::STRUCT(a INT)
----
<REGEX>:Binder Error.*STRUCT to STRUCT cast must have at least one matching member.*

statement error
SELECT struct_pack(b => '42'::DOUBLE, c => 'asdf'::STRING)::STRUCT(a1 INT, a2 STRING);
----
<REGEX>:Binder Error.*STRUCT to STRUCT cast must have at least one matching member.*

query I
SELECT struct_pack(a1 => '42'::DOUBLE, a2 => 'asdf'::STRING)::STRUCT(a1 INT, a2 STRING);
----
{'a1': 42, 'a2': asdf}

query I
SELECT ROW(42, 'asdf');
----
(42, asdf)

statement error
SELECT ROW();
----
pack nothing into a struct

query I
SELECT ROW(NULL);
----
(NULL)

query I
SELECT ROW(NULL, NULL);
----
(NULL, NULL)

# MB example
query I
SELECT CAST(ROW(1, 2) AS ROW(a INTEGER, b INTEGER))
----
{'a': 1, 'b': 2}

query I
SELECT a::ROW(a INT, b STRING) r FROM (VALUES (ROW(1, 'asdf')), (ROW(4, 'fdsa'))) s(a);
----
{'a': 1, 'b': asdf}
{'a': 4, 'b': fdsa}

statement error
SELECT struct_extract({'a': a}, a) FROM (SELECT a::VARCHAR AS a FROM range(10) tbl(a));
----
<REGEX>:.*Binder Error.*Key name for struct_extract needs to be a constant string.*

statement error
SELECT struct_extract({'a': 42}, 42)
----
<REGEX>:.*Binder Error.*can only be used on unnamed structs.*

query I
SELECT struct_extract_at({'a': 42}, 1)
----
42

statement error
SELECT struct_extract_at({'a': 42}, 0)
----
<REGEX>:.*Binder Error.*out of range.*

statement error
SELECT struct_extract_at({'a': 42}, 42)
----
<REGEX>:.*Binder Error.*out of range.*

# Test string to struct cast within struct casting.
query I
SELECT {a: {b: '{a: 3, b: "Hello World"}'}}::STRUCT(a STRUCT(b STRUCT(a INT, b VARCHAR)));
----
{'a': {'b': {'a': 3, 'b': Hello World}}}

# Test if try_cast continues after encountering error.
query I 
SELECT TRY_CAST(struct_pack(a => 4, b => 'Ducky', c => '1964-06-15')
AS STRUCT(a INT, b DOUBLE, c DATE));
----
{'a': 4, 'b': NULL, 'c': 1964-06-15}

query I 
SELECT TRY_CAST(struct_pack(a => 4, b => 'Ducky', c => 'Tommorow', d => {a:3.0})
AS STRUCT(a VARCHAR[], b VARCHAR, c DATE, d STRUCT(a INT)));
----
{'a': NULL, 'b': Ducky, 'c': NULL, 'd': {'a': 3}}