Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
6265251a
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看板
提交
6265251a
编写于
3月 29, 2023
作者:
X
Xiaoyu Wang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: table level privilege syntax
上级
2fd10c2a
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
15 addition
and
19 deletion
+15
-19
include/common/tmsg.h
include/common/tmsg.h
+10
-9
source/common/src/tmsg.c
source/common/src/tmsg.c
+4
-9
source/libs/parser/src/parTranslater.c
source/libs/parser/src/parTranslater.c
+1
-1
未找到文件。
include/common/tmsg.h
浏览文件 @
6265251a
...
...
@@ -679,15 +679,16 @@ int32_t tSerializeSCreateUserReq(void* buf, int32_t bufLen, SCreateUserReq* pReq
int32_t
tDeserializeSCreateUserReq
(
void
*
buf
,
int32_t
bufLen
,
SCreateUserReq
*
pReq
);
typedef
struct
{
int8_t
alterType
;
int8_t
superUser
;
int8_t
sysInfo
;
int8_t
enable
;
char
user
[
TSDB_USER_LEN
];
char
pass
[
TSDB_USET_PASSWORD_LEN
];
char
objname
[
TSDB_DB_FNAME_LEN
];
// db or topic
char
tabName
[
TSDB_TABLE_NAME_LEN
];
char
*
tagCond
;
int8_t
alterType
;
int8_t
superUser
;
int8_t
sysInfo
;
int8_t
enable
;
char
user
[
TSDB_USER_LEN
];
char
pass
[
TSDB_USET_PASSWORD_LEN
];
char
objname
[
TSDB_DB_FNAME_LEN
];
// db or topic
char
tabName
[
TSDB_TABLE_NAME_LEN
];
char
*
tagCond
;
int32_t
tagCondLen
;
}
SAlterUserReq
;
int32_t
tSerializeSAlterUserReq
(
void
*
buf
,
int32_t
bufLen
,
SAlterUserReq
*
pReq
);
...
...
source/common/src/tmsg.c
浏览文件 @
6265251a
...
...
@@ -1373,11 +1373,7 @@ int32_t tSerializeSAlterUserReq(void *buf, int32_t bufLen, SAlterUserReq *pReq)
if
(
len
>
0
)
{
if
(
tEncodeCStr
(
&
encoder
,
pReq
->
tabName
)
<
0
)
return
-
1
;
}
len
=
(
NULL
==
pReq
->
tagCond
?
0
:
strlen
(
pReq
->
tagCond
));
if
(
tEncodeI32
(
&
encoder
,
len
)
<
0
)
return
-
1
;
if
(
len
>
0
)
{
if
(
tEncodeCStr
(
&
encoder
,
pReq
->
tagCond
)
<
0
)
return
-
1
;
}
if
(
tEncodeBinary
(
&
encoder
,
pReq
->
tagCond
,
pReq
->
tagCondLen
)
<
0
)
return
-
1
;
tEndEncode
(
&
encoder
);
int32_t
tlen
=
encoder
.
pos
;
...
...
@@ -1403,10 +1399,9 @@ int32_t tDeserializeSAlterUserReq(void *buf, int32_t bufLen, SAlterUserReq *pReq
if
(
len
>
0
)
{
if
(
tDecodeCStrTo
(
&
decoder
,
pReq
->
tabName
)
<
0
)
return
-
1
;
}
if
(
tDecodeI32
(
&
decoder
,
&
len
)
<
0
)
return
-
1
;
if
(
len
>
0
)
{
if
(
tDecodeCStrAlloc
(
&
decoder
,
&
pReq
->
tagCond
)
<
0
)
return
-
1
;
}
uint64_t
tagCondLen
=
0
;
if
(
tDecodeBinaryAlloc
(
&
decoder
,
(
void
**
)
&
pReq
->
tagCond
,
&
tagCondLen
)
<
0
)
return
-
1
;
pReq
->
tagCondLen
=
tagCondLen
;
}
tEndDecode
(
&
decoder
);
...
...
source/libs/parser/src/parTranslater.c
浏览文件 @
6265251a
...
...
@@ -6467,7 +6467,7 @@ static int32_t translateGrant(STranslateContext* pCxt, SGrantStmt* pStmt) {
sprintf
(
req
.
tabName
,
"%s"
,
pStmt
->
tabName
);
int32_t
code
=
TSDB_CODE_SUCCESS
;
if
(
NULL
!=
pStmt
->
pTagCond
)
{
code
=
nodesNodeToString
(
pStmt
->
pTagCond
,
false
,
&
req
.
tagCond
,
NULL
);
code
=
nodesNodeToString
(
pStmt
->
pTagCond
,
false
,
&
req
.
tagCond
,
&
req
.
tagCondLen
);
}
if
(
TSDB_CODE_SUCCESS
==
code
)
{
code
=
buildCmdMsg
(
pCxt
,
TDMT_MND_ALTER_USER
,
(
FSerializeFunc
)
tSerializeSAlterUserReq
,
&
req
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录