10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RE_INSERT_VALUES`` = re.compile( r"\s*((?:INSERT|REPLACE)\s.+\sVALUES?\s+)" + r"(\(\s*(?:%s|%\(.+\)s)\s*(?:,\s*(?:%s|%\(.+\)s)\s*)*\))" + r"(\s*(?:ON DUPLICATE.*)?);?\s*\Z", re.IGNORECASE | re.DOTALL)
In [14]: print RE_INSERT_VALUES.match('insert into table values(%s,%s)') None
In [15]: print RE_INSERT_VALUES.match('insert into table values (%s,%s)') <_sre.SRE_Match object at 0x7f9ee7f9aa48>
The text was updated successfully, but these errors were encountered:
See #597
Sorry, something went wrong.
OK, This issue is repeated, close.
No branches or pull requests
The text was updated successfully, but these errors were encountered: