Обсуждение: [HACKERS] [PATCH] fix typo in commit a4523c5

Поиск
Список
Период
Сортировка

[HACKERS] [PATCH] fix typo in commit a4523c5

От
Nikita Glukhov
Дата:
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

Вложения

Re: [HACKERS] [PATCH] fix typo in commit a4523c5

От
Tom Lane
Дата:
Nikita Glukhov <n.gluhov@postgrespro.ru> writes:
> Obviously, the last line should be
> RESET enable_indexonlyscan;

Yeah, I think you're right.  Pushed, thanks!
        regards, tom lane