-
Notifications
You must be signed in to change notification settings - Fork 600
/
Copy pathinvalid_operation.slt
396 lines (289 loc) · 7.7 KB
/
invalid_operation.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
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
392
393
394
395
396
# 1. drop non-existent relation
statement error table not found
drop table not_exists;
statement error materialized view not found
drop materialized view not_exists;
statement error index not found
drop index not_exists;
statement error source not found
drop source not_exists;
statement error sink not found
drop sink not_exists;
statement error view not found
drop view not_exists;
# 2. drop relation in non-existent schema
statement error schema not found
drop table not_exists.not_exists;
statement error schema not found
drop materialized view not_exists.not_exists;
statement error schema not found
drop index not_exists.not_exists;
statement error schema not found
drop source not_exists.not_exists;
statement error schema not found
drop sink not_exists.not_exists;
statement error schema not found
drop view not_exists.not_exists;
# 3. drop relation in another database
statement error cross-database references are not implemented
drop table not_exists.not_exists.not_exists;
statement error cross-database references are not implemented
drop materialized view not_exists.not_exists.not_exists;
statement error cross-database references are not implemented
drop index not_exists.not_exists.not_exists;
statement error cross-database references are not implemented
drop source not_exists.not_exists.not_exists;
statement error cross-database references are not implemented
drop sink not_exists.not_exists.not_exists;
statement error cross-database references are not implemented
drop view not_exists.not_exists.not_exists;
# 4. Relation exists, but the DROP type is wrong.
# 4.1. table
statement ok
create table t (v int primary key);
statement error Use `DROP TABLE`
drop materialized view t;
statement error Use `DROP TABLE`
drop index t;
statement error Use `DROP TABLE`
drop source t;
# FIXME: improve the error message
statement error not found
drop sink t;
# FIXME: improve the error message
statement error not found
drop view t;
# 4.2 materialized view
statement ok
create materialized view mv as select * from t;
statement error Use `DROP MATERIALIZED VIEW`
drop table mv;
statement error Use `DROP MATERIALIZED VIEW`
drop index mv;
statement error Use `DROP MATERIALIZED VIEW`
drop source mv;
# FIXME: improve the error message
statement error not found
drop sink mv;
# FIXME: improve the error message
statement error not found
drop view mv;
# 4.3 index
statement ok
create index idx on t(v);
statement error Use `DROP INDEX`
drop table idx;
statement error Use `DROP INDEX`
drop materialized view idx;
statement error Use `DROP INDEX`
drop source idx;
# FIXME: improve the error message
statement error not found
drop sink idx;
# FIXME: improve the error message
statement error not found
drop view idx;
# 4.4 table with connector
statement ok
create table msrc (v int) with (
connector = 'datagen',
fields.v.kind = 'sequence',
fields.v.start = '1',
fields.v.end = '10',
datagen.rows.per.second='15',
datagen.split.num = '1'
) FORMAT PLAIN ENCODE JSON;
statement error Use `DROP TABLE`
drop materialized view msrc;
statement error Use `DROP TABLE`
drop index msrc;
statement error Use `DROP TABLE`
drop source msrc;
# FIXME: improve the error message
statement error not found
drop sink msrc;
# FIXME: improve the error message
statement error not found
drop view msrc;
# 4.5 source
statement ok
create source src (v int) with (
connector = 'datagen',
fields.v.kind = 'sequence',
fields.v.start = '1',
fields.v.end = '10',
datagen.rows.per.second='15',
datagen.split.num = '1'
) FORMAT PLAIN ENCODE JSON;
# FIXME: improve the error message
statement error not found
drop table src;
# FIXME: improve the error message
statement error not found
drop materialized view src;
# FIXME: improve the error message
statement error not found
drop index src;
# FIXME: improve the error message
statement error not found
drop sink src;
# FIXME: improve the error message
statement error not found
drop view src;
# 4.6 sink
statement ok
CREATE SINK sink FROM mv WITH (connector='blackhole');
# FIXME: improve the error message
statement error not found
drop table sink;
statement error sink properties not provided
CREATE SINK sink FROM mv;
# FIXME: improve the error message
statement error not found
drop materialized view sink;
# FIXME: improve the error message
statement error not found
drop index sink;
# FIXME: improve the error message
statement error not found
drop source sink;
# FIXME: improve the error message
statement error not found
drop view sink;
# 4.7 view
statement ok
create view v as select 1;
# FIXME: improve the error message
statement error not found
drop table v;
# FIXME: improve the error message
statement error not found
drop materialized view v;
# FIXME: improve the error message
statement error not found
drop index v;
# FIXME: improve the error message
statement error not found
drop source v;
# FIXME: improve the error message
statement error not found
drop sink v;
# 5. query
query I
SELECT * from t limit 0;
----
query I
SELECT * from mv limit 0;
----
query I
SELECT * from idx limit 0;
----
query I
SELECT * from msrc limit 0;
----
# FIXME: improve the error message
query error not found
SELECT * from sink limit 0;
----
query I
SELECT * from v limit 0;
----
# 6. DML
# 6.1 table
statement ok
insert into t values (1);
statement error QueryError: Bind error: update modifying the PK column is unsupported
update t set v = 2;
statement ok
delete from t;
# 6.2 materialized view
statement error cannot change materialized view
insert into mv values (1);
statement error cannot change materialized view
update mv set v = 2;
statement error cannot change materialized view
delete from mv;
# 6.3 index
statement error cannot change index
insert into idx values (1);
statement error cannot change index
update idx set v = 2;
statement error cannot change index
delete from idx;
# 6.4 table with connector
statement ok
insert into msrc values (1);
statement ok
update msrc set v = 2;
statement ok
delete from msrc;
# 6.5 source
# FIXME: improve the error message
statement error not found
insert into src values (1);
# FIXME: improve the error message
statement error not found
update src set v = 2;
# FIXME: improve the error message
statement error not found
delete from src;
# 6.6 sink
# FIXME: improve the error message
statement error not found
insert into sink values (1);
# FIXME: improve the error message
statement error not found
update sink set v = 2;
# FIXME: improve the error message
statement error not found
delete from sink;
# 6.7 view
# FIXME: improve the error message
statement error not found
insert into v values (1);
# FIXME: improve the error message
statement error not found
update v set v = 2;
# FIXME: improve the error message
statement error not found
delete from v;
# 7. create with duplicate name
statement error table.*exists
create table t(v int);
statement error materialized view.*exists
create table mv(v int);
statement error index.*exists
create table idx(v int);
statement error table.*exists
create table msrc(v int);
statement error source.*exists
create table src(v int);
statement error sink.*exists
create table sink(v int);
statement error view.*exists
create table v(v int);
# 8. create with unsupport format
statement error connector datagen does not support format Debezium
create table err_t1 (v int) with (
connector = 'datagen',
fields.v.kind = 'sequence',
fields.v.start = '1',
fields.v.end = '10',
datagen.rows.per.second='15',
datagen.split.num = '1'
) FORMAT DEBEZIUM ENCODE JSON;
# cleanup
statement ok
drop view v;
statement ok
drop sink sink;
statement ok
drop table msrc;
statement ok
drop source src;
statement ok
drop index idx;
statement ok
drop materialized view mv;
statement ok
drop table t;