diff options
Diffstat (limited to 'src/backend/executor/nodeHashjoin.c')
-rw-r--r-- | src/backend/executor/nodeHashjoin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/nodeHashjoin.c b/src/backend/executor/nodeHashjoin.c index f189fb4d287..2fc80808e30 100644 --- a/src/backend/executor/nodeHashjoin.c +++ b/src/backend/executor/nodeHashjoin.c @@ -1072,7 +1072,7 @@ ExecHashJoinNewBatch(HashJoinState *hjstate) if (innerFile != NULL) { - if (BufFileSeek(innerFile, 0, 0L, SEEK_SET)) + if (BufFileSeek(innerFile, 0, 0, SEEK_SET)) ereport(ERROR, (errcode_for_file_access(), errmsg("could not rewind hash-join temporary file"))); @@ -1102,7 +1102,7 @@ ExecHashJoinNewBatch(HashJoinState *hjstate) */ if (hashtable->outerBatchFile[curbatch] != NULL) { - if (BufFileSeek(hashtable->outerBatchFile[curbatch], 0, 0L, SEEK_SET)) + if (BufFileSeek(hashtable->outerBatchFile[curbatch], 0, 0, SEEK_SET)) ereport(ERROR, (errcode_for_file_access(), errmsg("could not rewind hash-join temporary file"))); |