Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
f7fda015
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
f7fda015
编写于
4月 26, 2022
作者:
S
Shengliang Guan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(tools): remove un necessary codes in taos shell
上级
86354a99
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
1 addition
and
13 deletion
+1
-13
tools/shell/inc/shellInt.h
tools/shell/inc/shellInt.h
+0
-1
tools/shell/src/shellEngine.c
tools/shell/src/shellEngine.c
+1
-12
未找到文件。
tools/shell/inc/shellInt.h
浏览文件 @
f7fda015
...
...
@@ -85,7 +85,6 @@ typedef struct {
TAOS
*
conn
;
TdThread
pid
;
tsem_t
cancelSem
;
int64_t
result
;
}
SShellObj
;
// shellArguments.c
...
...
tools/shell/src/shellEngine.c
浏览文件 @
f7fda015
...
...
@@ -213,13 +213,10 @@ void shellRunSingleCommandImp(char *command) {
return
;
}
int64_t
oresult
=
atomic_load_64
(
&
shell
.
result
);
if
(
shellRegexMatch
(
command
,
"^
\\
s*use
\\
s+[a-zA-Z0-9_]+
\\
s*;
\\
s*$"
,
REG_EXTENDED
|
REG_ICASE
))
{
fprintf
(
stdout
,
"Database changed.
\n\n
"
);
fflush
(
stdout
);
atomic_store_64
(
&
shell
.
result
,
0
);
taos_free_result
(
pSql
);
return
;
...
...
@@ -230,10 +227,7 @@ void shellRunSingleCommandImp(char *command) {
int32_t
error_no
=
0
;
int32_t
numOfRows
=
shellDumpResult
(
pSql
,
fname
,
&
error_no
,
printMode
);
if
(
numOfRows
<
0
)
{
atomic_store_64
(
&
shell
.
result
,
0
);
return
;
}
if
(
numOfRows
<
0
)
return
;
et
=
taosGetTimestampUs
();
if
(
error_no
==
0
)
{
...
...
@@ -250,8 +244,6 @@ void shellRunSingleCommandImp(char *command) {
}
printf
(
"
\n
"
);
atomic_store_64
(
&
shell
.
result
,
0
);
}
char
*
shellFormatTimestamp
(
char
*
buf
,
int64_t
val
,
int32_t
precision
)
{
...
...
@@ -398,7 +390,6 @@ int32_t shellDumpResultToFile(const char *fname, TAOS_RES *tres) {
row
=
taos_fetch_row
(
tres
);
}
while
(
row
!=
NULL
);
atomic_store_64
(
&
shell
.
result
,
0
);
taosCloseFile
(
&
pFile
);
return
numOfRows
;
...
...
@@ -766,7 +757,6 @@ void shellWriteHistory() {
void
shellPrintError
(
TAOS_RES
*
tres
,
int64_t
st
)
{
int64_t
et
=
taosGetTimestampUs
();
atomic_store_ptr
(
&
shell
.
result
,
0
);
fprintf
(
stderr
,
"
\n
DB error: %s (%.6fs)
\n
"
,
taos_errstr
(
tres
),
(
et
-
st
)
/
1E6
);
taos_free_result
(
tres
);
}
...
...
@@ -872,7 +862,6 @@ void shellGetGrantInfo() {
fprintf
(
stdout
,
"Server is Enterprise %s Edition, %s and will expire at %s.
\n
"
,
serverVersion
,
sinfo
,
expiretime
);
}
atomic_store_64
(
&
shell
.
result
,
0
);
taos_free_result
(
tres
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录