Skip to content

Commit 5875b68

Browse files
committed
When dumping whole database include "UNLOGGED TABLE"s and "GLOBAL TEMPORARY TABLE"s.
Removed old and obsolete "STREAM TABLE".
1 parent d78efc8 commit 5875b68

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/monetdb/client/JdbcClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ public final static void main(String[] args) throws Exception {
408408
out = new PrintWriter(new BufferedWriter(new java.io.FileWriter(oc.getArgument())));
409409

410410
// we only want user tables and views to be dumped (DDL and optional data), unless a specific table is requested
411-
final String[] types = {"TABLE","VIEW","MERGE TABLE","REMOTE TABLE","REPLICA TABLE","STREAM TABLE"};
411+
final String[] types = {"TABLE","VIEW","MERGE TABLE","REMOTE TABLE","REPLICA TABLE","UNLOGGED TABLE","GLOBAL TEMPORARY TABLE"};
412412
// Future: fetch all type names using dbmd.getTableTypes() and construct String[] with all
413413
// table type names excluding the SYSTEM ... ones and LOCAL TEMPORARY TABLE/VIEW ones.
414414

0 commit comments

Comments
 (0)