mirror of
https://github.com/supabase/supabase.git
synced 2026-05-07 23:19:23 +08:00
## Context Related to Dashboard Scalability, specifically having Postgres team as CODEOWNERS for dashboard queries This is just a clean up as we're currently piling manual queries into one folder under `data/sql/queries`, whereas I reckon it'll be better for each query to sit within their RQ folder for better context. Am opting the naming format for files housing queries to be `*.sql.ts`, and also updating CODEOWNERS to reflect as such Next step will also be to shift all the dashboard queries within pg-meta into studio itself as requested by the pg-meta team <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Refactor** * Consolidated and reorganized internal module structure for the data layer to improve maintainability and reduce redundancy. * Streamlined import paths across components to align with new consolidated module organization. * **Chores** * Updated code ownership patterns to reflect reorganized file structure. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: Ali Waseem <waseema393@gmail.com>
21 lines
554 B
TypeScript
21 lines
554 B
TypeScript
import { literal } from '@supabase/pg-meta/src/pg-format'
|
|
|
|
import { sqlKeys } from '../sql/keys'
|
|
|
|
export const getLiveTupleEstimate = (table: string, schema: string = 'public') => {
|
|
const sql = /* SQL */ `
|
|
SELECT n_live_tup AS live_tuple_estimate
|
|
FROM pg_stat_user_tables
|
|
WHERE schemaname = ${literal(schema)}
|
|
AND relname = ${literal(table)};
|
|
`.trim()
|
|
|
|
return sql
|
|
}
|
|
|
|
export const getLiveTupleEstimateKey = (
|
|
projectRef: string | undefined,
|
|
table: string,
|
|
schema = 'public'
|
|
) => sqlKeys.query(projectRef, ['live-tuple-estimate', schema, table])
|