mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Fix printf format
This commit is contained in:
@ -459,7 +459,7 @@ tuple_data_split(PG_FUNCTION_ARGS)
|
|||||||
if (t_bits_str)
|
if (t_bits_str)
|
||||||
ereport(ERROR,
|
ereport(ERROR,
|
||||||
(errcode(ERRCODE_DATA_CORRUPTED),
|
(errcode(ERRCODE_DATA_CORRUPTED),
|
||||||
errmsg("t_bits string is expected to be NULL, but instead it is %lu bytes length",
|
errmsg("t_bits string is expected to be NULL, but instead it is %zu bytes length",
|
||||||
strlen(t_bits_str))));
|
strlen(t_bits_str))));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user