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.
1 parent af0c3c6 commit 4105990Copy full SHA for 4105990
redisgraph/util.py
@@ -15,6 +15,8 @@ def quote_string(v):
15
"""
16
if not isinstance(v, str):
17
return v
18
+ if len(v) == 0:
19
+ return '""'
20
21
if v[0] != '"':
22
v = '"' + v
0 commit comments