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 68dc071 commit acd5952Copy full SHA for acd5952
redisgraph_bulk_loader/entity_file.py
@@ -200,7 +200,7 @@ def convert_header_with_schema(self, header):
200
else:
201
# We have a column name and a type.
202
# Only store the name if the column's values should be added as properties.
203
- if col_type not in (Type.START_ID, Type.END_ID, Type.IGNORE):
+ if len(pair[0]) > 0 and col_type not in (Type.START_ID, Type.END_ID, Type.IGNORE):
204
self.column_names[idx] = pair[0]
205
206
# Store the column type.
0 commit comments