Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Raising ValueError if unsupported return types are requested for SELECT queries #220

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions SPARQLWrapper/Wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -957,6 +957,11 @@ def query(self) -> "QueryResult":
:return: query result
:rtype: :class:`QueryResult` instance
"""

# Solving issue-190
unsupportedReturnTypesForSelectQueries = [RDF, RDFXML, XML]
if self.queryType == SELECT and self.returnFormat in [RDF, RDFXML, XML]:
raise ValueError(self.returnFormat.upper() + " is not a valid return format for SELECT queries. Supported formats include: %s" % ", ".join([i for i in _allowedFormats if i not in unsupportedReturnTypesForSelectQueries]))
return QueryResult(self._query())

def queryAndConvert(self) -> "QueryResult.ConvertResult":
Expand Down