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.
This is the culprit:
JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/Utils.java
Line 39 in 4cf34bb
If an empty string is passed as a parameter, the code tries to access the 0th character, which fails.
Workaround: use "\"\"" as parameter (i.e. a string that contains only two quotes).
"\"\""
(NB: I didn't send a PR because I'm not completely sure about the semantics of the the quoteString method. Should it escape characters or not?)
quoteString
This is the culprit:
JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/Utils.java
Line 39 in 4cf34bb
If an empty string is passed as a parameter, the code tries to access the 0th character, which fails.
Workaround: use
"\"\""as parameter (i.e. a string that contains only two quotes).(NB: I didn't send a PR because I'm not completely sure about the semantics of the the
quoteStringmethod. Should it escape characters or not?)