X Tutup
Skip to content

Fix for when there is no "ENGINE" statement.#58

Open
sololegends wants to merge 1 commit intomysql2sqlite:masterfrom
sololegends:patch-1
Open

Fix for when there is no "ENGINE" statement.#58
sololegends wants to merge 1 commit intomysql2sqlite:masterfrom
sololegends:patch-1

Conversation

@sololegends
Copy link

The Regex has been changed from

/ ENGINE| engine/

to

/ ENGINE| engine| \);/

This way, when the "ENGINE" keyword isn't present, it will still print out the closing ");" for the table create.

Tested on dumps with ENGINE and without, working.

The Regex has been changed from  

> / ENGINE| engine/ 

to  

> / ENGINE| engine| \\);/ 

This way, when the "ENGINE" keyword isn't present, it will still print out the closing ");" for the table create.  

Tested on dumps with ENGINE and without, working.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

X Tutup