sql-ddl-to-json-schema
Version:
Parse and convert SQL DDL statements to a JSON Schema.
17 lines (16 loc) • 644 B
TypeScript
/** =============================================================
* List of keywords.
* Includes function names.
*
* https://mariadb.com/kb/en/library/sql-language-structure/
* https://mariadb.com/kb/en/string-functions/
* https://mariadb.com/kb/en/date-time-functions/
* https://mariadb.com/kb/en/aggregate-functions/
* https://mariadb.com/kb/en/numeric-functions/
* https://mariadb.com/kb/en/control-flow-functions/
* https://mariadb.com/kb/en/library/function-and-operator-reference/
*
* Keywords are case insensitive and prepended with 'K_'.
*/
declare const keywords: import("../../..").TMap<RegExp>;
export default keywords;