typeorm
Version:
Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.
19 lines (18 loc) • 395 B
TypeScript
export interface CteCapabilities {
/**
* Are CTEs supported at all?
*/
enabled: boolean;
/**
* Are RETURNING clauses supported in CTEs?
*/
writable?: boolean;
/**
* Is RECURSIVE clause required for recursive CTEs?
*/
requiresRecursiveHint?: boolean;
/**
* Is MATERIALIZED clause supported?
*/
materializedHint?: boolean;
}