hi people :) i want to ask.. is there anyone using pgxn? Im trying to load an extension.. but it seems its loaded to postgres but not loaded to the database that i want.. why? should it load globally if I do pgxn load? how im doing: $ psql -U postgres hb-db -c "SELECT h3_lat_lng_to_cell(POINT('37.3615593,-122.0553238'), 5);" ERROR: function h3_lat_lng_to_cell(point, integer) does not exist LINE 1: SELECT h3_lat_lng_to_cell(POINT('37.3615593,-122.0553238'), ... ^ HINT: No function matches the given name and argument types. You might need to add explicit type casts. $ psql -U postgres -c "SELECT h3_lat_lng_to_cell(POINT('37.3615593,-122.0553238'), 5);" h3_lat_lng_to_cell -------------------- 85e35e73fffffff (1 row)