We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39df339 commit 3028076Copy full SHA for 3028076
source/trigger_editor.pas
@@ -124,7 +124,7 @@ procedure TfrmTriggerEditor.Init(Obj: TDBObject);
124
rx := TRegExpr.Create;
125
rx.ModifierI := True;
126
QuoteCharsRx := QuoteRegExprMetaChars(DBObject.Connection.QuoteChars);
127
- QuotedWordRx := '['+QuoteCharsRx+'][^'+QuoteCharsRx+']+['+QuoteCharsRx+']';
+ QuotedWordRx := '['+QuoteCharsRx+']?[^'+QuoteCharsRx+']+['+QuoteCharsRx+']?';
128
rx.Expression := '(\sDEFINER=('+QuotedWordRx+'@'+QuotedWordRx+'))?' +
129
'\s+TRIGGER\s+'+QuotedWordRx +
130
'\s+('+Implode('|', comboTiming.Items)+')' +
0 commit comments