Your inserted SQL-Statement:
SELECT "col mit Leerzeichen" FROM table1
The generated RegEx:
^\s*SELECT\s+[`´'"]?colmitLeerzeichen[`´'"]?\s*(\s*(?:ALIAS|AS)\s+.*?)?\s+FROM\s+[`´'"]*table1[`´'"]*(\s*(?:ALIAS|AS)?\s+.*)?\s*;?\s*$
Steps to reproduce:
all settings disabled
Expected Statement to match the RegEx:
SELECT "col mit Leerzeichen" FROM table1
Additional context:
Problem is that spaced column names get whitespace stripped in the RegEx
Your inserted SQL-Statement:
The generated RegEx:
Steps to reproduce:
all settings disabled
Expected Statement to match the RegEx:
SELECT "col mit Leerzeichen" FROM table1
Additional context:
Problem is that spaced column names get whitespace stripped in the RegEx