Re: Could not use index because of indcheckxmin is true

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Japin Li <japinli(at)hotmail(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Could not use index because of indcheckxmin is true
Date: 2023-10-12 14:30:02
Message-ID: 1025275.1697121002@sss.pgh.pa.us
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Japin Li <japinli(at)hotmail(dot)com> writes:
> When I create an index using CREATE INDEX (without concurrently), I get
> an index which indcheckxmin is true. According to the docs[1], it cannot
> be used with indcheckxmin is ture, how can I fix this?

There is nothing to fix; you just wait a little bit.

>> indcheckxmin bool
>> If true, queries must not use the index until the xmin of this pg_index
>> row is below their TransactionXmin event horizon, because the table may
>> contain broken HOT chains with incompatible rows that they can see

Note the "until" clause. Once transactions that ran concurrently
with the CREATE INDEX are done, the index is available for use.
There is no need for anyone to clear the indcheckxmin flag, and
AFAIR there is no code that does so.

regards, tom lane

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Japin Li 2023-10-12 15:31:26 Re: Could not use index because of indcheckxmin is true
Previous Message Japin Li 2023-10-12 07:06:17 Could not use index because of indcheckxmin is true