We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d3d6d4 commit f95b10aCopy full SHA for f95b10a
plugin/trino-base-jdbc/src/main/java/io/trino/plugin/jdbc/JdbcWriteConfig.java
@@ -21,10 +21,10 @@
21
public class JdbcWriteConfig
22
{
23
public static final int MAX_ALLOWED_WRITE_BATCH_SIZE = 10_000_000;
24
- static final int DEFAULT_WRITE_PARALELLISM = 8;
+ static final int DEFAULT_WRITE_PARALLELISM = 8;
25
26
private int writeBatchSize = 1000;
27
- private int writeParallelism = DEFAULT_WRITE_PARALELLISM;
+ private int writeParallelism = DEFAULT_WRITE_PARALLELISM;
28
29
// Do not create temporary table during insert.
30
// This means that the write operation can fail and leave the table in an inconsistent state.
0 commit comments