You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
EXPLAIN (FORMAT TEXT, ANALYZE, VERBOSE)
WITH pgrst_source AS
(SELECT"public"."big_table".*FROM"public"."big_table") ,
pgrst_source_count AS
(SELECT1FROM"public"."big_table")
SELECT
(SELECTpg_catalog.count(*) FROM pgrst_source_count) AS total_result_set,
pg_catalog.count(_postgrest_t) AS page_total,
''::textAS body,
nullif(current_setting('response.headers', TRUE), '') AS response_headers,
nullif(current_setting('response.status', TRUE), '') AS response_status,
''AS response_inserted
FROM
(SELECT*FROM pgrst_source) _postgrest_t
EXPLAIN (FORMAT TEXT, ANALYZE, VERBOSE)
WITH pgrst_source AS
(SELECT"public"."big_table".*FROM"public"."big_table"LIMIT0 OFFSET 0) ,
pgrst_source_count AS
(SELECT1FROM"public"."big_table")
SELECT
(SELECTpg_catalog.count(*) FROM pgrst_source_count) AS total_result_set,
pg_catalog.count(_postgrest_t) AS page_total,
''::textAS body,
nullif(current_setting('response.headers', TRUE), '') AS response_headers,
nullif(current_setting('response.status', TRUE), '') AS response_status,
''AS response_inserted
FROM
(SELECT*FROM pgrst_source) _postgrest_t
steve-chavez
changed the title
Prefer: count=exact optimization on HEAD request when db-max-rows is setPrefer: count=exact optimization on HEAD request
Mar 19, 2025
Uh oh!
There was an error while loading. Please reload this page.
Originally posted by @laurenceisla in #2849
See possible solution on #2849 (comment)
The text was updated successfully, but these errors were encountered: