mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2026-03-13 09:24:25 +08:00
fix: include $$ in list of non-allowed delimiters
This commit is contained in:
@@ -5345,7 +5345,7 @@ begin
|
||||
Msg := _('Empty value.')
|
||||
else begin
|
||||
rx := TRegExpr.Create;
|
||||
rx.Expression := '(/\*|--|#|\''|\"|`)';
|
||||
rx.Expression := '(/\*|--|#|\''|\"|`|\$\$)';
|
||||
if rx.Exec(Value) then
|
||||
Msg := _('Start-of-comment tokens or string literal markers are not allowed.')
|
||||
end;
|
||||
|
||||
Reference in New Issue
Block a user