Skip to content

Commit

Permalink
fix: 4398 save row with required file flield
Browse files Browse the repository at this point in the history
Closes #4398
  • Loading branch information
connoratrug committed Oct 25, 2024
1 parent 3ecba5e commit b1a4733
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ public static Object getTypedValue(Object v, ColumnType columnType) {
return switch (columnType.getBaseType()) {
case UUID -> TypeUtils.toUuid(v);
case UUID_ARRAY -> TypeUtils.toUuidArray(v);
case STRING, EMAIL, HYPERLINK -> TypeUtils.toString(v);
case STRING, EMAIL, HYPERLINK, FILE -> TypeUtils.toString(v);
case STRING_ARRAY, EMAIL_ARRAY, HYPERLINK_ARRAY -> TypeUtils.toStringArray(v);
case BOOL -> TypeUtils.toBool(v);
case BOOL_ARRAY -> TypeUtils.toBoolArray(v);
Expand Down

0 comments on commit b1a4733

Please sign in to comment.