]> granicus.if.org Git - postgresql/commit
When index recurses to a partition, map columns numbers
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Fri, 22 Jun 2018 19:12:53 +0000 (15:12 -0400)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Fri, 22 Jun 2018 20:45:48 +0000 (16:45 -0400)
commit475be5e790e2db4c5c18a2d378c4498ffccb6289
treefdb4e794350c714d72b9153808cb1af4109009a1
parentc6f28af5d7af87d7370e5f169251d91437f100a2
When index recurses to a partition, map columns numbers

Two out of three code paths were mapping column numbers correctly if a
partition had different column numbers than parent table, but the most
commonly used one (recursing in CREATE INDEX to a new index on a
partition) failed to map attribute numbers in expressions.  Oddly
enough, attnums in WHERE clauses are already handled correctly
everywhere.

Reported-by: Amit Langote
Author: Amit Langote
Discussion: https://postgr.es/m/dce1fda4-e0f0-94c9-6abb-f5956a98c057@lab.ntt.co.jp
Reviewed-by: Álvaro Herrera
src/backend/commands/indexcmds.c
src/test/regress/expected/indexing.out
src/test/regress/sql/indexing.sql