Describe the bug
CREATE TABLE should just create the table and not run a query selecting the contents of the table.
❯ create table test as select 1;
+----------+
| Int64(1) |
+----------+
| 1 |
+----------+
This issue was already fixed for CREATE VIEW in #3236
To Reproduce
☝️
Expected behavior
☝️
Additional context
None