moqui / moqui-framework

Use Moqui Framework to build enterprise applications based on Java. It includes tools for databases (relational, graph, document), local and web services, web and other UI with screens and forms, security, file/resource access, scripts, templates, l10n, caching, logging, search, rules, workflow, multi-instance, and integration.
http://www.moqui.org
Other
279 stars 200 forks source link

Fix regression with partitioned tables in PostgreSQL #585

Closed chunlinyao closed 1 year ago

chunlinyao commented 1 year ago

PostgreSQL JDBC Driver introduced separating type for partitioned table from 40.2.12 pgjdbc/pgjdbc#1708

acetousk commented 1 year ago

This looks needed. I'm assuming that this is needed when using PostgreSQL partitioned tables because without this type it will not show in getTables() as demonstrated in the PR mentioned.

How will this change affect other databases like MySQL and Oracle (if at all)?

Are there any other changes that are needed to make this work?

chunlinyao commented 1 year ago

I haven't tested on MySQL and Oracle, but I think JDBC should ignore it if it doesn't support.

acetousk @.***> 于 2023年7月23日周日 上午10:30写道:

This looks needed. I'm assuming that this is needed when using PostgreSQL partitioned tables because without this type it will not show in getTables() as demonstrated in the PR mentioned.

How will this change affect other databases like MySQL and Oracle (if at all)?

Are there any other changes that are needed to make this work?

— Reply to this email directly, view it on GitHub https://github.com/moqui/moqui-framework/pull/585#issuecomment-1646727440, or unsubscribe https://github.com/notifications/unsubscribe-auth/AABEJN2GPGENEF5IESK5MWTXRSECVANCNFSM6AAAAAAYLIT3QE . You are receiving this because you authored the thread.Message ID: @.***>

jonesde commented 1 year ago

Hopefully won't cause any problems, I guess we'll find out if it does...