mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-12 17:37:07 +08:00
Change type of pg_statistic_ext.stxstattarget
Change from int32 to int16, to match attstattarget (changed in 90189eefc1). Reviewed-by: Tomas Vondra <tomas.vondra@enterprisedb.com> Discussion: https://www.postgresql.org/message-id/flat/d6069765-5971-04d3-c10d-e4f7b2e9c459%40eisentraut.org
This commit is contained in:
@ -57,6 +57,6 @@
|
||||
*/
|
||||
|
||||
/* yyyymmddN */
|
||||
#define CATALOG_VERSION_NO 202306141
|
||||
#define CATALOG_VERSION_NO 202307031
|
||||
|
||||
#endif
|
||||
|
||||
@ -43,7 +43,7 @@ CATALOG(pg_statistic_ext,3381,StatisticExtRelationId)
|
||||
* object's namespace */
|
||||
|
||||
Oid stxowner BKI_LOOKUP(pg_authid); /* statistics object's owner */
|
||||
int32 stxstattarget BKI_DEFAULT(-1); /* statistics target */
|
||||
int16 stxstattarget BKI_DEFAULT(-1); /* statistics target */
|
||||
|
||||
/*
|
||||
* variable-length fields start here, but we allow direct access to
|
||||
|
||||
Reference in New Issue
Block a user