Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
87e45c79
T
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1184
Star
22015
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
87e45c79
编写于
1月 16, 2021
作者:
H
Haojun Liao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[TD-225]update sql.c
上级
5342e859
变更
2
展开全部
隐藏空白更改
内联
并排
Showing
2 changed file
with
1530 addition
and
1428 deletion
+1530
-1428
src/inc/ttokendef.h
src/inc/ttokendef.h
+99
-99
src/query/src/sql.c
src/query/src/sql.c
+1431
-1329
未找到文件。
src/inc/ttokendef.h
浏览文件 @
87e45c79
...
...
@@ -17,105 +17,105 @@
#define TDENGINE_TTOKENDEF_H
#define TK_ID 1
#define TK_BOOL 2
#define TK_TINYINT 3
#define TK_SMALLINT 4
#define TK_INTEGER 5
#define TK_BIGINT 6
#define TK_FLOAT 7
#define TK_DOUBLE 8
#define TK_STRING 9
#define TK_TIMESTAMP 10
#define TK_BINARY 11
#define TK_NCHAR 12
#define TK_OR 13
#define TK_AND 14
#define TK_NOT 15
#define TK_EQ 16
#define TK_NE 17
#define TK_ISNULL 18
#define TK_NOTNULL 19
#define TK_IS 20
#define TK_LIKE 21
#define TK_GLOB 22
#define TK_BETWEEN 23
#define TK_IN 24
#define TK_GT 25
#define TK_GE 26
#define TK_LT 27
#define TK_LE 28
#define TK_BITAND 29
#define TK_BITOR 30
#define TK_LSHIFT 31
#define TK_RSHIFT 32
#define TK_PLUS 33
#define TK_MINUS 34
#define TK_DIVIDE 35
#define TK_TIMES 36
#define TK_STAR 37
#define TK_SLASH 38
#define TK_REM 39
#define TK_CONCAT 40
#define TK_UMINUS 41
#define TK_UPLUS 42
#define TK_BITNOT 43
#define TK_SHOW 44
#define TK_DATABASES 45
#define TK_MNODES 46
#define TK_DNODES 47
#define TK_ACCOUNTS 48
#define TK_USERS 49
#define TK_MODULES 50
#define TK_QUERIES 51
#define TK_CONNECTIONS 52
#define TK_STREAMS 53
#define TK_VARIABLES 54
#define TK_SCORES 55
#define TK_GRANTS 56
#define TK_VNODES 57
#define TK_IPTOKEN 58
#define TK_DOT 59
#define TK_CREATE 60
#define TK_TABLE 61
#define TK_DATABASE 62
#define TK_TABLES 63
#define TK_STABLES 64
#define TK_VGROUPS 65
#define TK_DROP 66
#define TK_DNODE 67
#define TK_USER 68
#define TK_ACCOUNT 69
#define TK_USE 70
#define TK_DESCRIBE 71
#define TK_ALTER 72
#define TK_PASS 73
#define TK_PRIVILEGE 74
#define TK_LOCAL 75
#define TK_IF 76
#define TK_EXISTS 77
#define TK_PPS 78
#define TK_TSERIES 79
#define TK_DBS 80
#define TK_STORAGE 81
#define TK_QTIME 82
#define TK_CONNS 83
#define TK_STATE 84
#define TK_KEEP 85
#define TK_CACHE 86
#define TK_REPLICA 87
#define TK_QUORUM 88
#define TK_DAYS 89
#define TK_MINROWS 90
#define TK_MAXROWS 91
#define TK_BLOCKS 92
#define TK_CTIME 93
#define TK_WAL 94
#define TK_FSYNC 95
#define TK_COMP 96
#define TK_PRECISION 97
#define TK_UPDATE 98
#define TK_CACHELAST 99
#define TK_ID
1
#define TK_BOOL
2
#define TK_TINYINT
3
#define TK_SMALLINT
4
#define TK_INTEGER
5
#define TK_BIGINT
6
#define TK_FLOAT
7
#define TK_DOUBLE
8
#define TK_STRING
9
#define TK_TIMESTAMP
10
#define TK_BINARY
11
#define TK_NCHAR
12
#define TK_OR
13
#define TK_AND
14
#define TK_NOT
15
#define TK_EQ
16
#define TK_NE
17
#define TK_ISNULL
18
#define TK_NOTNULL
19
#define TK_IS
20
#define TK_LIKE
21
#define TK_GLOB
22
#define TK_BETWEEN
23
#define TK_IN
24
#define TK_GT
25
#define TK_GE
26
#define TK_LT
27
#define TK_LE
28
#define TK_BITAND
29
#define TK_BITOR
30
#define TK_LSHIFT
31
#define TK_RSHIFT
32
#define TK_PLUS
33
#define TK_MINUS
34
#define TK_DIVIDE
35
#define TK_TIMES
36
#define TK_STAR
37
#define TK_SLASH
38
#define TK_REM
39
#define TK_CONCAT
40
#define TK_UMINUS
41
#define TK_UPLUS
42
#define TK_BITNOT
43
#define TK_SHOW
44
#define TK_DATABASES
45
#define TK_MNODES
46
#define TK_DNODES
47
#define TK_ACCOUNTS
48
#define TK_USERS
49
#define TK_MODULES
50
#define TK_QUERIES
51
#define TK_CONNECTIONS
52
#define TK_STREAMS
53
#define TK_VARIABLES
54
#define TK_SCORES
55
#define TK_GRANTS
56
#define TK_VNODES
57
#define TK_IPTOKEN
58
#define TK_DOT
59
#define TK_CREATE
60
#define TK_TABLE
61
#define TK_DATABASE
62
#define TK_TABLES
63
#define TK_STABLES
64
#define TK_VGROUPS
65
#define TK_DROP
66
#define TK_DNODE
67
#define TK_USER
68
#define TK_ACCOUNT
69
#define TK_USE
70
#define TK_DESCRIBE
71
#define TK_ALTER
72
#define TK_PASS
73
#define TK_PRIVILEGE
74
#define TK_LOCAL
75
#define TK_IF
76
#define TK_EXISTS
77
#define TK_PPS
78
#define TK_TSERIES
79
#define TK_DBS
80
#define TK_STORAGE
81
#define TK_QTIME
82
#define TK_CONNS
83
#define TK_STATE
84
#define TK_KEEP
85
#define TK_CACHE
86
#define TK_REPLICA
87
#define TK_QUORUM
88
#define TK_DAYS
89
#define TK_MINROWS
90
#define TK_MAXROWS
91
#define TK_BLOCKS
92
#define TK_CTIME
93
#define TK_WAL
94
#define TK_FSYNC
95
#define TK_COMP
96
#define TK_PRECISION
97
#define TK_UPDATE
98
#define TK_CACHELAST
99
#define TK_LP 100
#define TK_RP 101
#define TK_UNSIGNED 102
...
...
src/query/src/sql.c
浏览文件 @
87e45c79
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录