Skip to content

Commit

Permalink
discontinued support for legacy string data ingested with "value"^^st…
Browse files Browse the repository at this point in the history
…ring
  • Loading branch information
Paul Cuddihy committed Jul 8, 2022
1 parent 4a0a6da commit 3001eb8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sparqlGraphWeb/sparqlGraph/js/belmont.js
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,9 @@ SparqlFormatter.prototype = {
var itemType = item.getValueTypes()[0];

if (itemType == "string") {
return "'" + val + "', '" + val + "'^^" + SemanticNodeGroup.XMLSCHEMA_PREFIX + itemType;
return "'" + val + "'";
// Removed backwards compatibility to Virtuoso ^^String
// return "'" + val + "', '" + val + "'^^" + SemanticNodeGroup.XMLSCHEMA_PREFIX + itemType;
} else if (itemType == "int" || itemType == "long" || itemType == "float" || itemType == "boolean") {
return val;
} else if (itemType == "uri") {
Expand Down

0 comments on commit 3001eb8

Please sign in to comment.