We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21f428e commit 2e81050Copy full SHA for 2e81050
src/backend/utils/adt/pg_lsn.c
@@ -53,7 +53,7 @@ pg_lsn_in_internal(const char *str, bool *have_error)
53
off = (uint32) strtoul(str + len1 + 1, NULL, 16);
54
result = ((uint64) id << 32) | off;
55
56
- PG_RETURN_LSN(result);
+ return result;
57
}
58
59
Datum
0 commit comments