Fix handling of extended expression statistics in CREATE TABLE LIKE.
commit5278668d7a460d0fac3578d494c039dbc1fc5e89
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 22 May 2024 21:54:17 +0000 (22 17:54 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 22 May 2024 21:54:17 +0000 (22 17:54 -0400)
treeed6f8c90dcfa8b1e9a84667abd5bdefbdea7b4a4
parentc37267162e889fe783786b9e28d1b65b82365a00
Fix handling of extended expression statistics in CREATE TABLE LIKE.

transformTableLikeClause believed that it could process extended
statistics immediately because "the representation of CreateStatsStmt
doesn't depend on column numbers".  That was true when extended stats
were first introduced, but it was falsified by the addition of
extended stats on expressions: the parsed expression tree is fed
forward by the LIKE option, and that will contain Vars.  So if the
new table doesn't have attnums identical to the old one's (typically
because there are some dropped columns in the old one), that doesn't
work.  The CREATE goes through, but it emits invalid statistics
objects that will cause problems later.

Fortunately, we already have logic that can adapt expression trees
to the possibly-new column numbering.  To use it, we have to delay
processing of CREATE_TABLE_LIKE_STATISTICS into expandTableLikeClause,
just as for other LIKE options that involve expressions.

Per bug #18468 from Alexander Lakhin.  Back-patch to v14 where
extended statistics on expressions were added.

Discussion: https://postgr.es/m/18468-f5add190e3fa5902@postgresql.org
src/backend/parser/parse_utilcmd.c
src/test/regress/expected/create_table_like.out
src/test/regress/sql/create_table_like.sql