Skip to content

Commit 3b13cca

Browse files
author
yuzelin
committed
fix
1 parent b786c73 commit 3b13cca

File tree

1 file changed

+1
-1
lines changed
  • paimon_python_java/paimon-python-java-bridge/src/main/java/org/apache/paimon/python

1 file changed

+1
-1
lines changed

paimon_python_java/paimon-python-java-bridge/src/main/java/org/apache/paimon/python/BytesWriter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ private boolean checkTypesIgnoreNullability(
8989
Field actualField = actualFields.get(i);
9090
// ArrowType doesn't have nullability (similar to DataTypeRoot)
9191
if (!actualField.getType().equals(expectedField.getType())
92-
|| !checkSchema(expectedField.getChildren(), actualField.getChildren())) {
92+
|| !checkTypesIgnoreNullability(expectedField.getChildren(), actualField.getChildren())) {
9393
return false;
9494
}
9595
}

0 commit comments

Comments
 (0)