Skip to content

Commit 3f2e875

Browse files
committed
Apply suggestions
1 parent f1a935d commit 3f2e875

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

core/src/main/java/com/scalar/db/common/CoreError.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -786,13 +786,13 @@ public enum CoreError implements ScalarDbError {
786786
""),
787787
JDBC_SQLITE_ALTER_COLUMN_TYPE_NOT_SUPPORTED(
788788
Category.USER_ERROR,
789-
"0236",
789+
"0237",
790790
"SQLite does not support the altering column type feature",
791791
"",
792792
""),
793793
JDBC_UNSUPPORTED_COLUMN_TYPE_CONVERSION(
794794
Category.USER_ERROR,
795-
"0237",
795+
"0238",
796796
"The storage does not support column type conversion from %s to %s. Column: %s",
797797
"",
798798
""),

integration-test/src/main/java/com/scalar/db/api/DistributedStorageAdminIntegrationTestBase.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1160,7 +1160,6 @@ public void renameTable_ForExistingTable_ShouldRenameTableCorrectly() throws Exe
11601160
put.timestampTZValue(getColumnName12(), Instant.now());
11611161
}
11621162
storage.put(put.build());
1163-
storage.close();
11641163

11651164
// Act
11661165
admin.alterColumnType(namespace1, getTable4(), getColumnName3(), DataType.TEXT);

0 commit comments

Comments
 (0)