Closed dumbuzz closed 9 years ago
You have a bug in line 998 of redis_fdw.c
else if (festate->keyprefix) { if (strncmp(qual_value, festate->keyprefix, strlen(festate->keyprefix)) == 0) festate->row = -1; }
strncmp must be !=0
With this bug foreign table with tablekeyprefix search for key equality doesn't work.
Fixed. Thanks for the report.
You have a bug in line 998 of redis_fdw.c
strncmp must be !=0
With this bug foreign table with tablekeyprefix search for key equality doesn't work.