[PATCH] fix typo in commit a4523c5

From: Nikita Glukhov <n(dot)gluhov(at)postgrespro(dot)ru>
To: PostgreSQL mailing lists <pgsql-hackers(at)postgresql(dot)org>
Subject: [PATCH] fix typo in commit a4523c5
Date: 2017-01-18 20:01:54
Message-ID: 8b70135d-ad38-bdd8-ac92-71e2b3c273cf@postgrespro.ru
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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

Attachment Content-Type Size
fix-typo-in-commit-a4523c5.patch text/x-patch 872 bytes

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Andres Freund 2017-01-18 20:11:47 Re: Implement targetlist SRFs using ROWS FROM() (was Changed SRF in targetlist handling)
Previous Message Peter Eisentraut 2017-01-18 20:01:13 Re: Re: Clarifying "server starting" messaging in pg_ctl start without --wait