Skip to content

Commit 5fe335a

Browse files
committed
Expose the Charset that is used when dumping files
1 parent e19bfd0 commit 5fe335a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/de/cronn/postgres/snapshot/util/PostgresDump.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ public final class PostgresDump {
2424

2525
private static final Logger log = LoggerFactory.getLogger(PostgresDump.class);
2626

27+
public static final Charset ENCODING = StandardCharsets.UTF_8;
28+
2729
private static final String CONTAINER_DUMP_FILE = "/tmp/pg_dump.data";
28-
private static final Charset ENCODING = StandardCharsets.UTF_8;
2930

3031
private PostgresDump() {
3132
}

0 commit comments

Comments
 (0)