Skip to content

Commit 655c7eb

Browse files
committed
Fix case problem in username - thanks Pavel Zotov.
1 parent 7e293a3 commit 655c7eb

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
@@ -4959,7 +4959,7 @@ static processing_state frontend(const std::string& statement)
49594959
}
49604960
else if (clause == "USER")
49614961
{
4962-
usr = node.args[i + 1].processedText.c_str();
4962+
usr = node.args[i + 1].rawText.c_str();
49634963
i += 2;
49644964
}
49654965
else if (clause == "PASSWORD")

0 commit comments

Comments
 (0)