Skip to content

Commit c1e9ab0

Browse files
brfrn169josh-wong
andauthored
[skip ci] Apply suggestions from code review
Co-authored-by: Josh Wong <[email protected]>
1 parent 5679f61 commit c1e9ab0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

schema-loader/src/main/java/com/scalar/db/schemaloader/SchemaLoaderError.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,31 +12,31 @@ public enum SchemaLoaderError implements ScalarDbError {
1212
ALTERING_PARTITION_KEYS_NOT_SUPPORTED(
1313
Category.USER_ERROR,
1414
"0001",
15-
"The partition keys of the table %s.%s were modified, but altering partition keys is not supported",
15+
"The partition keys for the table %s.%s were modified, but altering partition keys is not supported",
1616
"",
1717
""),
1818
ALTERING_CLUSTERING_KEYS_NOT_SUPPORTED(
1919
Category.USER_ERROR,
2020
"0002",
21-
"The clustering keys of the table %s.%s were modified, but altering clustering keys is not supported",
21+
"The clustering keys for the table %s.%s were modified, but altering clustering keys is not supported",
2222
"",
2323
""),
2424
ALTERING_CLUSTERING_ORDER_NOT_SUPPORTED(
2525
Category.USER_ERROR,
2626
"0003",
27-
"The clustering ordering of the table %s.%s were modified, but altering clustering ordering is not supported",
27+
"The clustering order of the table %s.%s were modified, but altering the clustering order is not supported",
2828
"",
2929
""),
3030
DELETING_COLUMN_NOT_SUPPORTED(
3131
Category.USER_ERROR,
3232
"0004",
33-
"The column %s of the table %s.%s has been deleted. Column deletion is not supported when altering a table",
33+
"The column %s in the table %s.%s has been deleted. Column deletion is not supported when altering a table",
3434
"",
3535
""),
3636
ALTERING_COLUMN_DATA_TYPE_NOT_SUPPORTED(
3737
Category.USER_ERROR,
3838
"0005",
39-
"The data type of the column %s of the table %s.%s was modified, but altering data types is not supported",
39+
"The data type for the column %s in the table %s.%s was modified, but altering data types is not supported",
4040
"",
4141
""),
4242
SPECIFYING_SCHEMA_FILE_REQUIRED_WHEN_USING_REPAIR_ALL(

0 commit comments

Comments
 (0)