We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
types=true
error_trace=true
1 parent fc02f6a commit 1b8f0adCopy full SHA for 1b8f0ad
src/crate/client/http.py
@@ -315,7 +315,7 @@ class Client(object):
315
Crate connection client using CrateDB's HTTP API.
316
"""
317
318
- SQL_PATH = '/_sql?types'
+ SQL_PATH = '/_sql?types=true'
319
"""Crate URI path for issuing SQL statements."""
320
321
retry_interval = 30
@@ -385,7 +385,7 @@ def __init__(self,
385
386
self.path = self.SQL_PATH
387
if error_trace:
388
- self.path += '?error_trace=true'
+ self.path += '&error_trace=true'
389
390
def close(self):
391
for server in self.server_pool.values():
0 commit comments