aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/postgresql/cases/dbsize.err
blob: ae31573877a4631495f2caca44788c0af4084bad (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
<sql-statement>
SELECT size, pg_size_pretty(size), pg_size_pretty(-1 * size) FROM
    (VALUES (10::bigint), (1000::bigint), (1000000::bigint),
            (1000000000::bigint), (1000000000000::bigint),
            (1000000000000000::bigint)) x(size);
</sql-statement>
-stdin-:<main>: Error: Type annotation

    -stdin-:<main>:1:1: Error: At function: RemovePrefixMembers, At function: PgSelect, At function: PgSetItem
    	SELECT size, pg_size_pretty(size), pg_size_pretty(-1 * size) FROM
	^
        -stdin-:<main>:1:1: Error: Duplicated member: pg_size_pretty
        	SELECT size, pg_size_pretty(size), pg_size_pretty(-1 * size) FROM
	^
<sql-statement>
SELECT size, pg_size_pretty(size), pg_size_pretty(-1 * size) FROM
    (VALUES (10::numeric), (1000::numeric), (1000000::numeric),
            (1000000000::numeric), (1000000000000::numeric),
            (1000000000000000::numeric),
            (10.5::numeric), (1000.5::numeric), (1000000.5::numeric),
            (1000000000.5::numeric), (1000000000000.5::numeric),
            (1000000000000000.5::numeric)) x(size);
</sql-statement>
-stdin-:<main>: Error: Type annotation

    -stdin-:<main>:1:1: Error: At function: RemovePrefixMembers, At function: PgSelect, At function: PgSetItem
    	SELECT size, pg_size_pretty(size), pg_size_pretty(-1 * size) FROM
	^
        -stdin-:<main>:1:1: Error: Duplicated member: pg_size_pretty
        	SELECT size, pg_size_pretty(size), pg_size_pretty(-1 * size) FROM
	^
<sql-statement>
-- test where units change up
SELECT size, pg_size_pretty(size), pg_size_pretty(-1 * size) FROM
    (VALUES (10239::bigint), (10240::bigint),
            (10485247::bigint), (10485248::bigint),
            (10736893951::bigint), (10736893952::bigint),
            (10994579406847::bigint), (10994579406848::bigint),
            (11258449312612351::bigint), (11258449312612352::bigint)) x(size);
</sql-statement>
-stdin-:<main>: Error: Type annotation

    -stdin-:<main>:1:1: Error: At function: RemovePrefixMembers, At function: PgSelect, At function: PgSetItem
    	-- test where units change up
	^
        -stdin-:<main>:1:1: Error: Duplicated member: pg_size_pretty
        	-- test where units change up
	^
<sql-statement>
SELECT size, pg_size_pretty(size), pg_size_pretty(-1 * size) FROM
    (VALUES (10239::numeric), (10240::numeric),
            (10485247::numeric), (10485248::numeric),
            (10736893951::numeric), (10736893952::numeric),
            (10994579406847::numeric), (10994579406848::numeric),
            (11258449312612351::numeric), (11258449312612352::numeric)) x(size);
</sql-statement>
-stdin-:<main>: Error: Type annotation

    -stdin-:<main>:1:1: Error: At function: RemovePrefixMembers, At function: PgSelect, At function: PgSetItem
    	SELECT size, pg_size_pretty(size), pg_size_pretty(-1 * size) FROM
	^
        -stdin-:<main>:1:1: Error: Duplicated member: pg_size_pretty
        	SELECT size, pg_size_pretty(size), pg_size_pretty(-1 * size) FROM
	^
<sql-statement>
-- pg_size_bytes() tests
SELECT size, pg_size_bytes(size) FROM
    (VALUES ('1'), ('123bytes'), ('1kB'), ('1MB'), (' 1 GB'), ('1.5 GB '),
            ('1TB'), ('3000 TB'), ('1e6 MB')) x(size);
</sql-statement>
<sql-statement>
-- case-insensitive units are supported
SELECT size, pg_size_bytes(size) FROM
    (VALUES ('1'), ('123bYteS'), ('1kb'), ('1mb'), (' 1 Gb'), ('1.5 gB '),
            ('1tb'), ('3000 tb'), ('1e6 mb')) x(size);
</sql-statement>
<sql-statement>
-- negative numbers are supported
SELECT size, pg_size_bytes(size) FROM
    (VALUES ('-1'), ('-123bytes'), ('-1kb'), ('-1mb'), (' -1 Gb'), ('-1.5 gB '),
            ('-1tb'), ('-3000 TB'), ('-10e-1 MB')) x(size);
</sql-statement>
<sql-statement>
-- different cases with allowed points
SELECT size, pg_size_bytes(size) FROM
     (VALUES ('-1.'), ('-1.kb'), ('-1. kb'), ('-0. gb'),
             ('-.1'), ('-.1kb'), ('-.1 kb'), ('-.0 gb')) x(size);
</sql-statement>
<sql-statement>
-- invalid inputs
SELECT pg_size_bytes('1 AB');
</sql-statement>
-stdin-:<main>: Fatal: Execution

    -stdin-:<main>:1:1: Fatal: Execution of node: Result
    	-- invalid inputs
	^
        -stdin-:<main>:1:1: Fatal: ERROR:  invalid size: "1 AB"
DETAIL:  Invalid size unit: "AB".
HINT:  Valid units are "bytes", "kB", "MB", "GB", and "TB".

        	-- invalid inputs
	^
<sql-statement>
SELECT pg_size_bytes('1 AB A');
</sql-statement>
-stdin-:<main>: Fatal: Execution

    -stdin-:<main>:1:1: Fatal: Execution of node: Result
    	SELECT pg_size_bytes('1 AB A');
	^
        -stdin-:<main>:1:1: Fatal: ERROR:  invalid size: "1 AB A"
DETAIL:  Invalid size unit: "AB A".
HINT:  Valid units are "bytes", "kB", "MB", "GB", and "TB".

        	SELECT pg_size_bytes('1 AB A');
	^
<sql-statement>
SELECT pg_size_bytes('1 AB A    ');
</sql-statement>
-stdin-:<main>: Fatal: Execution

    -stdin-:<main>:1:1: Fatal: Execution of node: Result
    	SELECT pg_size_bytes('1 AB A    ');
	^
        -stdin-:<main>:1:1: Fatal: ERROR:  invalid size: "1 AB A    "
DETAIL:  Invalid size unit: "AB A".
HINT:  Valid units are "bytes", "kB", "MB", "GB", and "TB".

        	SELECT pg_size_bytes('1 AB A    ');
	^
<sql-statement>
SELECT pg_size_bytes('9223372036854775807.9');
</sql-statement>
-stdin-:<main>: Fatal: Execution

    -stdin-:<main>:1:1: Fatal: Execution of node: Result
    	SELECT pg_size_bytes('9223372036854775807.9');
	^
        -stdin-:<main>:1:1: Fatal: ERROR:  bigint out of range

        	SELECT pg_size_bytes('9223372036854775807.9');
	^
<sql-statement>
SELECT pg_size_bytes('1e100');
</sql-statement>
-stdin-:<main>: Fatal: Execution

    -stdin-:<main>:1:1: Fatal: Execution of node: Result
    	SELECT pg_size_bytes('1e100');
	^
        -stdin-:<main>:1:1: Fatal: ERROR:  bigint out of range

        	SELECT pg_size_bytes('1e100');
	^
<sql-statement>
SELECT pg_size_bytes('1e1000000000000000000');
</sql-statement>
-stdin-:<main>: Fatal: Execution

    -stdin-:<main>:1:1: Fatal: Execution of node: Result
    	SELECT pg_size_bytes('1e1000000000000000000');
	^
        -stdin-:<main>:1:1: Fatal: ERROR:  value overflows numeric format

        	SELECT pg_size_bytes('1e1000000000000000000');
	^
<sql-statement>
SELECT pg_size_bytes('1 byte');  -- the singular "byte" is not supported
</sql-statement>
-stdin-:<main>: Fatal: Execution

    -stdin-:<main>:1:1: Fatal: Execution of node: Result
    	SELECT pg_size_bytes('1 byte');  -- the singular "byte" is not supported
	^
        -stdin-:<main>:1:1: Fatal: ERROR:  invalid size: "1 byte"
DETAIL:  Invalid size unit: "byte".
HINT:  Valid units are "bytes", "kB", "MB", "GB", and "TB".

        	SELECT pg_size_bytes('1 byte');  -- the singular "byte" is not supported
	^
<sql-statement>
SELECT pg_size_bytes('');
</sql-statement>
-stdin-:<main>: Fatal: Execution

    -stdin-:<main>:1:1: Fatal: Execution of node: Result
    	SELECT pg_size_bytes('');
	^
        -stdin-:<main>:1:1: Fatal: ERROR:  invalid size: ""

        	SELECT pg_size_bytes('');
	^
<sql-statement>
SELECT pg_size_bytes('kb');
</sql-statement>
-stdin-:<main>: Fatal: Execution

    -stdin-:<main>:1:1: Fatal: Execution of node: Result
    	SELECT pg_size_bytes('kb');
	^
        -stdin-:<main>:1:1: Fatal: ERROR:  invalid size: "kb"

        	SELECT pg_size_bytes('kb');
	^
<sql-statement>
SELECT pg_size_bytes('..');
</sql-statement>
-stdin-:<main>: Fatal: Execution

    -stdin-:<main>:1:1: Fatal: Execution of node: Result
    	SELECT pg_size_bytes('..');
	^
        -stdin-:<main>:1:1: Fatal: ERROR:  invalid size: ".."

        	SELECT pg_size_bytes('..');
	^
<sql-statement>
SELECT pg_size_bytes('-.');
</sql-statement>
-stdin-:<main>: Fatal: Execution

    -stdin-:<main>:1:1: Fatal: Execution of node: Result
    	SELECT pg_size_bytes('-.');
	^
        -stdin-:<main>:1:1: Fatal: ERROR:  invalid size: "-."

        	SELECT pg_size_bytes('-.');
	^
<sql-statement>
SELECT pg_size_bytes('-.kb');
</sql-statement>
-stdin-:<main>: Fatal: Execution

    -stdin-:<main>:1:1: Fatal: Execution of node: Result
    	SELECT pg_size_bytes('-.kb');
	^
        -stdin-:<main>:1:1: Fatal: ERROR:  invalid size: "-.kb"

        	SELECT pg_size_bytes('-.kb');
	^
<sql-statement>
SELECT pg_size_bytes('-. kb');
</sql-statement>
-stdin-:<main>: Fatal: Execution

    -stdin-:<main>:1:1: Fatal: Execution of node: Result
    	SELECT pg_size_bytes('-. kb');
	^
        -stdin-:<main>:1:1: Fatal: ERROR:  invalid size: "-. kb"

        	SELECT pg_size_bytes('-. kb');
	^
<sql-statement>
SELECT pg_size_bytes('.+912');
</sql-statement>
-stdin-:<main>: Fatal: Execution

    -stdin-:<main>:1:1: Fatal: Execution of node: Result
    	SELECT pg_size_bytes('.+912');
	^
        -stdin-:<main>:1:1: Fatal: ERROR:  invalid size: ".+912"

        	SELECT pg_size_bytes('.+912');
	^
<sql-statement>
SELECT pg_size_bytes('+912+ kB');
</sql-statement>
-stdin-:<main>: Fatal: Execution

    -stdin-:<main>:1:1: Fatal: Execution of node: Result
    	SELECT pg_size_bytes('+912+ kB');
	^
        -stdin-:<main>:1:1: Fatal: ERROR:  invalid size: "+912+ kB"
DETAIL:  Invalid size unit: "+ kB".
HINT:  Valid units are "bytes", "kB", "MB", "GB", and "TB".

        	SELECT pg_size_bytes('+912+ kB');
	^
<sql-statement>
SELECT pg_size_bytes('++123 kB');
</sql-statement>
-stdin-:<main>: Fatal: Execution

    -stdin-:<main>:1:1: Fatal: Execution of node: Result
    	SELECT pg_size_bytes('++123 kB');
	^
        -stdin-:<main>:1:1: Fatal: ERROR:  invalid size: "++123 kB"

        	SELECT pg_size_bytes('++123 kB');
	^