benbjohnson / postlite

Postgres wire compatible SQLite proxy.
Apache License 2.0
1.21k stars 30 forks source link

Postico 2 not working #17

Open losfair opened 2 years ago

losfair commented 2 years ago

Postico 2 (2.0beta (9418)) does not work with postlite. The error is: no such function: current_schemas

The failing query:

SELECT
    oid
    ,nspname
    ,nspname = ANY (current_schemas(true)) AS is_on_search_path

     ,obj_description(oid, 'pg_namespace') AS comment

FROM pg_namespace;

Connecting with psql works fine.