mirror of
https://github.com/postgres/postgres.git
synced 2026-06-08 16:26:30 -04:00
Fix accidentally casting away const
Recently introduced in commit 4b5ba0c4ca.
This commit is contained in:
parent
1c162c965a
commit
6bc7449eac
1 changed files with 1 additions and 1 deletions
|
|
@ -11187,7 +11187,7 @@ fetchAttributeStats(Archive *fout)
|
|||
|
||||
if (fout->remoteVersion >= 190000)
|
||||
{
|
||||
RelStatsInfo *rsinfo = (RelStatsInfo *) te->defnDumperArg;
|
||||
const RelStatsInfo *rsinfo = (const RelStatsInfo *) te->defnDumperArg;
|
||||
char relid[32];
|
||||
|
||||
sprintf(relid, "%u", rsinfo->relid);
|
||||
|
|
|
|||
Loading…
Reference in a new issue