@@ -61,25 +61,25 @@ protected boolean hasBehavior(TestingConnectorBehavior connectorBehavior)
61
61
return switch (connectorBehavior ) {
62
62
// Tests requires write access which is not implemented
63
63
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 ;
67
67
68
68
// Parallel writing is not supported due to restrictions of the Exasol JDBC driver.
69
69
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 ;
83
83
84
84
default -> super .hasBehavior (connectorBehavior );
85
85
};
0 commit comments