Skip to content
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

Open
wants to merge 5 commits into
base: main
Choose a base branch
from

Conversation

claytonjroberts
Copy link

@claytonjroberts claytonjroberts commented Feb 14, 2025

  • Make sure to open an issue as a bug/issue before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea
  • Ensure the tests and linter pass
  • Code coverage does not decrease (if any source code was changed)
  • Appropriate docs were updated (if necessary)

Fixes #1164 🦕

@claytonjroberts claytonjroberts requested review from a team as code owners February 14, 2025 20:47
@product-auto-label product-auto-label bot added the size: xs Pull request size is extra small. label Feb 14, 2025
@product-auto-label product-auto-label bot added the api: bigquery Issues related to the googleapis/python-bigquery-sqlalchemy API. label Feb 14, 2025
@leahecole leahecole added the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Feb 18, 2025
@yoshi-kokoro yoshi-kokoro removed kokoro:force-run Add this label to force Kokoro to re-run the tests. labels Feb 18, 2025
@leahecole leahecole assigned Linchin and unassigned leahecole Feb 18, 2025
@Linchin
Copy link
Contributor

Linchin commented Feb 18, 2025

As we discussed in #1164, I think we need to verify the precision and scale in two situations:

  1. the default NUMERIC/BIGNUMERIC. Example: sa.Column("id", NUMERIC())
  2. the parameterized NUMERIC/BIGNUMERIC. Example: sa.Column("id", NUMERIC(37, 0))

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!

@claytonjroberts
Copy link
Author

@Linchin

My code should cover both your cases. If precision or scale is None, it is assumed 0 in the calculation.

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!")

@claytonjroberts claytonjroberts changed the title Fix: NUMERIC vs BIGNUMERIC column type selection based on precision and scale fix: NUMERIC vs BIGNUMERIC column type selection based on precision and scale Mar 10, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
api: bigquery Issues related to the googleapis/python-bigquery-sqlalchemy API. size: xs Pull request size is extra small.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Column type selection for BIGNUMERIC vs NUMERIC is incorrect
4 participants