dbx/crates/dbx-core
t8y2 a1d0178a7e fix(postgres): add OpenGauss-compatible index query fallback without WITH ORDINALITY
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.
2026-06-06 11:29:16 +08:00
..
assets feat: add KWDB support 2026-06-05 16:55:38 +08:00
src fix(postgres): add OpenGauss-compatible index query fallback without WITH ORDINALITY 2026-06-06 11:29:16 +08:00
tests Merge pull request #782 from sunny0826/feat/kwdb 2026-06-05 18:16:17 +08:00
Cargo.toml fix(redis): need to enable tls-rustls-insecure to support --insecure (#794) 2026-06-06 00:15:52 +08:00