diff options
author | rowanbeentje <rowan@beent.je> | 2009-08-17 13:12:56 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2009-08-17 13:12:56 +0000 |
commit | 70461b72df8b088b5a6a42b3ee99b2305e2be1d5 (patch) | |
tree | 11a37cf1bcc407fd569c966a3d8814efbeea1f14 /Source | |
parent | 1f986f1be7521d3323ac6412a623dc825c56db83 (diff) | |
download | sequelpro-70461b72df8b088b5a6a42b3ee99b2305e2be1d5.tar.gz sequelpro-70461b72df8b088b5a6a42b3ee99b2305e2be1d5.tar.bz2 sequelpro-70461b72df8b088b5a6a42b3ee99b2305e2be1d5.zip |
- Fix very end of exported SQL for tabel content with new export code
Diffstat (limited to 'Source')
-rw-r--r-- | Source/TableDump.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/TableDump.m b/Source/TableDump.m index 93855bf4..0a7d5e0e 100644 --- a/Source/TableDump.m +++ b/Source/TableDump.m @@ -1088,7 +1088,7 @@ queryLength += [sqlString length]; // Close this VALUES group and set up the next one if appropriate - if (j != rowCount - 1) { + if (j != rowCount) { // Add a new INSERT starter command every ~250k of data. if (queryLength > 250000) { |