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 34f7209Copy full SHA for 34f7209
paimon_python_java/paimon-python-java-bridge/src/main/java/org/apache/paimon/python/BytesWriter.java
@@ -89,7 +89,8 @@ 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(
93
+ expectedField.getChildren(), actualField.getChildren())) {
94
return false;
95
}
96
0 commit comments