-
- Downloads
Add missing_ok option to the SQL functions for reading files.
This makes it possible to use the functions without getting errors, if there is a chance that the file might be removed or renamed concurrently. pg_rewind needs to do just that, although this could be useful for other purposes too. (The changes to pg_rewind to use these functions will come in a separate commit.) The read_binary_file() function isn't very well-suited for extensions.c's purposes anymore, if it ever was. So bite the bullet and make a copy of it in extension.c, tailored for that use case. This seems better than the accidental code reuse, even if it's a some more lines of code. Michael Paquier, with plenty of kibitzing by me.
Showing
- doc/src/sgml/func.sgml 31 additions, 11 deletionsdoc/src/sgml/func.sgml
- src/backend/commands/extension.c 56 additions, 13 deletionssrc/backend/commands/extension.c
- src/backend/utils/adt/genfile.c 168 additions, 69 deletionssrc/backend/utils/adt/genfile.c
- src/include/catalog/catversion.h 1 addition, 1 deletionsrc/include/catalog/catversion.h
- src/include/catalog/pg_proc.h 12 additions, 4 deletionssrc/include/catalog/pg_proc.h
- src/include/utils/builtins.h 4 additions, 2 deletionssrc/include/utils/builtins.h
Loading
Please register or sign in to comment