Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
cd46ca0f
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,发现更多精彩内容 >>
提交
cd46ca0f
编写于
11月 24, 2022
作者:
A
Alex Duan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(shell): add help command and fix crete table filed complete include binary
上级
f58396ea
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
38 addition
and
14 deletion
+38
-14
tools/shell/inc/shellAuto.h
tools/shell/inc/shellAuto.h
+3
-0
tools/shell/src/shellAuto.c
tools/shell/src/shellAuto.c
+29
-14
tools/shell/src/shellEngine.c
tools/shell/src/shellEngine.c
+6
-0
未找到文件。
tools/shell/inc/shellAuto.h
浏览文件 @
cd46ca0f
...
...
@@ -39,4 +39,7 @@ void callbackAutoTab(char* sqlstr, TAOS* pSql, bool usedb);
// introduction
void
printfIntroduction
();
// show all commands help
void
showHelp
();
#endif
tools/shell/src/shellAuto.c
浏览文件 @
cd46ca0f
...
...
@@ -108,6 +108,7 @@ SWords shellCommands[] = {
{
"drop topic <topic_name> ;"
,
0
,
0
,
NULL
},
{
"drop stream <stream_name> ;"
,
0
,
0
,
NULL
},
{
"explain select"
,
0
,
0
,
NULL
},
// 44 append sub sql
{
"help;"
,
0
,
0
,
NULL
},
{
"grant all on <anyword> to <user_name> ;"
,
0
,
0
,
NULL
},
{
"grant read on <anyword> to <user_name> ;"
,
0
,
0
,
NULL
},
{
"grant write on <anyword> to <user_name> ;"
,
0
,
0
,
NULL
},
...
...
@@ -386,6 +387,8 @@ void showHelp() {
drop stream <stream_name> ;
\n
\
----- E -----
\n
\
explain select clause ...
\n
\
----- H -----
\n
\
help;
\n
\
----- I -----
\n
\
insert into <tb_name> values(...) ;
\n
\
insert into <tb_name> using <stb_name> tags(...) values(...) ;
\n
\
...
...
@@ -1478,24 +1481,36 @@ bool matchSelectQuery(TAOS* con, SShellCmd* cmd) {
// if is input create fields or tags area, return true
bool
isCreateFieldsArea
(
char
*
p
)
{
char
*
left
=
strrchr
(
p
,
'('
);
// put to while, support like create table st(ts timestamp, bin1 binary(16), bin2 + blank + TAB
char
*
p1
=
strdup
(
p
);
bool
ret
=
false
;
while
(
1
)
{
char
*
left
=
strrchr
(
p1
,
'('
);
if
(
left
==
NULL
)
{
// like 'create table st'
return
false
;
ret
=
false
;
break
;
}
char
*
right
=
strrchr
(
p
,
')'
);
char
*
right
=
strrchr
(
p1
,
')'
);
if
(
right
==
NULL
)
{
// like 'create table st( '
return
true
;
ret
=
true
;
break
;
}
if
(
left
>
right
)
{
// like 'create table st( ts timestamp, age int) tags(area '
return
true
;
ret
=
true
;
break
;
}
return
false
;
// set string end by small for next strrchr search
*
left
=
0
;
}
taosMemoryFree
(
p1
);
return
ret
;
}
bool
matchCreateTable
(
TAOS
*
con
,
SShellCmd
*
cmd
)
{
...
...
tools/shell/src/shellEngine.c
浏览文件 @
cd46ca0f
...
...
@@ -134,6 +134,12 @@ int32_t shellRunCommand(char *command, bool recordHistory) {
return
0
;
}
// add help or help;
if
(
strcmp
(
command
,
"help"
)
==
0
||
strcmp
(
command
,
"help;"
)
==
0
)
{
showHelp
();
return
0
;
}
if
(
recordHistory
)
shellRecordCommandToHistory
(
command
);
char
quote
=
0
,
*
cmd
=
command
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录