rahil-c commented on code in PR #18328:
URL: https://github.com/apache/hudi/pull/18328#discussion_r2981388906


##########
hudi-common/src/main/java/org/apache/hudi/internal/schema/convert/InternalSchemaConverter.java:
##########
@@ -538,6 +544,13 @@ private static HoodieSchema 
visitInternalPrimitiveToBuildHoodiePrimitiveType(Typ
         return HoodieSchema.createFixed(name, null, null, 
fixed.getFixedSize());
       }
 
+      case VECTOR: {
+        Types.VectorType vector = (Types.VectorType) primitive;
+        return HoodieSchema.createVector(
+            vector.getDimension(),
+            
HoodieSchema.Vector.VectorElementType.fromString(vector.getElementType()));
+      }

Review Comment:
   nice catch thanks voon



-- 
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]

Reply via email to