diff options
-rw-r--r-- | src/test/java/com/healthmarketscience/jackcess/TestUtil.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test/java/com/healthmarketscience/jackcess/TestUtil.java b/src/test/java/com/healthmarketscience/jackcess/TestUtil.java index f06f89d..7d1d6b3 100644 --- a/src/test/java/com/healthmarketscience/jackcess/TestUtil.java +++ b/src/test/java/com/healthmarketscience/jackcess/TestUtil.java @@ -317,6 +317,15 @@ public class TestUtil dumpTable(table, new PrintWriter(System.out, true)); } + public static void dumpProperties(Table table) throws Exception { + System.out.println("TABLE_PROPS: " + table.getName() + ": " + + table.getProperties()); + for(Column c : table.getColumns()) { + System.out.println("COL_PROPS: " + c.getName() + ": " + + c.getProperties()); + } + } + static void dumpDatabase(Database mdb, boolean systemTables, PrintWriter writer) throws Exception { |