add batch remove batch split batch comment selection show hidden batches hide batch highlight batch
db<>fiddle
donate feedback about
By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
Help with an interesting Postgres question: Why isn't an Index Only Scan used on a partition accessed via the parent table?.
40 rows affected
440 rows affected
ticker ts price_interval0 price_interval1
ticker_4 2022-04-20 00:00:00 33950 18084
ticker_4 2022-04-20 00:00:10 38083 92679
ticker_4 2022-04-20 00:00:20 52250 99197
ticker_4 2022-04-20 00:00:30 61896 51184
ticker_4 2022-04-20 00:00:40 10916 48816
ticker_4 2022-04-20 00:00:50 19521 99963
ticker_4 2022-04-20 00:01:00 95477 77455
ticker_4 2022-04-20 00:01:10 81277 53579
ticker_4 2022-04-20 00:01:20 4843 77822
ticker_4 2022-04-20 00:01:30 26325 88867
the_date timeslot ticker_id price_interval0 price_interval1
2022-04-20 0 3 14502 58847
2022-04-20 1 3 50699 96424
2022-04-20 2 3 55588 63704
2022-04-20 3 3 85787 7870
2022-04-20 4 3 92590 22041
2022-04-20 5 3 37538 6216
QUERY PLAN
Index Scan using tbl_pkey on tbl (cost=8.44..16.46 rows=1 width=16)
  Index Cond: ((ticker_id = $0) AND (ROW(the_date, timeslot) >= ROW('2022-04-20'::date, 0)) AND (ROW(the_date, timeslot) < ROW('2022-04-20'::date, 6)))
  InitPlan 1 (returns $0)
    -> Index Scan using ticker_ticker_key on ticker (cost=0.15..8.17 rows=1 width=2)
          Index Cond: (ticker = 'ticker_3'::text)
the_date timeslot ticker_id price_interval0 price_interval1
2022-04-20 0 3 14502 58847
2022-04-20 1 3 50699 96424
2022-04-20 2 3 55588 63704
2022-04-20 3 3 85787 7870
2022-04-20 4 3 92590 22041
2022-04-20 5 3 37538 6216
QUERY PLAN
Index Scan using tbl_pkey on tbl (cost=0.27..8.29 rows=1 width=16)
  Index Cond: ((ticker_id = 3) AND (ROW(the_date, timeslot) >= ROW('2022-04-20'::date, 0)) AND (ROW(the_date, timeslot) < ROW('2022-04-20'::date, 6)))
QUERY PLAN
Sort (cost=8.32..8.32 rows=1 width=16)
  Sort Key: the_date, timeslot
  -> Index Scan using tbl_pkey on tbl (cost=0.27..8.31 rows=1 width=16)
        Index Cond: ((ticker_id = 3) AND (ROW(the_date, timeslot) >= ROW('2022-04-20'::date, 0)) AND (ROW(the_date, timeslot) < ROW('2022-04-20'::date, 6)))
QUERY PLAN
Index Scan using tbl_pkey on tbl (cost=0.27..8.90 rows=1 width=16)
  Index Cond: ((ROW(the_date, timeslot) >= ROW('2022-04-20'::date, 0)) AND (ROW(the_date, timeslot) < ROW('2022-04-20'::date, 6)) AND (ticker_id = 3))