Changeset: 41e99119ce54 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/41e99119ce54 Modified Files: sql/test/BugTracker-2025/Tests/7637_str_to_decimal.test Branch: Mar2025 Log Message:
We're not going to fix these in Mar2025. diffs (25 lines): diff --git a/sql/test/BugTracker-2025/Tests/7637_str_to_decimal.test b/sql/test/BugTracker-2025/Tests/7637_str_to_decimal.test --- a/sql/test/BugTracker-2025/Tests/7637_str_to_decimal.test +++ b/sql/test/BugTracker-2025/Tests/7637_str_to_decimal.test @@ -1,4 +1,5 @@ -- decimal value with 38 digits before the decimal separator +skipif knownfail query TT select cast(99999999909999999990999999999012345678.0 as decimal(38,0)) as val1, cast(-99999999909999999990999999999012345678.0 as decimal(38,0)) as val2 ---- @@ -12,6 +13,7 @@ 99999999909999999990999999999012345678 -99999999909999999990999999999012345678 -- decimal value with 38 digits after the decimal separator +skipif knownfail query TT select cast(0.99999999909999999990999999999012345678 as decimal(38,38)) as val1, cast(-0.99999999909999999990999999999012345678 as decimal(38,38)) as val2 ---- @@ -32,6 +34,7 @@ 0.99999999909999999990999999999012345678 -- hugeint value with 38 digits before the decimal separator +skipif knownfail query TT select cast(99999999909999999990999999999012345678.0 as hugeint) as val1, cast(-99999999909999999990999999999012345678.0 as hugeint) as val2 ---- _______________________________________________ checkin-list mailing list -- [email protected] To unsubscribe send an email to [email protected]
