File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
hibernate-core/src/main/java/org/hibernate/tool/schema/internal Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -188,13 +188,12 @@ private static void appendColumnDefinition(
188188 definition .append ( ' ' ).append ( identityColumnString );
189189 }
190190 else {
191- final String columnType ;
192- columnType = column .getSqlType ( metadata );
191+ final String columnType = column .getSqlType ( metadata );
193192 if ( column .getGeneratedAs () == null || dialect .hasDataTypeBeforeGeneratedAs () ) {
194193 definition .append ( ' ' ).append ( columnType );
195194 }
196195
197- String collation = column .getCollation ();
196+ final String collation = column .getCollation ();
198197 if ( collation != null ) {
199198 definition .append (" collate " ).append ( dialect .quoteCollation ( collation ) );
200199 }
You can’t perform that action at this time.
0 commit comments