@@ -1032,7 +1032,7 @@ statext_mcv_deserialize(bytea *data)
10321032 * header fields one by one, so we need to ignore struct alignment.
10331033 */
10341034 if (VARSIZE_ANY (data ) < MinSizeOfMCVList )
1035- elog (ERROR , "invalid MCV size %zd (expected at least %zu)" ,
1035+ elog (ERROR , "invalid MCV size %zu (expected at least %zu)" ,
10361036 VARSIZE_ANY (data ), MinSizeOfMCVList );
10371037
10381038 /* read the MCV list header */
@@ -1093,7 +1093,7 @@ statext_mcv_deserialize(bytea *data)
10931093 * to do this check first, before accessing the dimension info.
10941094 */
10951095 if (VARSIZE_ANY (data ) < expected_size )
1096- elog (ERROR , "invalid MCV size %zd (expected %zu)" ,
1096+ elog (ERROR , "invalid MCV size %zu (expected %zu)" ,
10971097 VARSIZE_ANY (data ), expected_size );
10981098
10991099 /* Now copy the array of type Oids. */
@@ -1125,7 +1125,7 @@ statext_mcv_deserialize(bytea *data)
11251125 * check on size.
11261126 */
11271127 if (VARSIZE_ANY (data ) != expected_size )
1128- elog (ERROR , "invalid MCV size %zd (expected %zu)" ,
1128+ elog (ERROR , "invalid MCV size %zu (expected %zu)" ,
11291129 VARSIZE_ANY (data ), expected_size );
11301130
11311131 /*
0 commit comments