Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit2bdfcb5

Browse files
committed
Fix TupleQueueReaderNext not to ignore its nowait argument.
This was a silly goof on my (rhaas's) part.Report and fix by Rushabh Lathia.
1 parent4496226 commit2bdfcb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/backend/executor/tqueue.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ TupleQueueReaderNext(TupleQueueReader *reader, bool nowait, bool *done)
535535
void*data;
536536

537537
/* Attempt to read a message. */
538-
result=shm_mq_receive(reader->queue,&nbytes,&data,true);
538+
result=shm_mq_receive(reader->queue,&nbytes,&data,nowait);
539539

540540
/* If queue is detached, set *done and return NULL. */
541541
if (result==SHM_MQ_DETACHED)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp