GitHub user rvesse opened a pull request:
https://github.com/apache/jena/pull/440
Fix SSE parsing on table with boolean values (JENA-1566)
JENA-1566 reports an issue with round tripping through SSE of tables that
contain boolean literals i.e. `true` and `false`
This was due to overly strict checking in `BuilderBinding` which has been
removed although a missing test for non-blank-ness was added. Various unit
tests are added around this issue.
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/rvesse/jena JENA-1566
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/jena/pull/440.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #440
----
commit 1a3f662f31533700685eda774458eba9a6766229
Author: Rob Vesse <rvesse@...>
Date: 2018-06-27T10:38:19Z
Remove unecessarily strict check in BuilderTable (JENA-1566)
Check prevents valid node values being parsed for row entries and there
is already checking of invalid values that happens after the attempt to
parse the node value. Adds various unit tests around BuilderTable as
well.
commit e6d8c52ad0416cbb81ab393b8b9bdaccab30a3e5
Author: Rob Vesse <rvesse@...>
Date: 2018-06-27T10:45:50Z
Add missing node test in BuilderBinding (JENA-1566)
----
---