I'm using (the quite nice) tutorial from
http://cjauvin.blogspot.fi/2013/05/impossibly-lean-audit-system-for.html
for making a simple audit trigger in my PostgreSQL 9.6 DB. I'm however trying to make a separate "audit"-schema for it so I created it and modified the table names, installed the hstore extension etc.
However, when I cause a trigger to fire on my public.product table, I get a
ERROR: function hstore(product) does not exist.
I tried to create the hstore extension in the public schema also in case the execution context was from there but I get a "already enabled"-error. One strange thing though is that in NaviCat I see the hstore functions in the audit-schema but not in the public one. The schema concept is still a bit fuzzy for me
Pointers appreciated and thanks in advance, Nik