Skip to content

Commit 7ddd2fe

Browse files
committed
Fix checkstyle violations after enabling checkstyle plugin
1 parent 07b4d11 commit 7ddd2fe

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

plugin/trino-exasol/src/test/java/io/trino/plugin/exasol/TestExasolConnectorTest.java

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -61,25 +61,25 @@ protected boolean hasBehavior(TestingConnectorBehavior connectorBehavior)
6161
return switch (connectorBehavior) {
6262
// Tests requires write access which is not implemented
6363
case SUPPORTS_AGGREGATION_PUSHDOWN,
64-
SUPPORTS_JOIN_PUSHDOWN,
65-
SUPPORTS_LIMIT_PUSHDOWN,
66-
SUPPORTS_TOPN_PUSHDOWN -> false;
64+
SUPPORTS_JOIN_PUSHDOWN,
65+
SUPPORTS_LIMIT_PUSHDOWN,
66+
SUPPORTS_TOPN_PUSHDOWN -> false;
6767

6868
// Parallel writing is not supported due to restrictions of the Exasol JDBC driver.
6969
case SUPPORTS_ADD_COLUMN,
70-
SUPPORTS_ARRAY,
71-
SUPPORTS_COMMENT_ON_TABLE,
72-
SUPPORTS_CREATE_SCHEMA,
73-
SUPPORTS_CREATE_TABLE,
74-
SUPPORTS_DELETE,
75-
SUPPORTS_INSERT,
76-
SUPPORTS_MAP_TYPE,
77-
SUPPORTS_NEGATIVE_DATE, // min date is 0001-01-01
78-
SUPPORTS_RENAME_COLUMN,
79-
SUPPORTS_RENAME_TABLE,
80-
SUPPORTS_ROW_TYPE,
81-
SUPPORTS_SET_COLUMN_TYPE,
82-
SUPPORTS_UPDATE -> false;
70+
SUPPORTS_ARRAY,
71+
SUPPORTS_COMMENT_ON_TABLE,
72+
SUPPORTS_CREATE_SCHEMA,
73+
SUPPORTS_CREATE_TABLE,
74+
SUPPORTS_DELETE,
75+
SUPPORTS_INSERT,
76+
SUPPORTS_MAP_TYPE,
77+
SUPPORTS_NEGATIVE_DATE, // min date is 0001-01-01
78+
SUPPORTS_RENAME_COLUMN,
79+
SUPPORTS_RENAME_TABLE,
80+
SUPPORTS_ROW_TYPE,
81+
SUPPORTS_SET_COLUMN_TYPE,
82+
SUPPORTS_UPDATE -> false;
8383

8484
default -> super.hasBehavior(connectorBehavior);
8585
};

0 commit comments

Comments
 (0)