aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/SPTableCopy.m2
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/SPTableCopy.m b/Source/SPTableCopy.m
index 1e0a4d63..f9bb159a 100644
--- a/Source/SPTableCopy.m
+++ b/Source/SPTableCopy.m
@@ -42,7 +42,6 @@
[sourceDB backtickQuotedString],
[tableName backtickQuotedString]
];
- NSLog(showCreateTableStatment);
MCPResult *theResult = [connection queryString:showCreateTableStatment];
if ([connection queryErrored]) {
@@ -66,7 +65,6 @@
// adding the target DB name and the separator dot after "CREATE TABLE ".
[createTableStatement insertString:@"." atIndex:13];
[createTableStatement insertString:[targetDB backtickQuotedString] atIndex:13];
- NSLog(@"%@", createTableStatement);
/*
// this only works with MySQL >= 4.1
NSString *copyStatement = [NSString stringWithFormat:@"CREATE TABLE %@.%@ LIKE %@.%@",