Unnecessary call to resetPQExpBuffer in getIndexes
Hi,
I just noticed that e2c52beecd (adding PeterE in Cc) added a resetPQExpBuffer()
which seems unnecessary since the variable is untouched since the initial
createPQExpBuffer().
Simple patch attached.
Attachments:
v1-0001-Remove-unnecessary-resetPQExpBuffer-call.patchtext/plain; charset=us-asciiDownload+0-3
On Wed, Feb 09, 2022 at 10:50:07AM +0800, Julien Rouhaud wrote:
I just noticed that e2c52beecd (adding PeterE in Cc) added a resetPQExpBuffer()
which seems unnecessary since the variable is untouched since the initial
createPQExpBuffer().Simple patch attached.
LGTM
--
Nathan Bossart
Amazon Web Services: https://aws.amazon.com
On 09.02.22 19:21, Nathan Bossart wrote:
On Wed, Feb 09, 2022 at 10:50:07AM +0800, Julien Rouhaud wrote:
I just noticed that e2c52beecd (adding PeterE in Cc) added a resetPQExpBuffer()
which seems unnecessary since the variable is untouched since the initial
createPQExpBuffer().Simple patch attached.
LGTM
committed
On Thu, Feb 10, 2022 at 12:25:36PM +0100, Peter Eisentraut wrote:
On 09.02.22 19:21, Nathan Bossart wrote:
On Wed, Feb 09, 2022 at 10:50:07AM +0800, Julien Rouhaud wrote:
I just noticed that e2c52beecd (adding PeterE in Cc) added a resetPQExpBuffer()
which seems unnecessary since the variable is untouched since the initial
createPQExpBuffer().Simple patch attached.
LGTM
committed
Thanks!