You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: airbyte-cdk/python/airbyte_cdk/sources/file_based/config/csv_format.py
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -63,6 +63,11 @@ class Config:
63
63
default=[],
64
64
description="A set of case-sensitive strings that should be interpreted as null values. For example, if the value 'NA' should be interpreted as null, enter 'NA' in this field.",
65
65
)
66
+
strings_can_be_null: bool=Field(
67
+
title="Strings Can Be Null",
68
+
default=True,
69
+
description="Whether strings can be interpreted as null values. If true, strings that match the null_values set will be interpreted as null. If false, strings that match the null_values set will be interpreted as the string itself.",
property_types= {col: prop["type"] forcol, propindiscovered_schema["properties"].items()} # type: ignore # discovered_schema["properties"] is known to be a mapping
0 commit comments