Fix for "#23 Bugs when exporting timestamps and JSON ", https://sourceforge.net/p/jailer/bugs/23/

git-svn-id: https://svn.code.sf.net/p/jailer/code/trunk@1526 3dd849cd-670e-4645-a7cd-dd197c8d0e81
This commit is contained in:
rwisser
2018-01-03 11:15:58 +00:00
parent 96e01de29e
commit 554372ce1c
@@ -198,7 +198,7 @@ public class CellContentConverter {
private static final int TYPE_POBJECT = 10500;
private static Set<String> POSTGRES_EXTENSIONS = new HashSet<String>();
static {
POSTGRES_EXTENSIONS.addAll(Arrays.asList("hstore", "json"));
POSTGRES_EXTENSIONS.addAll(Arrays.asList("hstore", "ghstore", "json", "jsonb", "_hstore", "_json", "_jsonb", "_ghstore"));
}
public static class PObjectWrapper {