Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Metz
oceanbase
提交
188224d7
O
oceanbase
项目概览
Metz
/
oceanbase
与 Fork 源项目一致
Fork自
oceanbase / oceanbase
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
O
oceanbase
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
188224d7
编写于
10月 26, 2021
作者:
W
Wan
提交者:
GitHub
10月 26, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
modify the version info (#421)
上级
b86bf6ed
变更
5
显示空白变更内容
内联
并排
Showing
5 changed file
with
14 addition
and
4 deletion
+14
-4
src/CMakeLists.txt
src/CMakeLists.txt
+1
-0
src/share/system_variable/ob_system_variable.cpp
src/share/system_variable/ob_system_variable.cpp
+1
-1
src/sql/engine/expr/ob_expr_version.cpp
src/sql/engine/expr/ob_expr_version.cpp
+4
-3
test/mysql_test/test_suite/version/r/mysql/version.result
test/mysql_test/test_suite/version/r/mysql/version.result
+6
-0
test/mysql_test/test_suite/version/t/version.test
test/mysql_test/test_suite/version/t/version.test
+2
-0
未找到文件。
src/CMakeLists.txt
浏览文件 @
188224d7
...
...
@@ -8,6 +8,7 @@ target_compile_definitions(ob_base INTERFACE
PACKAGE_NAME=
"
${
PROJECT_NAME
}
"
PACKAGE_VERSION=
"
${
PROJECT_VERSION
}
"
PACKAGE_STRING=
"
${
PROJECT_NAME
}
${
PROJECT_VERSION
}
"
PACKAGE_VERSION_INFO=
"
${
PROJECT_VERSION
}
-
${
PROJECT_NAME
}
"
RELEASEID=
"
${
OB_RELEASEID
}
"
)
target_compile_options
(
ob_base INTERFACE
...
...
src/share/system_variable/ob_system_variable.cpp
浏览文件 @
188224d7
...
...
@@ -69,7 +69,7 @@ ObSpecialSysVarValues::ObSpecialSysVarValues()
ObSpecialSysVarValues
::
VERSION_MAX_LEN
,
pos
,
"%s"
,
PACKAGE_VERSION
)))
{
PACKAGE_VERSION
_INFO
)))
{
LOG_ERROR
(
"fail to print version to buff"
,
K
(
ret
));
}
...
...
src/sql/engine/expr/ob_expr_version.cpp
浏览文件 @
188224d7
...
...
@@ -27,7 +27,7 @@ int ObExprVersion::calc_result_type0(ObExprResType& type, ObExprTypeCtx& type_ct
{
UNUSED
(
type_ctx
);
type
.
set_varchar
();
type
.
set_length
(
static_cast
<
common
::
ObLength
>
(
strlen
(
PACKAGE_VERSION
)));
type
.
set_length
(
static_cast
<
common
::
ObLength
>
(
strlen
(
PACKAGE_VERSION
_INFO
)));
type
.
set_default_collation_type
();
type
.
set_collation_level
(
CS_LEVEL_SYSCONST
);
return
OB_SUCCESS
;
...
...
@@ -36,7 +36,8 @@ int ObExprVersion::calc_result_type0(ObExprResType& type, ObExprTypeCtx& type_ct
int
ObExprVersion
::
calc_result0
(
ObObj
&
result
,
ObExprCtx
&
expr_ctx
)
const
{
UNUSED
(
expr_ctx
);
result
.
set_varchar
(
common
::
ObString
(
PACKAGE_VERSION
));
result
.
set_varchar
(
common
::
ObString
(
PACKAGE_VERSION_INFO
));
result
.
set_collation
(
result_type_
);
return
OB_SUCCESS
;
}
...
...
@@ -45,7 +46,7 @@ int ObExprVersion::eval_version(const ObExpr& expr, ObEvalCtx& ctx, ObDatum& exp
{
UNUSED
(
expr
);
UNUSED
(
ctx
);
expr_datum
.
set_string
(
common
::
ObString
(
PACKAGE_VERSION
));
expr_datum
.
set_string
(
common
::
ObString
(
PACKAGE_VERSION
_INFO
));
return
OB_SUCCESS
;
}
...
...
test/mysql_test/test_suite/version/r/mysql/version.result
0 → 100644
浏览文件 @
188224d7
select version();
version()
3.1.1-OceanBase CE
show variables like 'version';
Variable_name Value
version 3.1.1-OceanBase CE
test/mysql_test/test_suite/version/t/version.test
0 → 100644
浏览文件 @
188224d7
select
version
();
show
variables
like
'version'
;
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录