aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Isaac2022-10-30 16:11:53 +0530
committerArun Isaac2022-10-30 16:11:53 +0530
commit9824c24d9910c7503d2eafe074c8b6c7ec6641d6 (patch)
treee83e06e5f93be439c573650fccaaa2c68a113404
parent20734088eef70a623e5fd62530bb3efd7deb8fa8 (diff)
downloadgn-transform-databases-9824c24d9910c7503d2eafe074c8b6c7ec6641d6.tar.gz
Do not deduplicate the AvgMethod table.
The AvgMethod table no longer has duplicate "N/A" records. * dump.scm (dump-avg-method): Do not deduplicate the AvgMethod table.
-rwxr-xr-xdump.scm5
1 files changed, 1 insertions, 4 deletions
diff --git a/dump.scm b/dump.scm
index 439f9e2..fd7e700 100755
--- a/dump.scm
+++ b/dump.scm
@@ -573,10 +573,7 @@ must be remedied."
(define-dump dump-avg-method
;; The Name and Normalization fields seem to be the same. Dump only
;; the Name field.
- ;;
- ;; There are two records with Name as "N/A". Deduplicate.
- (tables (AvgMethod)
- "GROUP BY Name")
+ (tables (AvgMethod))
(schema-triples
(gn:name rdfs:range rdfs:Literal))
(triples (avg-method-name->id (field AvgMethod Name))