Skip to content

Commit f95b10a

Browse files
chenjian2664wendigo
authored andcommitted
Fix jdbc write config variable typo
1 parent 8d3d6d4 commit f95b10a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugin/trino-base-jdbc/src/main/java/io/trino/plugin/jdbc/JdbcWriteConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
public class JdbcWriteConfig
2222
{
2323
public static final int MAX_ALLOWED_WRITE_BATCH_SIZE = 10_000_000;
24-
static final int DEFAULT_WRITE_PARALELLISM = 8;
24+
static final int DEFAULT_WRITE_PARALLELISM = 8;
2525

2626
private int writeBatchSize = 1000;
27-
private int writeParallelism = DEFAULT_WRITE_PARALELLISM;
27+
private int writeParallelism = DEFAULT_WRITE_PARALLELISM;
2828

2929
// Do not create temporary table during insert.
3030
// This means that the write operation can fail and leave the table in an inconsistent state.

0 commit comments

Comments
 (0)