rawsql-ts
Version:
High-performance SQL parser and AST analyzer written in TypeScript. Provides fast parsing and advanced transformation capabilities.
18 lines • 560 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SQL_SPECIAL_VALUE_KEYWORD_SET = exports.SQL_SPECIAL_VALUE_KEYWORDS = void 0;
exports.SQL_SPECIAL_VALUE_KEYWORDS = [
'current_catalog',
'current_date',
'current_role',
'current_schema',
'current_time',
'current_timestamp',
'current_user',
'localtime',
'localtimestamp',
'session_user',
'user'
];
exports.SQL_SPECIAL_VALUE_KEYWORD_SET = new Set(exports.SQL_SPECIAL_VALUE_KEYWORDS);
//# sourceMappingURL=SqlSpecialValueKeywords.js.map