-
Notifications
You must be signed in to change notification settings - Fork 138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: NUMERIC vs BIGNUMERIC column type selection based on precision and scale #1165
base: main
Are you sure you want to change the base?
Conversation
As we discussed in #1164, I think we need to verify the precision and scale in two situations:
I think your code change only covers the second. Could you add logic to distinguish between the two and add back the verification for the first? Also, please add unit tests and system test for these specific cases. Thank you! |
ba7e1e9
to
03d2e7d
Compare
My code should cover both your cases. If What case am I missing? from dataclasses import dataclass
@dataclass
class FakeType:
precision: int | None
scale: int | None
def numeric_or_bignumeric(type_) -> str:
return (
"NUMERIC"
if (0 <= (type_.precision or 0) - (type_.scale or 0) <= 29)
else "BIGNUMERIC"
)
if __name__ == "__main__":
assert numeric_or_bignumeric(FakeType(29, 0)) == "NUMERIC"
assert numeric_or_bignumeric(FakeType(29, 1)) == "NUMERIC"
assert numeric_or_bignumeric(FakeType(None, None)) == "NUMERIC"
assert numeric_or_bignumeric(FakeType(30, 0)) == "BIGNUMERIC"
assert numeric_or_bignumeric(FakeType(30, 1)) == "NUMERIC"
assert numeric_or_bignumeric(FakeType(30, None)) == "BIGNUMERIC"
assert numeric_or_bignumeric(FakeType(None, 5)) == "BIGNUMERIC"
print("All tests passed!") |
Fixes #1164 🦕