Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
oceanbase
miniob
提交
ebe11b89
M
miniob
项目概览
oceanbase
/
miniob
1 年多 前同步成功
通知
74
Star
1521
Fork
537
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
分析
仓库
DevOps
项目成员
Pages
M
miniob
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Pages
分析
分析
仓库分析
DevOps
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
提交
未验证
提交
ebe11b89
编写于
8月 16, 2022
作者:
羽飞
提交者:
GitHub
8月 16, 2022
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #52 from ChrisYuan/pr-add-psql-exit-cmd
add a psql exit cmd for miniob
上级
9446aba8
35389a90
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
6 addition
and
1 deletion
+6
-1
src/obclient/client.cpp
src/obclient/client.cpp
+6
-1
未找到文件。
src/obclient/client.cpp
浏览文件 @
ebe11b89
...
...
@@ -62,9 +62,14 @@ char *my_readline(const char *prompt)
}
#endif // USE_READLINE
/* this function config a exit-cmd list, strncasecmp func truncate the command from terminal according to the number,
'strncasecmp("exit", cmd, 4)' means that obclient read command string from terminal, truncate it to 4 chars from
the beginning, then compare the result with 'exit', if they match, exit the obclient.
*/
bool
is_exit_command
(
const
char
*
cmd
)
{
return
0
==
strncasecmp
(
"exit"
,
cmd
,
4
)
||
0
==
strncasecmp
(
"bye"
,
cmd
,
3
);
0
==
strncasecmp
(
"bye"
,
cmd
,
3
)
||
0
==
strncasecmp
(
"
\\
q"
,
cmd
,
2
)
;
}
int
init_unix_sock
(
const
char
*
unix_sock_path
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录