ChaomingZhangCN commented on code in PR #198:
URL: https://github.com/apache/paimon-cpp/pull/198#discussion_r3800435979
##########
src/paimon/core/schema/schema_validation.cpp:
##########
@@ -648,4 +673,26 @@ Status SchemaValidation::ValidateMapStorageLayout(const
TableSchema& schema,
return Status::OK();
}
+Status SchemaValidation::ValidateVectorFields(const TableSchema& schema,
+ const CoreOptions& options) {
+ bool has_vector = false;
+ for (const auto& field : schema.Fields()) {
+ if (ContainsVectorField(field.ArrowField())) {
Review Comment:
ok
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]