Skip to content

Commit b332fbb

Browse files
committed
remove limit
1 parent 5aafdf5 commit b332fbb

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

src/sync/pg-connector.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -436,9 +436,8 @@ ORDER BY
436436
JOIN pg_user ON pg_user.usesysid = pg_stat_statements.userid
437437
WHERE query not like '%pg_stat_statements%'
438438
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
439+
and pg_user.usename not in (/* supabase */ 'supabase_admin', 'supabase_auth_admin', /* neon */ 'cloud_admin'); -- @qd_introspection
440+
`; // we're excluding `pg_stat_statements` from the results since it's almost certainly unrelated
442441
return {
443442
kind: "ok",
444443
queries: results,

0 commit comments

Comments
 (0)