Skip to content

Commit

Permalink
Fixed repeating issue for postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
eiglesias34 committed Jun 23, 2023
1 parent 0531fca commit a7abc77
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ You can easily customize your own configurations from the set of features that S

## Version
```
4.7.1.7
4.7.1.8
```

## RML-Test Cases
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.7.1.7
4.7.1.8
1 change: 1 addition & 0 deletions rdfizer/rdfizer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4246,6 +4246,7 @@ def semantify_postgres(row, row_headers, triples_map, triples_map_list, output_f
except:
output_file_descriptor.write(rdf_type.encode("utf-8"))
i += 1
predicate = None

for predicate_object_map in triples_map.predicate_object_maps_list:
if predicate == None:
Expand Down
1 change: 1 addition & 0 deletions rdfizer/rdfizer/semantify.py
Original file line number Diff line number Diff line change
Expand Up @@ -4246,6 +4246,7 @@ def semantify_postgres(row, row_headers, triples_map, triples_map_list, output_f
except:
output_file_descriptor.write(rdf_type.encode("utf-8"))
i += 1
predicate = None

for predicate_object_map in triples_map.predicate_object_maps_list:
if predicate == None:
Expand Down

0 comments on commit a7abc77

Please sign in to comment.