test: hive complete data types' check and unit tests (#160)
* feat: add Authorization SQL and update syntax file * test: hive complete data types' check and unit tests * feat: hive add syntax complete automaticlly * feat: update hive's syntax complete feat:update hive's syntax complete --------- Co-authored-by: zhaoge <>
This commit is contained in:
@ -22,7 +22,15 @@ export enum SyntaxContextType {
|
||||
/** table name path, such as catalog.db.tb */
|
||||
TABLE = 'table',
|
||||
/** table name path will be created */
|
||||
TABLE_CREATE = 'tableCreate'
|
||||
TABLE_CREATE = 'tableCreate',
|
||||
/** view name */
|
||||
VIEW = 'view',
|
||||
/** function name */
|
||||
FUNCTION = 'function',
|
||||
/** principal name */
|
||||
PRINCIPAL = 'principal',
|
||||
/** hint arg name */
|
||||
HTNTARG = 'hintArg',
|
||||
}
|
||||
|
||||
export interface WordRange {
|
||||
|
Reference in New Issue
Block a user