* process any libraries that should be preloaded at postmaster start */
| 1886 | * process any libraries that should be preloaded at postmaster start |
| 1887 | */ |
| 1888 | void |
| 1889 | process_shared_preload_libraries(void) |
| 1890 | { |
| 1891 | process_shared_preload_libraries_in_progress = true; |
| 1892 | |
| 1893 | char *libraries = expand_shared_preload_libraries_string(); |
| 1894 | load_libraries(libraries, |
| 1895 | "shared_preload_libraries", |
| 1896 | false); |
| 1897 | if (libraries != NULL) |
| 1898 | { |
| 1899 | pfree(libraries); |
| 1900 | } |
| 1901 | |
| 1902 | process_shared_preload_libraries_in_progress = false; |
| 1903 | process_shared_preload_libraries_done = true; |
| 1904 | } |
| 1905 | |
| 1906 | /* |
| 1907 | * process any libraries that should be preloaded at backend start |
no test coverage detected