Skip to content

Commit e7d5a00

Browse files
committed
Fix problem with CONNECT ROLE subclause - thanks Pavel Zotov.
1 parent c3c8dd9 commit e7d5a00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/isql/isql.epp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4969,7 +4969,7 @@ static processing_state frontend(const std::string& statement)
49694969
}
49704970
else if (clause == "ROLE")
49714971
{
4972-
sql_role_nm = node.args[i + 1].processedText.c_str();
4972+
sql_role_nm = node.args[i + 1].rawText.c_str();
49734973
i += 2;
49744974
}
49754975
else if (!clause.empty())

0 commit comments

Comments
 (0)