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.
1 parent ff0753e commit 6b5860bCopy full SHA for 6b5860b
src/main/java/com/geckotechnology/mySqlDataCompare/App.java
@@ -56,7 +56,7 @@ public static void main(String[] args)
56
System.out.println("Comparing Database Schema Data MASTER with Slave #" + i);
57
ArrayList<Table> tablesReadyToBeDataAnalyzed = mySQLSchemaComparer.getMasterTablesReadyToBeDataAnalyzed();
58
//printing table names to be analyzed
59
- System.out.print("In-scope tables for comparison: " + tablesReadyToBeDataAnalyzed.size() + ". Table names: ");
+ System.out.print("In scope tables for comparison: " + tablesReadyToBeDataAnalyzed.size() + ". Table names: ");
60
for(Table table:tablesReadyToBeDataAnalyzed) {
61
System.out.print(table.getTableName());
62
System.out.print(" ");
0 commit comments