X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=sqlconvert%2Fprocess_mysql.py;fp=sqlconvert%2Fprocess_mysql.py;h=c375f797a91d12b7a34e9fcde629ea988f2d9252;hb=d830f4bcd21deb078a89d59e4d98a6406ce5661d;hp=9e342c2e04ec7c5ad4ba1796731932320762e5f3;hpb=d37aa4171740015b0e1f65b4678ccb02be9d8330;p=sqlconvert.git diff --git a/sqlconvert/process_mysql.py b/sqlconvert/process_mysql.py index 9e342c2..c375f79 100644 --- a/sqlconvert/process_mysql.py +++ b/sqlconvert/process_mysql.py @@ -1,5 +1,5 @@ -from sqlparse.sql import Comment +from sqlparse.sql import Comment, Function, Identifier, Parenthesis, Statement from sqlparse import tokens as T from .process_tokens import escape_strings, is_comment_or_space @@ -77,10 +77,66 @@ def is_insert(statement): return (token.ttype is T.DML) and (token.normalized == 'INSERT') +def split_ext_insert(statement): + """Split extended INSERT into multiple standard INSERTs""" + insert_tokens = [] + values_tokens = [] + last_token = None + expected = 'INSERT' + for token in statement.tokens: + if is_comment_or_space(token): + insert_tokens.append(token) + continue + elif expected == 'INSERT': + if (token.ttype is T.DML) and (token.normalized == 'INSERT'): + insert_tokens.append(token) + expected = 'INTO' + continue + elif expected == 'INTO': + if (token.ttype is T.Keyword) and (token.normalized == 'INTO'): + insert_tokens.append(token) + expected = 'TABLE_NAME' + continue + elif expected == 'TABLE_NAME': + if isinstance(token, (Function, Identifier)): + insert_tokens.append(token) + expected = 'VALUES' + continue + elif expected == 'VALUES': + if (token.ttype is T.Keyword) and (token.normalized == 'VALUES'): + insert_tokens.append(token) + expected = 'VALUES_OR_SEMICOLON' + continue + elif expected == 'VALUES_OR_SEMICOLON': + if isinstance(token, Parenthesis): + values_tokens.append(token) + continue + elif token.ttype is T.Punctuation: + if token.value == ',': + continue + elif token.value == ';': + last_token = token + break + raise ValueError( + 'SQL syntax error: expected "%s", got %s "%s"' % ( + expected, token.ttype, token.normalized)) + for values in values_tokens: + # The statemnt sets `parent` attribute of the every token to self + # but we don't care. + vl = [values] + if last_token: + vl.append(last_token) + statement = Statement(insert_tokens + vl) + yield statement + + def process_statement(statement, quoting_style='sqlite'): requote_names(statement) unescape_strings(statement) remove_directive_tokens(statement) escape_strings(statement, quoting_style) - yield statement - return + if is_insert(statement): + for statement in split_ext_insert(statement): + yield statement + else: + yield statement