Skip to content

Commit d34c8a3

Browse files
committed
Move inner enum to top
It was initially added next to other enums, but now they are gone. Move to a better place.
1 parent f96d560 commit d34c8a3

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

core/trino-main/src/main/java/io/trino/FeaturesConfig.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,14 @@
8282
})
8383
public class FeaturesConfig
8484
{
85+
public enum DataIntegrityVerification
86+
{
87+
NONE,
88+
ABORT,
89+
RETRY,
90+
/**/;
91+
}
92+
8593
@VisibleForTesting
8694
public static final String SPILLER_SPILL_PATH = "spiller-spill-path";
8795

@@ -125,14 +133,6 @@ public class FeaturesConfig
125133

126134
private boolean legacyArithmeticDecimalOperators;
127135

128-
public enum DataIntegrityVerification
129-
{
130-
NONE,
131-
ABORT,
132-
RETRY,
133-
/**/;
134-
}
135-
136136
public boolean isRedistributeWrites()
137137
{
138138
return redistributeWrites;

0 commit comments

Comments
 (0)