Skip to content

Commit

Permalink
Mute unsigned-long divide and mode (#83532)
Browse files Browse the repository at this point in the history
Tracked in #83516
  • Loading branch information
tlrx authored Feb 4, 2022
1 parent 4442c9e commit eb055bc
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,13 @@ plusLongMax
SELECT 9223372036854775808 + ROUND(RAND(DAY(CURRENT_TIMESTAMP())) * 10000) AS x;
minus
SELECT 18446744073709551615 - ROUND(RAND(DAY(CURRENT_TIMESTAMP())) * 10000) AS x;
divide
// AwaitsFix https://github.com/elastic/elasticsearch/issues/83516
divide-Ignore
SELECT 18446744073709551615 / ROUND(RAND(DAY(CURRENT_TIMESTAMP())) * 10000) AS x;
multiply
SELECT 18446744073709551615 * 1 AS x;
mod
// AwaitsFix https://github.com/elastic/elasticsearch/issues/83516
mod-Ignore
SELECT 18446744073709551615 % ROUND(RAND(DAY(CURRENT_TIMESTAMP())) * 10000) AS x;

abs
Expand Down

0 comments on commit eb055bc

Please sign in to comment.