@pgsql/transform is a TypeScript library for transforming PostgreSQL ASTs between different PostgreSQL versions. It serves as a crucial component for building a single source of truth deparser that can handle SQL from multiple PostgreSQL versions while maintaining backward compatibility.
The transform package enables you to:
- Transform legacy ASTs: Convert ASTs from PostgreSQL versions 13-16 to version 17
- Build unified deparsers: Create a single deparser pipeline that works with multiple PostgreSQL versions
- Maintain backward compatibility: Support legacy codebases while leveraging the latest PostgreSQL features
This package only supports ASTs derived from SQL that is parseable by PostgreSQL 17. This means:
- ✅ Supported: SQL from PG13-16 that remains valid in PG17
- ❌ Not supported: Deprecated syntax from older versions that was removed
- ❌ Not supported: SQL that cannot be parsed by the PG17 parser
This design ensures all transformed ASTs can be reliably deparsed using the latest PostgreSQL grammar.
npm install @pgsql/transformimport { ASTTransformer } from '@pgsql/transform';
const transformer = new ASTTransformer();
// Transform any version to PG17
const pg17Ast = transformer.transformToLatest(pg13Ast, 13);
// Transform between specific versions
const pg15Ast = transformer.transform(pg13Ast, 13, 15);
// Convenience methods
const result = transformer.transform13To17(pg13Ast);For better performance when you know source and target versions:
import { PG13ToPG17Transformer } from '@pgsql/transform';
const transformer = new PG13ToPG17Transformer();
const pg17Ast = transformer.transform(pg13Ast);import { parse } from '@pgsql/parser';
import { deparse } from 'pgsql-deparser';
import { PG13ToPG17Transformer } from '@pgsql/transform';
// Parse with older version
const pg13Ast = await parse('SELECT * FROM users', { version: 13 });
// Transform to latest
const transformer = new PG13ToPG17Transformer();
const pg17Ast = transformer.transform(pg13Ast);
// Deparse with latest grammar
const sql = await deparse(pg17Ast);Incremental: PG13 → PG14 → PG15 → PG16 → PG17
- Step-by-step version upgrades
- Useful for debugging transformation issues
Direct: PG13 → PG17, PG14 → PG17, etc.
- Single-step transformations
- Optimized for performance
| From | To | Transformer |
|---|---|---|
| PG13 | PG14, PG15, PG16, PG17 |
V13ToV14Transformer, PG13ToPG17Transformer
|
| PG14 | PG15, PG16, PG17 |
V14ToV15Transformer, PG14ToPG17Transformer
|
| PG15 | PG16, PG17 |
V15ToV16Transformer, PG15ToPG17Transformer
|
| PG16 | PG17 |
V16ToV17Transformer, PG16ToPG17Transformer
|
The transform package fits into the broader pgsql-parser ecosystem:
- Parse legacy SQL with version-specific parsers
- Transform ASTs to the latest version
- Deparse using the unified, latest-version deparser
This enables a single source of truth for SQL generation while supporting legacy codebases.
🛠 Built by the Constructive team — creators of modular Postgres tooling for secure, composable backends. If you like our work, contribute on GitHub.
- pgpm: A Postgres Package Manager that brings modular development to PostgreSQL with reusable packages, deterministic migrations, recursive dependency resolution, and tag-aware versioning.
- pgsql-test: Instant, isolated PostgreSQL databases for each test with automatic transaction rollbacks, context switching, and clean seeding for fast, reliable database testing.
- pgsql-seed: PostgreSQL seeding utilities for CSV, JSON, SQL data loading, and pgpm deployment.
- pgsql-parser: The real PostgreSQL parser for Node.js, providing symmetric parsing and deparsing of SQL statements with actual PostgreSQL parser integration.
-
pgsql-deparser: A streamlined tool designed for converting PostgreSQL ASTs back into SQL queries, focusing solely on deparser functionality to complement
pgsql-parser. - @pgsql/parser: Multi-version PostgreSQL parser with dynamic version selection at runtime, supporting PostgreSQL 15, 16, and 17 in a single package.
- @pgsql/types: Offers TypeScript type definitions for PostgreSQL AST nodes, facilitating type-safe construction, analysis, and manipulation of ASTs.
- @pgsql/enums: Provides TypeScript enum definitions for PostgreSQL constants, enabling type-safe usage of PostgreSQL enums and constants in your applications.
- @pgsql/utils: A comprehensive utility library for PostgreSQL, offering type-safe AST node creation and enum value conversions, simplifying the construction and manipulation of PostgreSQL ASTs.
- @pgsql/traverse: PostgreSQL AST traversal utilities for pgsql-parser, providing a visitor pattern for traversing PostgreSQL Abstract Syntax Tree nodes, similar to Babel's traverse functionality but specifically designed for PostgreSQL AST structures.
- pg-proto-parser: A TypeScript tool that parses PostgreSQL Protocol Buffers definitions to generate TypeScript interfaces, utility functions, and JSON mappings for enums.
-
libpg-query: The real PostgreSQL parser exposed for Node.js, used primarily in
pgsql-parserfor parsing and deparsing SQL queries.
AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
No developer or entity involved in creating Software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the Software code or Software CLI, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.