librdf
librdf copied to clipboard
Redland librdf RDF API and triple stores
This fixes following compilation failure with version 8.0.18 of mysql-connector-c: ``` rdf_storage_mysql.c: In function 'librdf_storage_mysql_get_handle': rdf_storage_mysql.c:450:5: error: unknown type name 'my_bool'; did you mean 'bool'? 450 | my_bool value=(context->reconnect) ?...
`librdf_new_storage_with_options` segfaults when `options` is NULL, even though documentation says that is allowed. This PR changes that to behave like `librdf_new_storage` when `options_string` is NULL.
See https://github.com/dajobe/raptor/pull/78. The rdf_parser test was passing on some platforms, presumably because the turtle parser was just reading the same data again and then terminating - which would still cause...