[HACKERS] [PATCH] fix typo in commit a4523c5 - Mailing list pgsql-hackers

From Nikita Glukhov
Subject [HACKERS] [PATCH] fix typo in commit a4523c5
Date
Msg-id 8b70135d-ad38-bdd8-ac92-71e2b3c273cf@postgrespro.ru
Whole thread Raw
Responses Re: [HACKERS] [PATCH] fix typo in commit a4523c5  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
Attached patch fixes typo in regression test src/test/regress/sql/create_index.sql
that was introduced in commit a4523c5
("Improve planning of btree index scans using ScalarArrayOpExpr quals.").

In this commit the following lines were added to create_index.sql:

SET enable_indexonlyscan = OFF;
...
RESET enable_indexscan;


Obviously, the last line should be

RESET enable_indexonlyscan;

-- 
Nikita Glukhov
Postgres Professional: http://www.postgrespro.com
The Russian Postgres Company


-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

Attachment

pgsql-hackers by date:

Previous
From: Peter Eisentraut
Date:
Subject: Re: [HACKERS] Re: Clarifying "server starting" messaging in pg_ctlstart without --wait
Next
From: Andres Freund
Date:
Subject: Re: [HACKERS] Implement targetlist SRFs using ROWS FROM() (was Changed SRF in targetlist handling)