ttokendef.h 9.5 KB
Newer Older
H
hzcheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * 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 <http://www.gnu.org/licenses/>.
 */

S
Shengliang Guan 已提交
16 17
#ifndef _TD_COMMON_TOKEN_H_
#define _TD_COMMON_TOKEN_H_
H
hzcheng 已提交
18

19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
#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
37 38 39
#define TK_ACCOUNT                         19
#define TK_NK_ID                           20
#define TK_PASS                            21
X
Xiaoyu Wang 已提交
40 41 42 43 44 45 46 47 48 49 50 51
#define TK_NK_STRING                       22
#define TK_ALTER                           23
#define TK_PPS                             24
#define TK_TSERIES                         25
#define TK_STORAGE                         26
#define TK_STREAMS                         27
#define TK_QTIME                           28
#define TK_DBS                             29
#define TK_USERS                           30
#define TK_CONNS                           31
#define TK_STATE                           32
#define TK_USER                            33
52 53
#define TK_PRIVILEGE                       34
#define TK_DROP                            35
X
Xiaoyu Wang 已提交
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
#define TK_DNODE                           36
#define TK_PORT                            37
#define TK_NK_INTEGER                      38
#define TK_DNODES                          39
#define TK_NK_IPTOKEN                      40
#define TK_LOCAL                           41
#define TK_QNODE                           42
#define TK_ON                              43
#define TK_DATABASE                        44
#define TK_USE                             45
#define TK_IF                              46
#define TK_NOT                             47
#define TK_EXISTS                          48
#define TK_BLOCKS                          49
#define TK_CACHE                           50
#define TK_CACHELAST                       51
#define TK_COMP                            52
#define TK_DAYS                            53
#define TK_FSYNC                           54
#define TK_MAXROWS                         55
#define TK_MINROWS                         56
#define TK_KEEP                            57
#define TK_PRECISION                       58
#define TK_QUORUM                          59
#define TK_REPLICA                         60
#define TK_TTL                             61
#define TK_WAL                             62
#define TK_VGROUPS                         63
#define TK_SINGLE_STABLE                   64
#define TK_STREAM_MODE                     65
#define TK_RETENTIONS                      66
X
Xiaoyu Wang 已提交
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
#define TK_TABLE                           67
#define TK_NK_LP                           68
#define TK_NK_RP                           69
#define TK_STABLE                          70
#define TK_ADD                             71
#define TK_COLUMN                          72
#define TK_MODIFY                          73
#define TK_RENAME                          74
#define TK_TAG                             75
#define TK_SET                             76
#define TK_NK_EQ                           77
#define TK_USING                           78
#define TK_TAGS                            79
#define TK_NK_DOT                          80
#define TK_NK_COMMA                        81
#define TK_COMMENT                         82
#define TK_BOOL                            83
#define TK_TINYINT                         84
#define TK_SMALLINT                        85
#define TK_INT                             86
#define TK_INTEGER                         87
#define TK_BIGINT                          88
#define TK_FLOAT                           89
#define TK_DOUBLE                          90
#define TK_BINARY                          91
#define TK_TIMESTAMP                       92
#define TK_NCHAR                           93
#define TK_UNSIGNED                        94
#define TK_JSON                            95
#define TK_VARCHAR                         96
#define TK_MEDIUMBLOB                      97
#define TK_BLOB                            98
#define TK_VARBINARY                       99
#define TK_DECIMAL                        100
#define TK_SMA                            101
#define TK_ROLLUP                         102
#define TK_FILE_FACTOR                    103
#define TK_NK_FLOAT                       104
#define TK_DELAY                          105
#define TK_SHOW                           106
#define TK_DATABASES                      107
#define TK_TABLES                         108
#define TK_STABLES                        109
#define TK_MNODES                         110
#define TK_MODULES                        111
#define TK_QNODES                         112
#define TK_FUNCTIONS                      113
#define TK_INDEXES                        114
#define TK_FROM                           115
#define TK_LIKE                           116
#define TK_INDEX                          117
#define TK_FULLTEXT                       118
#define TK_FUNCTION                       119
#define TK_INTERVAL                       120
#define TK_TOPIC                          121
#define TK_AS                             122
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
#define TK_EXPLAIN                        123
#define TK_ANALYZE                        124
#define TK_VERBOSE                        125
#define TK_NK_BOOL                        126
#define TK_RATIO                          127
#define TK_NULL                           128
#define TK_NK_VARIABLE                    129
#define TK_NK_UNDERLINE                   130
#define TK_ROWTS                          131
#define TK_TBNAME                         132
#define TK_QSTARTTS                       133
#define TK_QENDTS                         134
#define TK_WSTARTTS                       135
#define TK_WENDTS                         136
#define TK_WDURATION                      137
#define TK_BETWEEN                        138
#define TK_IS                             139
#define TK_NK_LT                          140
#define TK_NK_GT                          141
#define TK_NK_LE                          142
#define TK_NK_GE                          143
#define TK_NK_NE                          144
#define TK_MATCH                          145
#define TK_NMATCH                         146
#define TK_IN                             147
#define TK_JOIN                           148
#define TK_INNER                          149
#define TK_SELECT                         150
#define TK_DISTINCT                       151
#define TK_WHERE                          152
#define TK_PARTITION                      153
#define TK_BY                             154
#define TK_SESSION                        155
#define TK_STATE_WINDOW                   156
#define TK_SLIDING                        157
#define TK_FILL                           158
#define TK_VALUE                          159
#define TK_NONE                           160
#define TK_PREV                           161
#define TK_LINEAR                         162
#define TK_NEXT                           163
#define TK_GROUP                          164
#define TK_HAVING                         165
#define TK_ORDER                          166
#define TK_SLIMIT                         167
#define TK_SOFFSET                        168
#define TK_LIMIT                          169
#define TK_OFFSET                         170
#define TK_ASC                            171
#define TK_DESC                           172
#define TK_NULLS                          173
#define TK_FIRST                          174
#define TK_LAST                           175
D
dapan1121 已提交
194

195 196 197 198 199 200 201 202
#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
203

204 205 206 207 208 209 210
#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
211
#define TK_NK_SEMI                        508
212

213
#define TK_NK_NIL                         65535
214

S
Shengliang Guan 已提交
215
#endif /*_TD_COMMON_TOKEN_H_*/