mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
7 lines
153 B
SQL
7 lines
153 B
SQL
select *;
|
|
|
|
--error: should be failed for abc.*;
|
|
select abc.*; --{serverError 47}
|
|
select *, abc.*; --{serverError 47}
|
|
select abc.*, *; --{serverError 47}
|