You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,8 @@ Modify the **`shared_preload_libraries`** parameter in `postgresql.conf` as foll
66
66
```
67
67
shared_preload_libraries = 'pg_pathman'
68
68
```
69
+
>**Important:**`pg_pathman` may have conflicts with some other extensions which uses the same hook functions. For example,`pg_pathman` uses`ProcessUtility_hook` hook to handle COPY queries for partitioned tables. And it could sometimes interfere with`pg_stat_statements` extension which uses the same hook. In this case try to list libraries in certain order:`shared_preload_libraries = 'pg_pathman, pg_stat_statements'`
70
+
69
71
It is essential to restart the PostgreSQL instance. After that, execute the following query in psql: