Skip to content

Commit

Permalink
fix cpplint
Browse files Browse the repository at this point in the history
  • Loading branch information
ljcui committed Jul 24, 2024
1 parent 4df1e4d commit 5517e3e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/cypher/procedure/procedure.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1647,7 +1647,8 @@ void BuiltinProcedure::DbmsMetaRefreshCount(RTContext *ctx, const Record *record
ac_db.RefreshCount();
}

void BuiltinProcedure::DbmsSecurityIsDefaultUserPassword(RTContext *ctx, const cypher::Record *record,
void BuiltinProcedure::DbmsSecurityIsDefaultUserPassword(RTContext *ctx,
const cypher::Record *record,
const cypher::VEC_EXPR &args,
const cypher::VEC_STR &yield_items,
std::vector<Record> *records) {
Expand Down
3 changes: 2 additions & 1 deletion src/cypher/procedure/procedure.h
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,8 @@ static std::vector<Procedure> global_procedures = {
Procedure("dbms.meta.refreshCount", BuiltinProcedure::DbmsMetaRefreshCount,
Procedure::SIG_SPEC{}, Procedure::SIG_SPEC{{"", {0, lgraph_api::LGraphType::NUL}}},
false, true),
Procedure("dbms.security.isDefaultUserPassword", BuiltinProcedure::DbmsSecurityIsDefaultUserPassword,
Procedure("dbms.security.isDefaultUserPassword",
BuiltinProcedure::DbmsSecurityIsDefaultUserPassword,
Procedure::SIG_SPEC{},
Procedure::SIG_SPEC{
{"isDefaultUserPassword", {0, lgraph_api::LGraphType::BOOLEAN}}
Expand Down

0 comments on commit 5517e3e

Please sign in to comment.