Skip to content

Commit

Permalink
restore default type to STRING
Browse files Browse the repository at this point in the history
  • Loading branch information
qidaye committed Oct 8, 2024
1 parent 12a74c5 commit 72b872a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ private static Column parseEsField(String fieldName, ObjectNode fieldValue, List
type = Type.UNSUPPORTED;
}
} else {
type = Type.JSONB;
type = ScalarType.createStringType();
column.setComment("Elasticsearch no type");
column2typeMap.put(fieldName, "no_type");
}
Expand Down

0 comments on commit 72b872a

Please sign in to comment.