alamb opened a new issue, #4531:
URL: https://github.com/apache/arrow-datafusion/issues/4531
**Describe the bug**
`drop view t1, t2, ...` and `drop table t1, t2, ...` silently ignores
arguments past the first
**To Reproduce**
```
❯ create view foo as select 1;
0 rows in set. Query took 0.020 seconds.
❯ create view bar as select 1;
0 rows in set. Query took 0.000 seconds.
❯ drop view foo, bar;
0 rows in set. Query took 0.000 seconds.
❯ select * from foo;
Plan("table 'datafusion.public.foo' not found")
❯ select * from bar;
+----------+
| Int64(1) |
+----------+
| 1 |
+----------+
```
**Expected behavior**
The `drop` statement should fail
**Additional context**
Found while working on
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]