OpenGauss is based on PostgreSQL 9.2 and does not support WITH ORDINALITY (PG 9.4+). When the native pg_get_tabledef() path fails, the fallback DDL builder calls list_indexes() which previously only had two SQL variants, both using WITH ORDINALITY — causing "syntax error at or near 'WITH'" on OpenGauss. Add POSTGRES_INDEXES_OPENGAUSS_SQL as a third fallback that uses generate_series and array_length instead, both available since PG 8.0. |
||
|---|---|---|
| .. | ||
| dbx-core | ||
| dbx-web | ||
| README.md | ||
README.md
Crates
Rust crates for DBX live here.
Directories
dbx-core/- shared database core, drivers, schema/query logic, import/export, transfer, and plugin support.dbx-web/- the Docker/web backend service binary published asdbx-web.
The workspace root is defined in the repository-level Cargo.toml.