From: | Tatsuo Ishii <ishii(at)postgresql(dot)org> |
---|---|
To: | li(dot)evan(dot)chao(at)gmail(dot)com |
Cc: | tgl(at)sss(dot)pgh(dot)pa(dot)us, pgsql-hackers(at)lists(dot)postgresql(dot)org, pramsey(at)cleverelephant(dot)ca, ojford(at)gmail(dot)com, peter(at)eisentraut(dot)org, krasiyan(at)gmail(dot)com, vik(at)postgresfriends(dot)org, andrew(at)tao11(dot)riddles(dot)org(dot)uk, david(at)fetter(dot)org |
Subject: | Re: Add RESPECT/IGNORE NULLS and FROM FIRST/LAST options |
Date: | 2025-10-20 03:58:47 |
Message-ID: | 20251020.125847.997839131426057290.ishii@postgresql.org |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
> A very trivial commit:
>
> ```
> + else
> +
> + /*
> + * For other cases we have no idea what position of row callers would
> + * fetch next time. Also for relpos < 0 case (we go backward), we
> + * cannot set mark either. For those cases we always set mark at 0.
> + */
> + mark_pos = 0;
> ```
>
> The empty line after “else” is not needed.
That was added by pgindent.
Best regards,
--
Tatsuo Ishii
SRA OSS K.K.
English: http://www.sraoss.co.jp/index_en/
Japanese:http://www.sraoss.co.jp
From | Date | Subject | |
---|---|---|---|
Next Message | Michael Paquier | 2025-10-20 04:32:44 | Re: [PROPOSAL] Termination of Background Workers for ALTER/DROP DATABASE |
Previous Message | jian he | 2025-10-20 03:41:39 | Re: misleading error message in ProcessUtilitySlow T_CreateStatsStmt |