rawsql-ts
Version:
High-performance SQL parser and AST analyzer written in TypeScript. Provides fast parsing and advanced transformation capabilities.
15 lines • 400 B
JavaScript
export const SQL_SPECIAL_VALUE_KEYWORDS = [
'current_catalog',
'current_date',
'current_role',
'current_schema',
'current_time',
'current_timestamp',
'current_user',
'localtime',
'localtimestamp',
'session_user',
'user'
];
export const SQL_SPECIAL_VALUE_KEYWORD_SET = new Set(SQL_SPECIAL_VALUE_KEYWORDS);
//# sourceMappingURL=SqlSpecialValueKeywords.js.map