Skip to content

Commit

Permalink
Fix problem with CONNECT ROLE subclause - thanks Pavel Zotov.
Browse files Browse the repository at this point in the history
  • Loading branch information
asfernandes committed Dec 31, 2024
1 parent c3c8dd9 commit e7d5a00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/isql/isql.epp
Original file line number Diff line number Diff line change
Expand Up @@ -4969,7 +4969,7 @@ static processing_state frontend(const std::string& statement)
}
else if (clause == "ROLE")
{
sql_role_nm = node.args[i + 1].processedText.c_str();
sql_role_nm = node.args[i + 1].rawText.c_str();
i += 2;
}
else if (!clause.empty())
Expand Down

0 comments on commit e7d5a00

Please sign in to comment.