DanCardin / sqlalchemy-declarative-extensions

Library to declare additional kinds of objects not natively supported by SqlAlchemy/Alembic.
https://sqlalchemy-declarative-extensions.readthedocs.io/en/latest/
Apache License 2.0
29 stars 3 forks source link

feature request: stored procedures #63

Closed YaraslauZhylko closed 6 days ago

YaraslauZhylko commented 1 month ago

Add posibility to manage PostgreSQL procedures in addition to functions.

Something like this:

refresh_my_view_procedure = Procedure(
    "refresh_my_view",
    """
    BEGIN
        REFRESH MATERIALIZED VIEW my_view WITH DATA;
    END
    """,
    language="plpgsql",
)
Base.procedures.append(refresh_my_view_procedure)

That will result in:

op.execute(
    """
    CREATE PROCEDURE refresh_my_view()
    LANGUAGE plpgsql AS $$
    BEGIN
        REFRESH MATERIALIZED VIEW my_view WITH DATA;
    END
    $$;
    """
)

The difference is purely aesthetic:

CALL refresh_my_view();

vs.

SELECT refresh_my_view();
YaraslauZhylko commented 1 week ago

@DanCardin Is there any progress on this feature request?

DanCardin commented 1 week ago

woops! I had the initial PR done up, but it wasn't passing CI and I honestly just forgot about this. sorry! I might have some time this weekend to see if i can't get it into a working state.

DanCardin commented 1 week ago

In fact, I believe I fixed it just now. if you wanted to test out https://github.com/DanCardin/sqlalchemy-declarative-extensions/pull/65 before I go and merge it. otherwise i'll probably release later this weekend.

YaraslauZhylko commented 1 week ago

@DanCardin Left some comments in the PR itself: https://github.com/DanCardin/sqlalchemy-declarative-extensions/pull/65#issuecomment-2211710249

YaraslauZhylko commented 5 days ago

Seems to work in our project code. Thanks!