mirror of
https://github.com/postgres/postgres.git
synced 2025-11-19 13:42:17 +03:00
Initial pgindent and pgperltidy run for v14.
Also "make reformat-dat-files". The only change worthy of note is that pgindent messed up the formatting of launcher.c's struct LogicalRepWorkerId, which led me to notice that that struct wasn't used at all anymore, so I just took it out.
This commit is contained in:
@@ -307,7 +307,7 @@ byteain(PG_FUNCTION_ARGS)
|
||||
size_t len = strlen(inputText);
|
||||
uint64 dstlen = pg_hex_dec_len(len - 2);
|
||||
|
||||
bc = dstlen + VARHDRSZ; /* maximum possible length */
|
||||
bc = dstlen + VARHDRSZ; /* maximum possible length */
|
||||
result = palloc(bc);
|
||||
|
||||
bc = pg_hex_decode(inputText + 2, len - 2, VARDATA(result), dstlen);
|
||||
|
||||
Reference in New Issue
Block a user