We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b641c37 + e05cc25 commit 24301dfCopy full SHA for 24301df
mysqldump_to_csv.py
@@ -8,6 +8,9 @@
8
from signal import signal, SIGPIPE, SIG_DFL
9
signal(SIGPIPE, SIG_DFL)
10
11
+# allow large content in the dump
12
+csv.field_size_limit(sys.maxsize)
13
+
14
def is_insert(line):
15
"""
16
Returns true if the line begins a SQL insert statement.
0 commit comments