blob: e5f18d8a9d26c01ef68ca4fac758bbc476e5be0b (
plain) (
blame)
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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
|
<sql-statement>
--
-- TIMETZ
--
CREATE TABLE TIMETZ_TBL (f1 time(2) with time zone);
</sql-statement>
<sql-statement>
INSERT INTO TIMETZ_TBL VALUES ('00:01 PDT');
</sql-statement>
-stdin-:<main>: Fatal: Execution
-stdin-:<main>:1:1: Fatal: Execution of node: YtFill!
INSERT INTO TIMETZ_TBL VALUES ('00:01 PDT');
^
-stdin-:<main>:1:1: Fatal: ERROR: invalid input syntax for type time with time zone: "00:01 PDT"
INSERT INTO TIMETZ_TBL VALUES ('00:01 PDT');
^
<sql-statement>
INSERT INTO TIMETZ_TBL VALUES ('01:00 PDT');
</sql-statement>
-stdin-:<main>: Fatal: Execution
-stdin-:<main>:1:1: Fatal: Execution of node: YtFill!
INSERT INTO TIMETZ_TBL VALUES ('01:00 PDT');
^
-stdin-:<main>:1:1: Fatal: ERROR: invalid input syntax for type time with time zone: "01:00 PDT"
INSERT INTO TIMETZ_TBL VALUES ('01:00 PDT');
^
<sql-statement>
INSERT INTO TIMETZ_TBL VALUES ('02:03 PDT');
</sql-statement>
-stdin-:<main>: Fatal: Execution
-stdin-:<main>:1:1: Fatal: Execution of node: YtFill!
INSERT INTO TIMETZ_TBL VALUES ('02:03 PDT');
^
-stdin-:<main>:1:1: Fatal: ERROR: invalid input syntax for type time with time zone: "02:03 PDT"
INSERT INTO TIMETZ_TBL VALUES ('02:03 PDT');
^
<sql-statement>
INSERT INTO TIMETZ_TBL VALUES ('07:07 PST');
</sql-statement>
-stdin-:<main>: Fatal: Execution
-stdin-:<main>:1:1: Fatal: Execution of node: YtFill!
INSERT INTO TIMETZ_TBL VALUES ('07:07 PST');
^
-stdin-:<main>:1:1: Fatal: ERROR: invalid input syntax for type time with time zone: "07:07 PST"
INSERT INTO TIMETZ_TBL VALUES ('07:07 PST');
^
<sql-statement>
INSERT INTO TIMETZ_TBL VALUES ('08:08 EDT');
</sql-statement>
-stdin-:<main>: Fatal: Execution
-stdin-:<main>:1:1: Fatal: Execution of node: YtFill!
INSERT INTO TIMETZ_TBL VALUES ('08:08 EDT');
^
-stdin-:<main>:1:1: Fatal: ERROR: invalid input syntax for type time with time zone: "08:08 EDT"
INSERT INTO TIMETZ_TBL VALUES ('08:08 EDT');
^
<sql-statement>
INSERT INTO TIMETZ_TBL VALUES ('11:59 PDT');
</sql-statement>
-stdin-:<main>: Fatal: Execution
-stdin-:<main>:1:1: Fatal: Execution of node: YtFill!
INSERT INTO TIMETZ_TBL VALUES ('11:59 PDT');
^
-stdin-:<main>:1:1: Fatal: ERROR: invalid input syntax for type time with time zone: "11:59 PDT"
INSERT INTO TIMETZ_TBL VALUES ('11:59 PDT');
^
<sql-statement>
INSERT INTO TIMETZ_TBL VALUES ('12:00 PDT');
</sql-statement>
-stdin-:<main>: Fatal: Execution
-stdin-:<main>:1:1: Fatal: Execution of node: YtFill!
INSERT INTO TIMETZ_TBL VALUES ('12:00 PDT');
^
-stdin-:<main>:1:1: Fatal: ERROR: invalid input syntax for type time with time zone: "12:00 PDT"
INSERT INTO TIMETZ_TBL VALUES ('12:00 PDT');
^
<sql-statement>
INSERT INTO TIMETZ_TBL VALUES ('12:01 PDT');
</sql-statement>
-stdin-:<main>: Fatal: Execution
-stdin-:<main>:1:1: Fatal: Execution of node: YtFill!
INSERT INTO TIMETZ_TBL VALUES ('12:01 PDT');
^
-stdin-:<main>:1:1: Fatal: ERROR: invalid input syntax for type time with time zone: "12:01 PDT"
INSERT INTO TIMETZ_TBL VALUES ('12:01 PDT');
^
<sql-statement>
INSERT INTO TIMETZ_TBL VALUES ('23:59 PDT');
</sql-statement>
-stdin-:<main>: Fatal: Execution
-stdin-:<main>:1:1: Fatal: Execution of node: YtFill!
INSERT INTO TIMETZ_TBL VALUES ('23:59 PDT');
^
-stdin-:<main>:1:1: Fatal: ERROR: invalid input syntax for type time with time zone: "23:59 PDT"
INSERT INTO TIMETZ_TBL VALUES ('23:59 PDT');
^
<sql-statement>
INSERT INTO TIMETZ_TBL VALUES ('11:59:59.99 PM PDT');
</sql-statement>
-stdin-:<main>: Fatal: Execution
-stdin-:<main>:1:1: Fatal: Execution of node: YtFill!
INSERT INTO TIMETZ_TBL VALUES ('11:59:59.99 PM PDT');
^
-stdin-:<main>:1:1: Fatal: ERROR: invalid input syntax for type time with time zone: "11:59:59.99 PM PDT"
INSERT INTO TIMETZ_TBL VALUES ('11:59:59.99 PM PDT');
^
<sql-statement>
INSERT INTO TIMETZ_TBL VALUES ('2003-03-07 15:36:39 America/New_York');
</sql-statement>
-stdin-:<main>: Fatal: Execution
-stdin-:<main>:1:1: Fatal: Execution of node: YtFill!
INSERT INTO TIMETZ_TBL VALUES ('2003-03-07 15:36:39 America/New_York');
^
-stdin-:<main>:1:1: Fatal: ERROR: time zone "america/new_york" not recognized
INSERT INTO TIMETZ_TBL VALUES ('2003-03-07 15:36:39 America/New_York');
^
<sql-statement>
INSERT INTO TIMETZ_TBL VALUES ('2003-07-07 15:36:39 America/New_York');
</sql-statement>
-stdin-:<main>: Fatal: Execution
-stdin-:<main>:1:1: Fatal: Execution of node: YtFill!
INSERT INTO TIMETZ_TBL VALUES ('2003-07-07 15:36:39 America/New_York');
^
-stdin-:<main>:1:1: Fatal: ERROR: time zone "america/new_york" not recognized
INSERT INTO TIMETZ_TBL VALUES ('2003-07-07 15:36:39 America/New_York');
^
<sql-statement>
-- this should fail (the timezone offset is not known)
INSERT INTO TIMETZ_TBL VALUES ('15:36:39 America/New_York');
</sql-statement>
-stdin-:<main>: Fatal: Execution
-stdin-:<main>:1:1: Fatal: Execution of node: YtFill!
-- this should fail (the timezone offset is not known)
^
-stdin-:<main>:1:1: Fatal: ERROR: time zone "america/new_york" not recognized
-- this should fail (the timezone offset is not known)
^
<sql-statement>
-- this should fail (timezone not specified without a date)
INSERT INTO TIMETZ_TBL VALUES ('15:36:39 m2');
</sql-statement>
-stdin-:<main>: Fatal: Execution
-stdin-:<main>:1:1: Fatal: Execution of node: YtFill!
-- this should fail (timezone not specified without a date)
^
-stdin-:<main>:1:1: Fatal: ERROR: invalid input syntax for type time with time zone: "15:36:39 m2"
-- this should fail (timezone not specified without a date)
^
<sql-statement>
-- this should fail (dynamic timezone abbreviation without a date)
INSERT INTO TIMETZ_TBL VALUES ('15:36:39 MSK m2');
</sql-statement>
-stdin-:<main>: Fatal: Execution
-stdin-:<main>:1:1: Fatal: Execution of node: YtFill!
-- this should fail (dynamic timezone abbreviation without a date)
^
-stdin-:<main>:1:1: Fatal: ERROR: invalid input syntax for type time with time zone: "15:36:39 MSK m2"
-- this should fail (dynamic timezone abbreviation without a date)
^
<sql-statement>
SELECT f1 AS "Time TZ" FROM TIMETZ_TBL;
</sql-statement>
<sql-statement>
SELECT f1 AS "Three" FROM TIMETZ_TBL WHERE f1 < '05:06:07-07';
</sql-statement>
<sql-statement>
SELECT f1 AS "Seven" FROM TIMETZ_TBL WHERE f1 > '05:06:07-07';
</sql-statement>
<sql-statement>
SELECT f1 AS "None" FROM TIMETZ_TBL WHERE f1 < '00:00-07';
</sql-statement>
<sql-statement>
SELECT f1 AS "Ten" FROM TIMETZ_TBL WHERE f1 >= '00:00-07';
</sql-statement>
<sql-statement>
-- Check edge cases
SELECT '23:59:59.999999 PDT'::timetz;
</sql-statement>
-stdin-:<main>: Fatal: Execution
-stdin-:<main>:1:1: Fatal: Execution of node: Result
-- Check edge cases
^
-stdin-:<main>:1:1: Fatal: ERROR: invalid input syntax for type time with time zone: "23:59:59.999999 PDT"
-- Check edge cases
^
<sql-statement>
SELECT '23:59:59.9999999 PDT'::timetz; -- rounds up
</sql-statement>
-stdin-:<main>: Fatal: Execution
-stdin-:<main>:1:1: Fatal: Execution of node: Result
SELECT '23:59:59.9999999 PDT'::timetz; -- rounds up
^
-stdin-:<main>:1:1: Fatal: ERROR: invalid input syntax for type time with time zone: "23:59:59.9999999 PDT"
SELECT '23:59:59.9999999 PDT'::timetz; -- rounds up
^
<sql-statement>
SELECT '23:59:60 PDT'::timetz; -- rounds up
</sql-statement>
-stdin-:<main>: Fatal: Execution
-stdin-:<main>:1:1: Fatal: Execution of node: Result
SELECT '23:59:60 PDT'::timetz; -- rounds up
^
-stdin-:<main>:1:1: Fatal: ERROR: invalid input syntax for type time with time zone: "23:59:60 PDT"
SELECT '23:59:60 PDT'::timetz; -- rounds up
^
<sql-statement>
SELECT '24:00:00 PDT'::timetz; -- allowed
</sql-statement>
-stdin-:<main>: Fatal: Execution
-stdin-:<main>:1:1: Fatal: Execution of node: Result
SELECT '24:00:00 PDT'::timetz; -- allowed
^
-stdin-:<main>:1:1: Fatal: ERROR: invalid input syntax for type time with time zone: "24:00:00 PDT"
SELECT '24:00:00 PDT'::timetz; -- allowed
^
<sql-statement>
SELECT '24:00:00.01 PDT'::timetz; -- not allowed
</sql-statement>
-stdin-:<main>: Fatal: Execution
-stdin-:<main>:1:1: Fatal: Execution of node: Result
SELECT '24:00:00.01 PDT'::timetz; -- not allowed
^
-stdin-:<main>:1:1: Fatal: ERROR: invalid input syntax for type time with time zone: "24:00:00.01 PDT"
SELECT '24:00:00.01 PDT'::timetz; -- not allowed
^
<sql-statement>
SELECT '23:59:60.01 PDT'::timetz; -- not allowed
</sql-statement>
-stdin-:<main>: Fatal: Execution
-stdin-:<main>:1:1: Fatal: Execution of node: Result
SELECT '23:59:60.01 PDT'::timetz; -- not allowed
^
-stdin-:<main>:1:1: Fatal: ERROR: invalid input syntax for type time with time zone: "23:59:60.01 PDT"
SELECT '23:59:60.01 PDT'::timetz; -- not allowed
^
<sql-statement>
SELECT '24:01:00 PDT'::timetz; -- not allowed
</sql-statement>
-stdin-:<main>: Fatal: Execution
-stdin-:<main>:1:1: Fatal: Execution of node: Result
SELECT '24:01:00 PDT'::timetz; -- not allowed
^
-stdin-:<main>:1:1: Fatal: ERROR: invalid input syntax for type time with time zone: "24:01:00 PDT"
SELECT '24:01:00 PDT'::timetz; -- not allowed
^
<sql-statement>
SELECT '25:00:00 PDT'::timetz; -- not allowed
</sql-statement>
-stdin-:<main>: Fatal: Execution
-stdin-:<main>:1:1: Fatal: Execution of node: Result
SELECT '25:00:00 PDT'::timetz; -- not allowed
^
-stdin-:<main>:1:1: Fatal: ERROR: invalid input syntax for type time with time zone: "25:00:00 PDT"
SELECT '25:00:00 PDT'::timetz; -- not allowed
^
<sql-statement>
--
-- TIME simple math
--
-- We now make a distinction between time and intervals,
-- and adding two times together makes no sense at all.
-- Leave in one query to show that it is rejected,
-- and do the rest of the testing in horology.sql
-- where we do mixed-type arithmetic. - thomas 2000-12-02
SELECT f1 + time with time zone '00:01' AS "Illegal" FROM TIMETZ_TBL;
</sql-statement>
-stdin-:<main>: Error: Type annotation
-stdin-:<main>:1:1: Error: At function: RemovePrefixMembers, At function: PgSelect, At function: PgSetItem, At function: PgResultItem
--
^
-stdin-:<main>:9:11: Error: At function: PgOp
SELECT f1 + time with time zone '00:01' AS "Illegal" FROM TIMETZ_TBL;
^
-stdin-:<main>:9:11: Error: Unable to find an overload for operator + with given argument type(s): (timetz,timetz)
SELECT f1 + time with time zone '00:01' AS "Illegal" FROM TIMETZ_TBL;
^
<sql-statement>
--
-- test EXTRACT
--
SELECT EXTRACT(MICROSECOND FROM TIME WITH TIME ZONE '2020-05-26 13:30:25.575401-04');
</sql-statement>
<sql-statement>
SELECT EXTRACT(MILLISECOND FROM TIME WITH TIME ZONE '2020-05-26 13:30:25.575401-04');
</sql-statement>
<sql-statement>
SELECT EXTRACT(SECOND FROM TIME WITH TIME ZONE '2020-05-26 13:30:25.575401-04');
</sql-statement>
<sql-statement>
SELECT EXTRACT(MINUTE FROM TIME WITH TIME ZONE '2020-05-26 13:30:25.575401-04');
</sql-statement>
<sql-statement>
SELECT EXTRACT(HOUR FROM TIME WITH TIME ZONE '2020-05-26 13:30:25.575401-04');
</sql-statement>
<sql-statement>
SELECT EXTRACT(DAY FROM TIME WITH TIME ZONE '2020-05-26 13:30:25.575401-04'); -- error
</sql-statement>
-stdin-:<main>: Fatal: Execution
-stdin-:<main>:1:1: Fatal: Execution of node: Result
SELECT EXTRACT(DAY FROM TIME WITH TIME ZONE '2020-05-26 13:30:25.575401-04'); -- error
^
-stdin-:<main>:1:1: Fatal: ERROR: "time with time zone" units "day" not recognized
SELECT EXTRACT(DAY FROM TIME WITH TIME ZONE '2020-05-26 13:30:25.575401-04'); -- error
^
<sql-statement>
SELECT EXTRACT(FORTNIGHT FROM TIME WITH TIME ZONE '2020-05-26 13:30:25.575401-04'); -- error
</sql-statement>
-stdin-:<main>: Fatal: Execution
-stdin-:<main>:1:1: Fatal: Execution of node: Result
SELECT EXTRACT(FORTNIGHT FROM TIME WITH TIME ZONE '2020-05-26 13:30:25.575401-04'); -- error
^
-stdin-:<main>:1:1: Fatal: ERROR: "time with time zone" units "fortnight" not recognized
SELECT EXTRACT(FORTNIGHT FROM TIME WITH TIME ZONE '2020-05-26 13:30:25.575401-04'); -- error
^
<sql-statement>
SELECT EXTRACT(TIMEZONE FROM TIME WITH TIME ZONE '2020-05-26 13:30:25.575401-04:30');
</sql-statement>
<sql-statement>
SELECT EXTRACT(TIMEZONE_HOUR FROM TIME WITH TIME ZONE '2020-05-26 13:30:25.575401-04:30');
</sql-statement>
<sql-statement>
SELECT EXTRACT(TIMEZONE_MINUTE FROM TIME WITH TIME ZONE '2020-05-26 13:30:25.575401-04:30');
</sql-statement>
<sql-statement>
SELECT EXTRACT(EPOCH FROM TIME WITH TIME ZONE '2020-05-26 13:30:25.575401-04');
</sql-statement>
<sql-statement>
-- date_part implementation is mostly the same as extract, so only
-- test a few cases for additional coverage.
SELECT date_part('microsecond', TIME WITH TIME ZONE '2020-05-26 13:30:25.575401-04');
</sql-statement>
<sql-statement>
SELECT date_part('millisecond', TIME WITH TIME ZONE '2020-05-26 13:30:25.575401-04');
</sql-statement>
<sql-statement>
SELECT date_part('second', TIME WITH TIME ZONE '2020-05-26 13:30:25.575401-04');
</sql-statement>
<sql-statement>
SELECT date_part('epoch', TIME WITH TIME ZONE '2020-05-26 13:30:25.575401-04');
</sql-statement>
|