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 253ab0f commit 7801813Copy full SHA for 7801813
lib/result/ArrowResult.ts
@@ -68,6 +68,10 @@ export default class ArrowResult implements IOperationResult {
68
}
69
70
private convertArrowTypes(value: any, valueType: DataType | undefined, fields: Array<ArrowSchemaField> = []): any {
71
+ if (value === null) {
72
+ return value;
73
+ }
74
+
75
const fieldsMap: Record<string, ArrowSchemaField> = {};
76
for (const field of fields) {
77
fieldsMap[field.name] = field;
0 commit comments