Skip to content

v1.0.2

Choose a tag to compare

@github-actions github-actions released this 26 Jun 01:00
0e0004a

Fixed

  • PostgreSQL: creating a forward rule failed with database error. The
    owner-scope ownership guard in replace_rule_targets decoded a SELECT 1
    literal as i64. PostgreSQL types integer literals as INT4, so sqlx
    rejected the INT8/INT4 mismatch. SQLite's dynamic typing masked the bug,
    so it only affected PostgreSQL deployments. Now decoded as i32.