提交 1aef2746 编写于 作者: D dmchen

add sql

上级 97b8f485
......@@ -29,14 +29,14 @@ int32_t auditInit(const SAuditCfg *pCfg) {
return 0;
}
extern void auditRecordImp(SRpcMsg *pReq, char *oper, char *db, char *stable, char *detail);
extern void auditRecordImp(SRpcMsg *pReq, char *oper, char *db, char *stable, int32_t detailLen, char *detail);
void auditRecord(SRpcMsg *pReq, char *oper, char *db, char *stable, char *detail) {
auditRecordImp(pReq, oper, db, stable, detail);
void auditRecord(SRpcMsg *pReq, char *oper, char *db, char *stable, int32_t detailLen, char *detail) {
auditRecordImp(pReq, oper, db, stable, detailLen, detail);
}
#ifndef TD_ENTERPRISE
void auditRecordImp(SRpcMsg *pReq, char *oper, char *db, char *stable, char *detail) {
void auditRecordImp(SRpcMsg *pReq, char *oper, char *db, char *stable, int32_t detailLen, char *detail) {
}
#endif
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册