mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
Break some tests
This commit is contained in:
parent
5c1aa52f40
commit
c1cbfad599
@ -1 +1 @@
|
||||
SELECT 1
|
||||
SELECT 2
|
||||
|
@ -1,3 +1,4 @@
|
||||
WITH 8.5 AS a, 2.5 AS b SELECT a % b, -a % b, a % -b, -a % -b;
|
||||
WITH 10.125 AS a, 2.5 AS b SELECT a % b, -a % b, a % -b, -a % -b;
|
||||
WITH 8.5 AS a, 2.5 AS b SELECT mod(a, b), MOD(-a, b), modulo(a, -b), moduloOrZero(-a, -b);
|
||||
SELECT 3;
|
||||
|
Loading…
Reference in New Issue
Block a user