PostgreSQL
 sql >> Baza danych >  >> RDS >> PostgreSQL

Dlaczego używanie tego samego pola, gdy filtrowanie powoduje inny czas wykonania? (różne wykorzystanie indeksu)

Jako obejście problemu możemy dodatkowo SELECT alias dla kolumny używanej w PARTITION BY wyrażenie. Następnie PG zastosuje optymalizację i użyj indeksu.

Odpowiedź na pytanie może brzmieć:PG nie stosuje optymalizacji, jeśli używany jest typ złożony . Zauważ, jak to działa:

PARTITION | FILTER | IS USED?
------------------------------
ALIAS     | ORIG   | NO
ALIAS     | ALIAS  | YES
ORIG      | ALIAS  | NO
ORIG      | ORIG   | NO

Zobacz ten dbfiddle

create table agreement ( ag_id int, name text, cost numeric(10,2) );
create index ag_idx on agreement (ag_id);
insert into agreement (ag_id, name, cost) values ( 1, '333', 22 ),
(1,'333', 33), (1, '333', 7), (2, '555', 18 ), (2, '555', 2), (3, '777', 4);
select * from agreement;

create function initial () 
returns table( agreement_id int, ag agreement ) language sql stable AS $$
select ag_id, t from agreement t;
$$;
select * from initial() t;

explain( analyze, costs, buffers, verbose ) with totals_by_ag as (
  select 
    *,
    sum( (t.ag).cost ) over ( partition by agreement_id ) as total
  from initial() t
)
select * from totals_by_ag t
where (t.ag).ag_id = 1; -- index is NOT USED

explain( analyze, costs, buffers, verbose ) with totals_by_ag as (
  select 
    *,
    sum( (t.ag).cost ) over ( partition by agreement_id ) as total
  from initial() t
)
select * from totals_by_ag t
where agreement_id = 1; -- index is used when alias for column is used

explain( analyze, costs, buffers, verbose ) with totals_by_ag as (
  select 
    *,
    sum( (t.ag).cost ) over ( partition by (t.ag).ag_id ) as total --renamed
  from initial() t
)
select * from totals_by_ag t
where agreement_id = 1; -- index is NOT USED because grouping by original column

explain( analyze, costs, buffers, verbose ) with totals_by_ag as (
  select 
    *,
    sum( (t.ag).cost ) over ( partition by (t.ag).ag_id ) as total --renamed
  from initial() t
)
select * from totals_by_ag t
where (t.ag).ag_id = 1; -- index is NOT USED even if at both cases original column




  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. PostgreSQL jak stworzyć kopię bazy danych lub schematu?

  2. JDBC COPY z mrówką

  3. czy polecenie \copy obsługuje zatwierdzanie i cofanie zmian w postgresie?

  4. Jak ustawić pole bazy danych dopuszczające wartość null na NULL za pomocą typeorm?

  5. Aktualizacja Postgres z wewnętrznym sprzężeniem na 2 stołach?