We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5aafdf5 commit b332fbbCopy full SHA for b332fbb
1 file changed
src/sync/pg-connector.ts
@@ -436,9 +436,8 @@ ORDER BY
436
JOIN pg_user ON pg_user.usesysid = pg_stat_statements.userid
437
WHERE query not like '%pg_stat_statements%'
438
and query not like '%@qd_introspection%'
439
- and pg_user.usename not in (/* supabase */ 'supabase_admin', 'supabase_auth_admin', /* neon */ 'cloud_admin')
440
- LIMIT 10; -- @qd_introspection
441
- `; // we're excluding `pg_stat_statements` from the results since it's almost certainly unrelated
+ and pg_user.usename not in (/* supabase */ 'supabase_admin', 'supabase_auth_admin', /* neon */ 'cloud_admin'); -- @qd_introspection
+ `; // we're excluding `pg_stat_statements` from the results since it's almost certainly unrelated
442
return {
443
kind: "ok",
444
queries: results,
0 commit comments