/* * Copyright (c) 2019 TAOS Data, Inc. * * This program is free software: you can use, redistribute, and/or modify * it under the terms of the GNU Affero General Public License, version 3 * or later ("AGPL"), as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ #ifndef _TD_COMMON_TOKEN_H_ #define _TD_COMMON_TOKEN_H_ #define TK_OR 1 #define TK_AND 2 #define TK_UNION 3 #define TK_ALL 4 #define TK_MINUS 5 #define TK_EXCEPT 6 #define TK_INTERSECT 7 #define TK_NK_BITAND 8 #define TK_NK_BITOR 9 #define TK_NK_LSHIFT 10 #define TK_NK_RSHIFT 11 #define TK_NK_PLUS 12 #define TK_NK_MINUS 13 #define TK_NK_STAR 14 #define TK_NK_SLASH 15 #define TK_NK_REM 16 #define TK_NK_CONCAT 17 #define TK_CREATE 18 #define TK_USER 19 #define TK_PASS 20 #define TK_NK_STRING 21 #define TK_ALTER 22 #define TK_PRIVILEGE 23 #define TK_DROP 24 #define TK_SHOW 25 #define TK_USERS 26 #define TK_DNODE 27 #define TK_PORT 28 #define TK_NK_INTEGER 29 #define TK_DNODES 30 #define TK_NK_ID 31 #define TK_NK_IPTOKEN 32 #define TK_QNODE 33 #define TK_ON 34 #define TK_QNODES 35 #define TK_DATABASE 36 #define TK_DATABASES 37 #define TK_USE 38 #define TK_IF 39 #define TK_NOT 40 #define TK_EXISTS 41 #define TK_BLOCKS 42 #define TK_CACHE 43 #define TK_CACHELAST 44 #define TK_COMP 45 #define TK_DAYS 46 #define TK_FSYNC 47 #define TK_MAXROWS 48 #define TK_MINROWS 49 #define TK_KEEP 50 #define TK_PRECISION 51 #define TK_QUORUM 52 #define TK_REPLICA 53 #define TK_TTL 54 #define TK_WAL 55 #define TK_VGROUPS 56 #define TK_SINGLE_STABLE 57 #define TK_STREAM_MODE 58 #define TK_TABLE 59 #define TK_NK_LP 60 #define TK_NK_RP 61 #define TK_STABLE 62 #define TK_TABLES 63 #define TK_STABLES 64 #define TK_USING 65 #define TK_TAGS 66 #define TK_NK_DOT 67 #define TK_NK_COMMA 68 #define TK_COMMENT 69 #define TK_BOOL 70 #define TK_TINYINT 71 #define TK_SMALLINT 72 #define TK_INT 73 #define TK_INTEGER 74 #define TK_BIGINT 75 #define TK_FLOAT 76 #define TK_DOUBLE 77 #define TK_BINARY 78 #define TK_TIMESTAMP 79 #define TK_NCHAR 80 #define TK_UNSIGNED 81 #define TK_JSON 82 #define TK_VARCHAR 83 #define TK_MEDIUMBLOB 84 #define TK_BLOB 85 #define TK_VARBINARY 86 #define TK_DECIMAL 87 #define TK_SMA 88 #define TK_INDEX 89 #define TK_FULLTEXT 90 #define TK_FUNCTION 91 #define TK_INTERVAL 92 #define TK_TOPIC 93 #define TK_AS 94 #define TK_MNODES 95 #define TK_NK_FLOAT 96 #define TK_NK_BOOL 97 #define TK_NK_VARIABLE 98 #define TK_BETWEEN 99 #define TK_IS 100 #define TK_NULL 101 #define TK_NK_LT 102 #define TK_NK_GT 103 #define TK_NK_LE 104 #define TK_NK_GE 105 #define TK_NK_NE 106 #define TK_NK_EQ 107 #define TK_LIKE 108 #define TK_MATCH 109 #define TK_NMATCH 110 #define TK_IN 111 #define TK_FROM 112 #define TK_JOIN 113 #define TK_INNER 114 #define TK_SELECT 115 #define TK_DISTINCT 116 #define TK_WHERE 117 #define TK_PARTITION 118 #define TK_BY 119 #define TK_SESSION 120 #define TK_STATE_WINDOW 121 #define TK_SLIDING 122 #define TK_FILL 123 #define TK_VALUE 124 #define TK_NONE 125 #define TK_PREV 126 #define TK_LINEAR 127 #define TK_NEXT 128 #define TK_GROUP 129 #define TK_HAVING 130 #define TK_ORDER 131 #define TK_SLIMIT 132 #define TK_SOFFSET 133 #define TK_LIMIT 134 #define TK_OFFSET 135 #define TK_ASC 136 #define TK_DESC 137 #define TK_NULLS 138 #define TK_FIRST 139 #define TK_LAST 140 #define TK_NK_SPACE 300 #define TK_NK_COMMENT 301 #define TK_NK_ILLEGAL 302 #define TK_NK_HEX 303 // hex number 0x123 #define TK_NK_OCT 304 // oct number #define TK_NK_BIN 305 // bin format data 0b111 #define TK_NK_FILE 306 #define TK_NK_QUESTION 307 // denoting the placeholder of "?",when invoking statement bind query #define TK_NK_COLON 500 #define TK_NK_BITNOT 501 #define TK_INSERT 502 #define TK_INTO 503 #define TK_NOW 504 #define TK_VALUES 507 #define TK_IMPORT 507 #define TK_NK_SEMI 508 #define TK_NK_NIL 65535 #endif /*_TD_COMMON_TOKEN_H_*/