]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Implement get_table_options, get_multi_table_options in postgres dialect
authorThomas Stephenson <ovangle@gmail.com>
Mon, 12 May 2025 02:12:21 +0000 (12:12 +1000)
committerThomas Stephenson <ovangle@gmail.com>
Mon, 12 May 2025 03:16:57 +0000 (13:16 +1000)
commit82fa74e28f96030f9dc4e9247187cca8326c19de
tree5b97ebdcf58b75bc6f80fa69baf6072888998422
parent4f06dc5fb10540958b4985abc579c93dd28c109b
Implement get_table_options, get_multi_table_options in postgres dialect

Reflect dialect specific options passed to `Table` constructor

Table options reflected:
- postgresql_inherits
- postgresql_with
- postgresql_with_oids (in supported versions)
- postgresql_using
- postgresql_tablespace

Fixes #10909
lib/sqlalchemy/dialects/postgresql/base.py
test/dialect/postgresql/test_reflection.py