[Wikidata-bugs] [Maniphest] T275077: wikibase/wdqs:0.3.40 - loadData.sh script cannot parse BNode with unlabeled white space

2021-03-01 Thread Gehel
Gehel closed this task as "Declined".
Gehel added a comment.


  This is the only case we know of blank nodes being written with blank space. 
While this is valid, it's not very much used. If you can modify the dump 
format, that would be an easy workaround. This is definitely a bug in the 
parser library, and you might want to report this upstream.

TASK DETAIL
  https://phabricator.wikimedia.org/T275077

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Gehel
Cc: Gehel, Aklapper, Wagonhelm, MPhamWMF, CBogen, Samantha_Alipio_WMDE, 
Akuckartz, Jelabra, Nandana, Namenlos314, Lahi, Gq86, Lucas_Werkmeister_WMDE, 
GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Jonas, Xmlizer, Asahiko, abian, despens, jkroll, Wikidata-bugs, 
Jdouglas, aude, Tobias1984, Manybubbles, Addshore, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T275077: wikibase/wdqs:0.3.40 - loadData.sh script cannot parse BNode with unlabeled white space

2021-02-22 Thread Gehel
Gehel added a comment.


  This looks like a bug in the Rio parser (3rd party dependency). We'll need to 
dig a bit more into the code to confirm, but if that's the case, we're probably 
not going to fix it.

TASK DETAIL
  https://phabricator.wikimedia.org/T275077

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Gehel
Cc: Gehel, Aklapper, Wagonhelm, MPhamWMF, CBogen, Samantha_Alipio_WMDE, 
Akuckartz, Jelabra, Nandana, Namenlos314, Lahi, Gq86, Lucas_Werkmeister_WMDE, 
GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Jonas, Xmlizer, Asahiko, despens, jkroll, Wikidata-bugs, Jdouglas, 
aude, Tobias1984, Manybubbles, Addshore, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T275077: wikibase/wdqs:0.3.40 - loadData.sh script cannot parse BNode with unlabeled white space

2021-02-22 Thread MPhamWMF
MPhamWMF moved this task from All WDQS-related tasks to Current work on the 
Wikidata-Query-Service board.
MPhamWMF added a project: Discovery-Search (Current work).

TASK DETAIL
  https://phabricator.wikimedia.org/T275077

WORKBOARD
  https://phabricator.wikimedia.org/project/board/891/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: MPhamWMF
Cc: Aklapper, Wagonhelm, MPhamWMF, CBogen, Samantha_Alipio_WMDE, Akuckartz, 
Jelabra, Nandana, Namenlos314, Lahi, Gq86, Lucas_Werkmeister_WMDE, 
GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Jonas, Xmlizer, Asahiko, despens, jkroll, Wikidata-bugs, Jdouglas, 
aude, Tobias1984, Manybubbles, Addshore, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T275077: wikibase/wdqs:0.3.40 - loadData.sh script cannot parse BNode with unlabeled white space

2021-02-17 Thread Wagonhelm
Wagonhelm added a project: Wikidata-Query-Service.
Restricted Application added a project: wdwb-tech-focus.

TASK DETAIL
  https://phabricator.wikimedia.org/T275077

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Wagonhelm
Cc: Aklapper, Wagonhelm, MPhamWMF, CBogen, Samantha_Alipio_WMDE, Akuckartz, 
Jelabra, Nandana, Namenlos314, Lahi, Gq86, Lucas_Werkmeister_WMDE, 
GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Jonas, Xmlizer, Asahiko, despens, jkroll, Wikidata-bugs, Jdouglas, 
aude, Tobias1984, Manybubbles, Addshore, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T275077: wikibase/wdqs:0.3.40 - loadData.sh script cannot parse BNode with unlabeled white space

2021-02-17 Thread Wagonhelm
Wagonhelm created this task.
Wagonhelm added a project: Wikibase-Containers.
Restricted Application added a subscriber: Aklapper.
Restricted Application added a project: Wikidata.

TASK DESCRIPTION
  When loading a ttl via the loadData.sh script I get the following error when 
trying to load a blank node with white space between the brackets.
  
Could not load: url=file:///wdqs/wikidump-
1.ttl.gz, cause=org.openrdf.rio.RDFParseException: Expected an RDF value 
here, found ']'
  
  The loadData script does work correctly when I remove all white space between 
the brackets.  Here is what the turtle  looks 
like which causes the error:
  
wd:Q100301425 rdfs:label "Large Single-Handled Jar, Yale University Art 
Gallery, inv. 1930.655"@en ;
wdt:P571 [ ] ;
  
  According to the turtle docs 

  
  > The [162s] ANON ::= '[' WS* ']' token allows any amount of white space and 
comments between []s. The single space version is used in the grammar for 
clarity.
  
  Is there anyway to prevent this parse exception?  I would consider it a bug.

TASK DETAIL
  https://phabricator.wikimedia.org/T275077

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Wagonhelm
Cc: Aklapper, Wagonhelm, Samantha_Alipio_WMDE, Akuckartz, Jelabra, Nandana, 
Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Asahiko, despens, Wikidata-bugs, aude, Addshore, Mbch331
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs