https://github.com/postgres/postgres
Revision 7cadaac5130ec60d905c5ad69af98056b54c4e37 authored by John Naylor on 18 August 2022, 01:57:13 UTC, committed by John Naylor on 18 August 2022, 02:10:39 UTC
The table column that stores this is of type oid, but is actually limited
to uint16 and has a different path for creating new values. Some of
the documentation already referred to it as an ID, so let's standardize
on that.

While at it, most format strings already use %u, so for consintency
change the remaining stragglers using %d.

Per suggestions from Tom Lane and Justin Pryzby
Discussion: https://www.postgresql.org/message-id/3437166.1659620465%40sss.pgh.pa.us
Backpatch to v15
1 parent 522ae01
Raw File
Tip revision: 7cadaac5130ec60d905c5ad69af98056b54c4e37 authored by John Naylor on 18 August 2022, 01:57:13 UTC
Refer to replication origin roident as "ID" in user facing messages and docs
Tip revision: 7cadaac
.gitignore
# Global excludes across all subdirectories
*.o
*.obj
*.bc
*.so
*.so.[0-9]
*.so.[0-9].[0-9]
*.so.[0-9].[0-9][0-9]
*.sl
*.sl.[0-9]
*.sl.[0-9].[0-9]
*.sl.[0-9].[0-9][0-9]
*.dylib
*.dll
*.exp
*.a
*.mo
*.pot
objfiles.txt
.deps/
*.gcno
*.gcda
*.gcov
*.gcov.out
lcov*.info
coverage/
coverage-html-stamp
*.vcproj
*.vcxproj
win32ver.rc
*.exe
lib*dll.def
lib*.pc

# Local excludes in root directory
/GNUmakefile
/config.cache
/config.log
/config.status
/pgsql.sln
/pgsql.sln.cache
/Debug/
/Release/
/tmp_install/
back to top