typeorm
Version:
Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, 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;
}