We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56bdd78 commit 9a00cf9Copy full SHA for 9a00cf9
digital_land/package/dataset_parquet.py
@@ -218,6 +218,11 @@ def load_entities_range(
218
219
# distinct_fields - list of fields in the field in fact
220
rows = self.conn.execute(query).fetchall()
221
+ print(rows)
222
+ # if there are no entities in the entity range then we don't need to proceed
223
+ if len(rows) == 0:
224
+ return
225
+
226
distinct_fields = [row[0] for row in rows]
227
228
# json fields - list of fields which are present in the fact table which
0 commit comments