[HACKERS] [PATCH] fix typo in commit a4523c5

Поиск
Список
Период
Сортировка
От Nikita Glukhov
Тема [HACKERS] [PATCH] fix typo in commit a4523c5
Дата
Msg-id 8b70135d-ad38-bdd8-ac92-71e2b3c273cf@postgrespro.ru
обсуждение исходный текст
Ответы Re: [HACKERS] [PATCH] fix typo in commit a4523c5  (Tom Lane <tgl@sss.pgh.pa.us>)
Список 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

Вложения

В списке pgsql-hackers по дате отправления:

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: Re: [HACKERS] Re: Clarifying "server starting" messaging in pg_ctlstart without --wait
Следующее
От: Andres Freund
Дата:
Сообщение: Re: [HACKERS] Implement targetlist SRFs using ROWS FROM() (was Changed SRF in targetlist handling)