Skip to content

Commit eb055bc

Browse files
authored
Mute unsigned-long divide and mode (#83532)
Tracked in #83516
1 parent 4442c9e commit eb055bc

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

x-pack/plugin/sql/qa/server/src/main/resources/unsigned-long.sql-spec

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,13 @@ plusLongMax
1616
SELECT 9223372036854775808 + ROUND(RAND(DAY(CURRENT_TIMESTAMP())) * 10000) AS x;
1717
minus
1818
SELECT 18446744073709551615 - ROUND(RAND(DAY(CURRENT_TIMESTAMP())) * 10000) AS x;
19-
divide
19+
// AwaitsFix https://github.com/elastic/elasticsearch/issues/83516
20+
divide-Ignore
2021
SELECT 18446744073709551615 / ROUND(RAND(DAY(CURRENT_TIMESTAMP())) * 10000) AS x;
2122
multiply
2223
SELECT 18446744073709551615 * 1 AS x;
23-
mod
24+
// AwaitsFix https://github.com/elastic/elasticsearch/issues/83516
25+
mod-Ignore
2426
SELECT 18446744073709551615 % ROUND(RAND(DAY(CURRENT_TIMESTAMP())) * 10000) AS x;
2527

2628
abs

0 commit comments

Comments
 (0)