forked from MaterializeInc/materialize
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtime.slt
350 lines (279 loc) · 5.97 KB
/
time.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
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
# Copyright 2015 - 2019 The Cockroach Authors. All rights reserved.
# 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 file is derived from the logic test suite in CockroachDB. The
# original file was retrieved on June 10, 2019 from:
#
# https://github.com/cockroachdb/cockroach/blob/d2f7fbf5dd1fc1a099bbad790a2e1f7c60a66cc3/pkg/sql/logictest/testdata/logic_test/time
#
# The original source code is subject to the terms of the Apache
# 2.0 license, a copy of which can be found in the LICENSE file at the
# root of this repository.
mode cockroach
# Note that the odd '0000-01-01 hh:mi:ss +0000 UTC' result format is an
# artifact of how pq displays TIMEs.
query T
SELECT '12:00:00':::TIME;
----
0000-01-01 12:00:00 +0000 UTC
query T
SELECT '12:00:00.456':::TIME;
----
0000-01-01 12:00:00.456 +0000 UTC
query T
SELECT '00:00:00':::TIME;
----
0000-01-01 00:00:00 +0000 UTC
query T
SELECT '23:59:59.999999':::TIME;
----
0000-01-01 23:59:59.999999 +0000 UTC
query T
select ('24:00'::TIME)::STRING
----
24:00:00
query T
SELECT ('24:00:00'::TIME)::STRING
----
24:00:00
statement error could not parse
SELECT '124:00'::TIME;
statement error could not parse
SELECT '24:00:01'::TIME;
statement error could not parse
SELECT '24:00:00.001'::TIME;
# Timezone should be ignored.
query T
SELECT '12:00:00-08:00':::TIME;
----
0000-01-01 12:00:00 +0000 UTC
query T
SELECT TIME '12:00:00';
----
0000-01-01 12:00:00 +0000 UTC
# Casting
query T
SELECT '12:00:00'::TIME;
----
0000-01-01 12:00:00 +0000 UTC
query T
select '12:00:00':::STRING::TIME;
----
0000-01-01 12:00:00 +0000 UTC
query T
SELECT '12:00:00' COLLATE de::TIME;
----
0000-01-01 12:00:00 +0000 UTC
query T
SELECT '2017-01-01 12:00:00':::TIMESTAMP::TIME;
----
0000-01-01 12:00:00 +0000 UTC
query T
SELECT '2017-01-01 12:00:00-05':::TIMESTAMPTZ::TIME;
----
0000-01-01 12:00:00 +0000 UTC
query T
SELECT '12h':::INTERVAL::TIME;
----
0000-01-01 12:00:00 +0000 UTC
query T
SELECT '12:00:00':::TIME::INTERVAL;
----
12:00:00
query T
SELECT '12:00:00':::TIME::STRING;
----
12:00:00
# Comparison
query B
SELECT '12:00:00':::TIME = '12:00:00':::TIME
----
true
query B
SELECT '12:00:00':::TIME = '12:00:00.000000':::TIME
----
true
query B
SELECT '12:00:00':::TIME = '12:00:00.000001':::TIME
----
false
query B
SELECT '12:00:00':::TIME < '12:00:00.000001':::TIME
----
true
query B
SELECT '12:00:00':::TIME < '12:00:00':::TIME
----
false
query B
SELECT '12:00:00':::TIME < '11:59:59.999999':::TIME
----
false
query B
SELECT '12:00:00':::TIME > '11:59:59.999999':::TIME
----
true
query B
SELECT '12:00:00':::TIME > '12:00:00':::TIME
----
false
query B
SELECT '12:00:00':::TIME > '12:00:00.000001':::TIME
----
false
query B
SELECT '12:00:00':::TIME <= '12:00:00':::TIME
----
true
query B
SELECT '12:00:00':::TIME >= '12:00:00':::TIME
----
true
query B
SELECT '12:00:00':::TIME IN ('12:00:00');
----
true
query B
SELECT '12:00:00':::TIME IN ('00:00:00');
----
false
# Arithmetic
query T
SELECT '12:00:00':::TIME + '1s':::INTERVAL
----
0000-01-01 12:00:01 +0000 UTC
query T
SELECT '23:59:59':::TIME + '1s':::INTERVAL
----
0000-01-01 00:00:00 +0000 UTC
query T
SELECT '12:00:00':::TIME + '1d':::INTERVAL
----
0000-01-01 12:00:00 +0000 UTC
query T
SELECT '1s':::INTERVAL + '12:00:00':::TIME
----
0000-01-01 12:00:01 +0000 UTC
query T
SELECT '12:00:00':::TIME - '1s':::INTERVAL
----
0000-01-01 11:59:59 +0000 UTC
query T
SELECT '00:00:00':::TIME - '1s':::INTERVAL
----
0000-01-01 23:59:59 +0000 UTC
query T
SELECT '12:00:00':::TIME - '1d':::INTERVAL
----
0000-01-01 12:00:00 +0000 UTC
query T
SELECT '12:00:00':::TIME - '11:59:59':::TIME
----
00:00:01
query T
SELECT '11:59:59':::TIME - '12:00:00':::TIME
----
-00:00:01
query T
SELECT '2017-01-01':::DATE + '12:00:00':::TIME
----
2017-01-01 12:00:00 +0000 +0000
query T
SELECT '12:00:00':::TIME + '2017-01-01':::DATE
----
2017-01-01 12:00:00 +0000 +0000
query T
SELECT '2017-01-01':::DATE - '12:00:00':::TIME
----
2016-12-31 12:00:00 +0000 +0000
# Storage
statement ok
CREATE TABLE times (t time PRIMARY KEY)
statement ok
INSERT INTO times VALUES
('00:00:00'),
('00:00:00.000001'),
('11:59:59.999999'),
('12:00:00'),
('12:00:00.000001'),
('23:59:59.999999')
query T
SELECT * FROM times ORDER BY t
----
0000-01-01 00:00:00 +0000 UTC
0000-01-01 00:00:00.000001 +0000 UTC
0000-01-01 11:59:59.999999 +0000 UTC
0000-01-01 12:00:00 +0000 UTC
0000-01-01 12:00:00.000001 +0000 UTC
0000-01-01 23:59:59.999999 +0000 UTC
statement ok
CREATE TABLE arrays (times TIME[])
statement ok
INSERT INTO arrays VALUES
(ARRAY[]),
(ARRAY['00:00:00']),
(ARRAY['00:00:00', '12:00:00.000001']),
('{13:00:00}'::TIME[])
query T rowsort
SELECT * FROM arrays
----
{}
{00:00:00}
{00:00:00,12:00:00.000001}
{13:00:00}
# Built-ins
query T
SELECT date_trunc('hour', time '12:01:02.345678')
----
12:00:00
query T
SELECT date_trunc('minute', time '12:01:02.345678')
----
12:01:00
query T
SELECT date_trunc('second', time '12:01:02.345678')
----
12:01:02
query T
SELECT date_trunc('millisecond', time '12:01:02.345678')
----
12:01:02.345
query T
SELECT date_trunc('microsecond', time '12:01:02.345678')
----
12:01:02.345678
query error pgcode 22023 date_trunc\(\): unsupported timespan: day
SELECT date_trunc('day', time '12:01:02.345')
query I
SELECT extract(hour from time '12:01:02.345678')
----
12
query I
SELECT extract(minute from time '12:01:02.345678')
----
1
query I
SELECT extract(second from time '12:01:02.345678')
----
2
query I
SELECT extract(millisecond from time '12:01:02.345678')
----
345
query I
SELECT extract(microsecond from time '12:01:02.345678')
----
345678
query I
SELECT extract(epoch from time '12:00:00')
----
43200
query error pgcode 22023 extract\(\): unsupported timespan: day
SELECT extract(day from time '12:00:00')