minor bug fix for mysql -d --file-read

This commit is contained in:
Bernardo Damele 2011-12-06 10:57:23 +00:00
parent 0f5d48ff20
commit 8fe72d87a8

View File

@ -205,34 +205,35 @@ SQL_STATEMENTS = {
" offset ",
" union all ",
" rownum as ",
"(case ", ),
"(case ", ),
"SQL data definition": (
"create ",
"declare ",
"drop ",
"truncate ",
"alter ", ),
"alter ", ),
"SQL data manipulation": (
"insert ",
"update ",
"delete ",
"merge ", ),
"merge ",
"load ", ),
"SQL data control": (
"grant ", ),
"grant ", ),
"SQL data execution": (
" exec ",
"execute ", ),
"execute ", ),
"SQL transaction": (
"start transaction ",
"begin work ",
"begin transaction ",
"commit ",
"rollback ", ),
"rollback ", ),
}
# Regular expressions used for parsing error messages (--parse-errors)