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 f96d560 commit d34c8a3Copy full SHA for d34c8a3
core/trino-main/src/main/java/io/trino/FeaturesConfig.java
@@ -82,6 +82,14 @@
82
})
83
public class FeaturesConfig
84
{
85
+ public enum DataIntegrityVerification
86
+ {
87
+ NONE,
88
+ ABORT,
89
+ RETRY,
90
+ /**/;
91
+ }
92
+
93
@VisibleForTesting
94
public static final String SPILLER_SPILL_PATH = "spiller-spill-path";
95
@@ -125,14 +133,6 @@ public class FeaturesConfig
125
133
126
134
private boolean legacyArithmeticDecimalOperators;
127
135
128
- public enum DataIntegrityVerification
129
- {
130
- NONE,
131
- ABORT,
132
- RETRY,
- /**/;
- }
-
136
public boolean isRedistributeWrites()
137
138
return redistributeWrites;
0 commit comments