mirror of
https://github.com/postgres/postgres.git
synced 2026-03-03 05:40:43 -05:00
Fix printf format
This commit is contained in:
parent
93c301fc4f
commit
8b737f9084
1 changed files with 1 additions and 1 deletions
|
|
@ -459,7 +459,7 @@ tuple_data_split(PG_FUNCTION_ARGS)
|
|||
if (t_bits_str)
|
||||
ereport(ERROR,
|
||||
(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))));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue