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

Support for overriding types #82

Open
oliverlambson opened this issue Mar 11, 2025 · 0 comments · May be fixed by #83
Open

Support for overriding types #82

oliverlambson opened this issue Mar 11, 2025 · 0 comments · May be fixed by #83

Comments

@oliverlambson
Copy link

oliverlambson commented Mar 11, 2025

It would be really helpful to have the override functionality available in the go version of sqlc. In combination with the existing pydantic functionality, this would be very useful.

e.g., currently JSONB columns are returned with Any type. I would like to be able to override this behaviour on a per-column basis. This would be useful not only for "Any" types, but also for types where a different primitive is desired (e.g. a 3rd party UUID instead of the builtin, like the go example)

Given this schema

-- schema.sql
CREATE TABLE some_table (
    id SERIAL NOT NULL,
    payload JSONB NOT NULL
);

Current output of sqlc generate (uses Any for payload column)

# db/models.py
# Code generated by sqlc. DO NOT EDIT.
# versions:
#   sqlc v1.28.0
import pydantic
from typing import Any


class SomeTable(pydantic.BaseModel):
    id: int
    payload: Any

Desired output (uses custom type for payload column)

# db/models.py
# Code generated by sqlc. DO NOT EDIT.
# versions:
#   sqlc v1.28.0
import pydantic
import my_lib.models


class SomeTable(pydantic.BaseModel):
    id: int
    payload: my_lib.models.Payload

How it could work

I would imagine something in the config like:

version: "2"
plugins:
  - name: py
    wasm:
      url: https://downloads.sqlc.dev/plugin/sqlc-gen-python_1.3.0.wasm
      sha256: fbedae96b5ecae2380a70fb5b925fd4bff58a6cfb1f3140375d098fbab7b3a3c
sql:
  - schema: "./schemq.sql"
    queries: "./query"
    engine: postgresql
    codegen:
      - out: ./packages/core/src/core/db
        plugin: py
        options:
          package: core.db
          emit_pydantic_models: true
          overrides:  # similar to the go overrides
            - column: "some_table.payload"
              py_import: "my_lib.models"
              py_type: "Payload"
@oliverlambson oliverlambson linked a pull request Mar 11, 2025 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant