ttokendef.h 6.0 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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 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 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
#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_DATABASE                        19
#define TK_IF                              20
#define TK_NOT                             21
#define TK_EXISTS                          22
#define TK_BLOCKS                          23
#define TK_NK_INTEGER                      24
#define TK_CACHE                           25
#define TK_CACHELAST                       26
#define TK_COMP                            27
#define TK_DAYS                            28
#define TK_FSYNC                           29
#define TK_MAXROWS                         30
#define TK_MINROWS                         31
#define TK_KEEP                            32
#define TK_PRECISION                       33
#define TK_NK_STRING                       34
#define TK_QUORUM                          35
#define TK_REPLICA                         36
#define TK_TTL                             37
#define TK_WAL                             38
#define TK_VGROUPS                         39
#define TK_SINGLESTABLE                    40
#define TK_STREAMMODE                      41
#define TK_NK_FLOAT                        42
#define TK_NK_BOOL                         43
#define TK_TIMESTAMP                       44
#define TK_NK_VARIABLE                     45
#define TK_NK_COMMA                        46
#define TK_NK_ID                           47
#define TK_NK_LP                           48
#define TK_NK_RP                           49
#define TK_NK_DOT                          50
#define TK_BETWEEN                         51
#define TK_IS                              52
#define TK_NULL                            53
#define TK_NK_LT                           54
#define TK_NK_GT                           55
#define TK_NK_LE                           56
#define TK_NK_GE                           57
#define TK_NK_NE                           58
#define TK_NK_EQ                           59
#define TK_LIKE                            60
#define TK_MATCH                           61
#define TK_NMATCH                          62
#define TK_IN                              63
#define TK_FROM                            64
#define TK_AS                              65
#define TK_JOIN                            66
#define TK_ON                              67
#define TK_INNER                           68
#define TK_SELECT                          69
#define TK_DISTINCT                        70
#define TK_WHERE                           71
#define TK_PARTITION                       72
#define TK_BY                              73
#define TK_SESSION                         74
#define TK_STATE_WINDOW                    75
#define TK_INTERVAL                        76
#define TK_SLIDING                         77
#define TK_FILL                            78
#define TK_VALUE                           79
#define TK_NONE                            80
#define TK_PREV                            81
#define TK_LINEAR                          82
#define TK_NEXT                            83
#define TK_GROUP                           84
#define TK_HAVING                          85
#define TK_ORDER                           86
#define TK_SLIMIT                          87
#define TK_SOFFSET                         88
#define TK_LIMIT                           89
#define TK_OFFSET                          90
#define TK_ASC                             91
#define TK_DESC                            92
#define TK_NULLS                           93
#define TK_FIRST                           94
#define TK_LAST                            95
D
dapan1121 已提交
114

115 116 117 118 119 120 121 122
#define TK_SPACE                          300
#define TK_COMMENT                        301
#define TK_ILLEGAL                        302
#define TK_HEX                            303   // hex number  0x123
#define TK_OCT                            304   // oct number
#define TK_BIN                            305   // bin format data 0b111
#define TK_FILE                           306
#define TK_QUESTION                       307   // denoting the placeholder of "?",when invoking statement bind query
123

124 125 126 127 128 129 130 131 132 133 134 135
#define TK_NK_COLON                       500
#define TK_NK_BITNOT                      501
#define TK_INSERT                         502
#define TK_INTO                           503
#define TK_NOW                            504
#define TK_TAGS                           505
#define TK_USING                          506
#define TK_VALUES                         507
#define TK_IMPORT                         507
#define TK_SEMI                           508
#define TK_IPTOKEN                        509

136 137
#define TK_NIL                            65535

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