Repairs a test not run in CI
This commit is contained in:
GregoryTravis 2024-09-11 11:34:07 -04:00 committed by GitHub
parent ea0f5a1962
commit f409cb8aac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -468,8 +468,8 @@ snowflake_specific_spec suite_builder default_connection db_name setup =
col . cast Value_Type.Decimal . round 1 . value_type . should_equal (Value_Type.Decimal 38 1)
col . cast Value_Type.Float . round use_bankers=True . value_type . should_equal Value_Type.Float
col . cast Value_Type.Integer . round use_bankers=True . value_type . should_equal (Value_Type.Decimal 38 12)
col . cast Value_Type.Decimal . round use_bankers=True . value_type . should_equal (Value_Type.Decimal 38 12)
col . cast Value_Type.Integer . round use_bankers=True . value_type . should_equal Value_Type.Float
col . cast Value_Type.Decimal . round use_bankers=True . value_type . should_equal Value_Type.Float
col . cast Value_Type.Float . ceil . value_type . should_equal Value_Type.Float
col . cast Value_Type.Integer . ceil . value_type . should_equal (Value_Type.Decimal 38 0)