Expand description
Structs§
- SqlContext
- Context controlling version-dependent SQL generation.
Functions§
- quote_
ident - Double-quote a PostgreSQL identifier, escaping any embedded double quotes.
- render
- Render a single
Changeinto a SQL statement (including trailing;). Uses default context (PG 16+). - render_
all - Render all changes into a single SQL script (default context, PG 16+).
- render_
all_ with_ context - Render all changes into a single SQL script with version context.
- render_
statements - Render a single
Changeinto one or more SQL statements. Uses default context (PG 16+). - render_
statements_ with_ context - Render a single
Changeinto one or more SQL statements, using the givenSqlContextfor version-dependent syntax.