mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-08 08:35:20 +00:00
7 lines
153 B
MySQL
7 lines
153 B
MySQL
|
select *;
|
||
|
|
||
|
--error: should be failed for abc.*;
|
||
|
select abc.*; --{serverError 47}
|
||
|
select *, abc.*; --{serverError 47}
|
||
|
select abc.*, *; --{serverError 47}
|