mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
16 lines
267 B
Plaintext
16 lines
267 B
Plaintext
|
-- { echo }
|
||
|
explain syntax select negate(1), negate(-1), - -1, -(-1), (-1) in (-1);
|
||
|
SELECT
|
||
|
-1,
|
||
|
1,
|
||
|
1,
|
||
|
1,
|
||
|
-1 IN (-1)
|
||
|
explain syntax select negate(1.), negate(-1.), - -1., -(-1.), (-1.) in (-1.);
|
||
|
SELECT
|
||
|
-1.,
|
||
|
1,
|
||
|
1,
|
||
|
1,
|
||
|
-1. IN (-1.)
|