BIOHAZARD
BIOHAZARD
Also in index.c On line 37 AND ```c.relispartition=FALSE``` ``` query = psprintf("SELECT c.oid, n.nspname, c.relname, t.spcname AS tablespacename, pg_get_indexdef(c.oid) AS indexdef, array_to_string(c.reloptions, ', ') AS reloptions, obj_description(c.oid, 'pg_class') AS description...
Hm actually now it includes 2 fixes: First 3 commit for this issue https://github.com/eulerto/pgquarrel/issues/97 Last 1 commit for this issue https://github.com/eulerto/pgquarrel/issues/98
In last commit table-partition option has more optimized query and only works on specific pg version
@grzegorzk did you solve this case? I have similar issue: ```table_child``` references ```table_parent``` with foreign key but ```table_child``` is created first and then ```table_parent```
Actually **if** you want to schedule jobs in multiple databases here is simple setup: 1. ``` CREATE DATABASE pg_cron ``` 2. postgresql.conf: ``` shared_preload_libraries = 'pg_cron' cron.database_name = 'pg_cron' #...
PostgreSQL 12.4 Ubuntu (Windows WSL) /etc/postgresql/12/main/pg_hba.conf Only changing this to: ``` # IPv4 local connections: host all all 127.0.0.1/32 md5 ``` This ``` # IPv4 local connections: host all all...
Can you provide var_export dump please ?
@llagerlof yes, but for this repo basically never accepted : D (changes where not relevant)
It is funny how I googled whole internet and then just in case checked in issues, thank you ```return full_code``` works for me instead of ```return full_code.encode('utf-8')``` because of ```TypeError:...