Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pljava-so/src/main/c/type/byte_array.c
Original file line numberDiff line numberDiff line change
Expand Up@@ -54,7 +54,7 @@ static Datum _byte_array_coerceObject(Type self, jobject byteArray)
ereport(ERROR, (
errcode(ERRCODE_PROGRAM_LIMIT_EXCEEDED),
errmsg("cannot accommodate reported Blob length " INT64_FORMAT,
length)
(int64_t)length)
));
}
byteArray =
Expand Down
Loading