Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit c269f0f

Browse files
committed
fix comparison with SPI_processed
1 parent 22505f4 commit c269f0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/tsearch2/query_rewrite.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ get_tsq_Oid(void)
218218
/* internal error */
219219
elog(ERROR, "SPI_exec to get tsquery oid returns %d", ret);
220220

221-
if (SPI_processed < 0)
221+
if (SPI_processed < 1)
222222
/* internal error */
223223
elog(ERROR, "there is no tsvector type");
224224
tsqOid = DatumGetObjectId(SPI_getbinval(SPI_tuptable->vals[0], SPI_tuptable->tupdesc, 1, &isnull));

0 commit comments

Comments
 (0)