We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b786c73 commit 3b13ccaCopy full SHA for 3b13cca
paimon_python_java/paimon-python-java-bridge/src/main/java/org/apache/paimon/python/BytesWriter.java
@@ -89,7 +89,7 @@ private boolean checkTypesIgnoreNullability(
89
Field actualField = actualFields.get(i);
90
// ArrowType doesn't have nullability (similar to DataTypeRoot)
91
if (!actualField.getType().equals(expectedField.getType())
92
- || !checkSchema(expectedField.getChildren(), actualField.getChildren())) {
+ || !checkTypesIgnoreNullability(expectedField.getChildren(), actualField.getChildren())) {
93
return false;
94
}
95
0 commit comments