Skip to content

Commit 183d636

Browse files
committed
Fix checkstyle warnings on indentation level
1 parent 7e9d101 commit 183d636

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

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

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -63,24 +63,24 @@ protected boolean hasBehavior(TestingConnectorBehavior connectorBehavior)
6363
case SUPPORTS_JOIN_PUSHDOWN -> true;
6464
// Tests requires write access which is not implemented
6565
case SUPPORTS_AGGREGATION_PUSHDOWN,
66-
SUPPORTS_LIMIT_PUSHDOWN,
67-
SUPPORTS_TOPN_PUSHDOWN -> false;
66+
SUPPORTS_LIMIT_PUSHDOWN,
67+
SUPPORTS_TOPN_PUSHDOWN -> false;
6868

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

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

0 commit comments

Comments
 (0)