Use simplified query when ingesting pipelines with a single worker

What does this MR do and why?

This MR optimizes the ClickHouse pipeline ingestion process by introducing a simplified query path when using a single worker, addressing timeout issues that occur with the complex keyset iterator query.

Problem: The Ci::ClickHouse::FinishedPipelinesSyncWorker regularly experiences timeouts (ActiveRecord::QueryCanceled) due to a very complex query generated by Gitlab::Pagination::Keyset::Iterator. This query is designed to support multiple parallel workers but is overly complex for the single-worker scenario, which is sufficient for handling current peak loads on GitLab.com.

Solution: When only one worker is active, this MR switches to a simplified query using EachBatch instead of the complex keyset iterator. This provides:

  • Significantly simpler query execution
  • Better performance and reduced timeout risk
  • More headroom for handling peak loads

The change is controlled by the use_simplified_query_for_ch_pipeline_ingestion feature flag, ensuring safe rollout and easy rollback if needed.

References

Implementation Details

Code Changes:

  1. Added use_simplified_query_for_ch_pipeline_ingestion? method to detect single-worker scenarios with feature flag enabled
  2. Modified csv_batches to conditionally use either:
    • Simple scope.each_batch for single worker (new path)
    • keyset_iterator_scope.each_batch for multiple workers (existing path)
  3. Extracted scope method for reusability
  4. Added feature flag definition (gitlab_com_derisk type, default disabled)

Testing:

  • Comprehensive test coverage for both query paths
  • Verification that both approaches produce identical results
  • Tests for single worker, multiple workers, and feature flag states
  • Batch processing validation

How to set up and validate locally

  1. Enable the feature flag: Feature.enable(:use_simplified_query_for_ch_pipeline_ingestion)

  2. Disable the worker so that we can test it manually:

    diff --git a/app/workers/ci/click_house/finished_pipelines_sync_worker.rb b/app/workers/ci/click_house/finished_pipelines_sync_worker.rb
    index f0e09eed23c7..06359c0e6cae 100644
    --- a/app/workers/ci/click_house/finished_pipelines_sync_worker.rb
    +++ b/app/workers/ci/click_house/finished_pipelines_sync_worker.rb
    @@ -14,12 +14,12 @@ class FinishedPipelinesSyncWorker
           loggable_arguments 1, 2
     
           def perform(worker_index = 0, total_workers = 1)
    -        response = ::Ci::ClickHouse::DataIngestion::FinishedPipelinesSyncService.new(
    -          worker_index: worker_index, total_workers: total_workers
    -        ).execute
    -
    -        result = response.success? ? response.payload : response.deconstruct_keys(%i[message reason])
    -        log_extra_metadata_on_done(:result, result)
    +        # response = ::Ci::ClickHouse::DataIngestion::FinishedPipelinesSyncService.new(
    +        #   worker_index: worker_index, total_workers: total_workers
    +        # ).execute
    +        #
    +        # result = response.success? ? response.payload : response.deconstruct_keys(%i[message reason])
    +        # log_extra_metadata_on_done(:result, result)
           end
         end
       end
    
  3. Reload Sidekiq with gdk restart rails-background-jobs

  4. Go to the shell in your GDK gitlab directory and run bundle exec rake "gitlab:seed:runner_fleet". This will seed your GDK with some runners and jobs required for testing this MR.

  5. Check the query generated for a single worker:

    Ci::ClickHouse::DataIngestion::FinishedPipelinesSyncService.new(total_workers: 1).execute
      Ci::FinishedPipelineChSyncEvent Load (1.2ms)  SELECT "p_ci_finished_pipeline_ch_sync_events"."pipeline_id" FROM "p_ci_finished_pipeline_ch_sync_events" WHERE "p_ci_finished_pipeline_ch_sync_events"."processed" = FALSE ORDER BY "p_ci_finished_pipeline_ch_sync_events"."pipeline_id" ASC LIMIT 1 /*application:web,db_config_database:gitlabhq_development_ci,db_config_name:ci,console_hostname:ppombeiro--20250304-T47MJ,console_username:pedropombeiro,line:/app/models/concerns/each_batch.rb:65:in `each_batch'*/
      Ci::FinishedPipelineChSyncEvent Load (0.2ms)  SELECT "p_ci_finished_pipeline_ch_sync_events"."pipeline_id" FROM "p_ci_finished_pipeline_ch_sync_events" WHERE "p_ci_finished_pipeline_ch_sync_events"."processed" = FALSE AND "p_ci_finished_pipeline_ch_sync_events"."pipeline_id" >= 124847 ORDER BY "p_ci_finished_pipeline_ch_sync_events"."pipeline_id" ASC LIMIT 1 OFFSET 500 /*application:web,db_config_database:gitlabhq_development_ci,db_config_name:ci,console_hostname:ppombeiro--20250304-T47MJ,console_username:pedropombeiro,line:/app/models/concerns/each_batch.rb:84:in `block in each_batch'*/
      Ci::FinishedPipelineChSyncEvent Load (0.6ms)  SELECT "p_ci_finished_pipeline_ch_sync_events"."pipeline_id", "p_ci_finished_pipeline_ch_sync_events"."project_namespace_id", "p_ci_finished_pipeline_ch_sync_events"."pipeline_finished_at", "p_ci_finished_pipeline_ch_sync_events"."processed" FROM "p_ci_finished_pipeline_ch_sync_events" WHERE "p_ci_finished_pipeline_ch_sync_events"."processed" = FALSE AND "p_ci_finished_pipeline_ch_sync_events"."pipeline_id" >= 124847 AND "p_ci_finished_pipeline_ch_sync_events"."pipeline_id" < 125487 /*application:web,db_config_database:gitlabhq_development_ci,db_config_name:ci,console_hostname:ppombeiro--20250304-T47MJ,console_username:pedropombeiro,line:/app/services/ci/click_house/data_ingestion/finished_pipelines_sync_service.rb:151:in `yield_pipelines'*/
  6. Run bundle exec rake "gitlab:seed:runner_fleet" again to generate some more pipelines.

  7. Check the query generated for multiple workers:

    Ci::ClickHouse::DataIngestion::FinishedPipelinesSyncService.new(total_workers: 2).execute
      Ci::FinishedPipelineChSyncEvent Load (1.7ms)  SELECT * FROM (WITH RECURSIVE "array_cte" AS MATERIALIZED (SELECT "pipeline_id_partition" FROM generate_series(0, 49) as "p_ci_finished_pipeline_ch_sync_events"(pipeline_id_partition)), "recursive_keyset_cte" AS ((SELECT NULL::bigint AS pipeline_id, NULL::bigint AS project_namespace_id, array_cte_pipeline_id_partition_array, p_ci_finished_pipeline_ch_sync_events_pipeline_id_array, p_ci_finished_pipeline_ch_sync_events_project_namespace_id_array, 0::bigint AS count FROM (SELECT ARRAY_AGG("array_cte"."pipeline_id_partition") AS array_cte_pipeline_id_partition_array, ARRAY_AGG("p_ci_finished_pipeline_ch_sync_events"."pipeline_id") AS p_ci_finished_pipeline_ch_sync_events_pipeline_id_array, ARRAY_AGG("p_ci_finished_pipeline_ch_sync_events"."project_namespace_id") AS p_ci_finished_pipeline_ch_sync_events_project_namespace_id_array FROM (SELECT "array_cte"."pipeline_id_partition" FROM array_cte) array_cte LEFT JOIN LATERAL (SELECT "p_ci_finished_pipeline_ch_sync_events"."pipeline_id" AS pipeline_id, "p_ci_finished_pipeline_ch_sync_events"."project_namespace_id" AS project_namespace_id FROM "p_ci_finished_pipeline_ch_sync_events" WHERE "p_ci_finished_pipeline_ch_sync_events"."processed" = FALSE AND (pipeline_id % 100) = "array_cte"."pipeline_id_partition" ORDER BY "p_ci_finished_pipeline_ch_sync_events"."pipeline_id" ASC, "p_ci_finished_pipeline_ch_sync_events"."project_namespace_id" ASC LIMIT 1) p_ci_finished_pipeline_ch_sync_events ON TRUE WHERE "p_ci_finished_pipeline_ch_sync_events"."pipeline_id" IS NOT NULL AND "p_ci_finished_pipeline_ch_sync_events"."project_namespace_id" IS NOT NULL) array_scope_lateral_query LIMIT 1)
    UNION ALL
    (SELECT recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array[position], recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_array[position], array_cte_pipeline_id_partition_array, recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array[:position_query.position-1]||next_cursor_values.pipeline_id||recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array[position_query.position+1:], recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_array[:position_query.position-1]||next_cursor_values.project_namespace_id||recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_array[position_query.position+1:], recursive_keyset_cte.count + 1 FROM recursive_keyset_cte,
    LATERAL (SELECT pipeline_id, project_namespace_id, position FROM UNNEST(p_ci_finished_pipeline_ch_sync_events_pipeline_id_array, p_ci_finished_pipeline_ch_sync_events_project_namespace_id_array) WITH ORDINALITY AS u(pipeline_id, project_namespace_id, position) WHERE pipeline_id IS NOT NULL AND project_namespace_id IS NOT NULL ORDER BY 1 ASC, 2 ASC LIMIT 1) AS position_query,
    LATERAL (SELECT "record"."pipeline_id", "record"."project_namespace_id" FROM (VALUES (NULL, NULL)) AS nulls LEFT JOIN (SELECT "p_ci_finished_pipeline_ch_sync_events"."pipeline_id" AS pipeline_id, "p_ci_finished_pipeline_ch_sync_events"."project_namespace_id" AS project_namespace_id FROM "p_ci_finished_pipeline_ch_sync_events" WHERE "p_ci_finished_pipeline_ch_sync_events"."processed" = FALSE AND (pipeline_id % 100) = recursive_keyset_cte.array_cte_pipeline_id_partition_array[position] AND (("p_ci_finished_pipeline_ch_sync_events"."pipeline_id", "p_ci_finished_pipeline_ch_sync_events"."project_namespace_id") > (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array[position], recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_array[position])) ORDER BY "p_ci_finished_pipeline_ch_sync_events"."pipeline_id" ASC, "p_ci_finished_pipeline_ch_sync_events"."project_namespace_id" ASC LIMIT 1) record ON TRUE LIMIT 1) AS next_cursor_values
    )) SELECT pipeline_id, project_namespace_id FROM "recursive_keyset_cte" AS "p_ci_finished_pipeline_ch_sync_events" WHERE (count <> 0)) p_ci_finished_pipeline_ch_sync_events LIMIT 500 /*application:web,db_config_database:gitlabhq_development_ci,db_config_name:ci,console_hostname:ppombeiro--20250304-T47MJ,console_username:pedropombeiro,line:/lib/gitlab/pagination/keyset/iterator.rb:26:in `block in each_batch'*/

Database query plans

NOTE: This is a time where there is a large backlog of unprocessed sync events due to an unrelated issue, so there are lots of daily partitions in the query plan as a result.

The old query (using keyset iterator) is extremely complex with recursive CTEs and multiple partition scans.

Aspect Before (Keyset Iterator) After (Simplified - Single Worker Only)
Query Pattern Recursive CTE with 100 partitions, lateral joins, array aggregations Simple WHERE processed = FALSE ORDER BY pipeline_id ASC with LIMIT/OFFSET
Execution Time ~18.3 seconds (15951-18293ms) Expected: significantly faster (~20x)
Buffer Hits 5,736,650 shared hits + 56,202 reads Expected: substantially reduced (190K shared hits + 1K reads)
WAL Activity 34,819 records, 24,323 FPI, 182MB Expected: lower
Partition Scans 100+ daily partitions via Merge Append Sequential scan with batching
Timeout Risk High - regular production timeouts Low - simple execution path
Old query (single worker)

https://console.postgres.ai/gitlab/gitlab-production-ci/sessions/45405/commands/139181

SELECT *
FROM (WITH RECURSIVE "array_cte" AS MATERIALIZED (
    SELECT "pipeline_id_partition"
    FROM generate_series(0, 99) AS "p_ci_finished_pipeline_ch_sync_events" (pipeline_id_partition)), "recursive_keyset_cte" AS ((
        SELECT NULL::bigint AS pipeline_id, NULL::bigint AS project_namespace_id, array_cte_pipeline_id_partition_array,
	  p_ci_finished_pipeline_ch_sync_events_pipeline_id_array,
	    p_ci_finished_pipeline_ch_sync_events_project_namespace_id_array, 0::bigint AS count
        FROM (
	  SELECT ARRAY_AGG("array_cte"."pipeline_id_partition") AS array_cte_pipeline_id_partition_array,
	    ARRAY_AGG("p_ci_finished_pipeline_ch_sync_events"."pipeline_id") AS
	    p_ci_finished_pipeline_ch_sync_events_pipeline_id_array,
	    ARRAY_AGG("p_ci_finished_pipeline_ch_sync_events"."project_namespace_id") AS
	    p_ci_finished_pipeline_ch_sync_events_project_namespace_id_array
          FROM (
            SELECT "array_cte"."pipeline_id_partition"
            FROM array_cte) array_cte
          LEFT JOIN LATERAL (
	    SELECT "p_ci_finished_pipeline_ch_sync_events"."pipeline_id" AS pipeline_id,
	      "p_ci_finished_pipeline_ch_sync_events"."project_namespace_id" AS project_namespace_id
            FROM "p_ci_finished_pipeline_ch_sync_events"
            WHERE "p_ci_finished_pipeline_ch_sync_events"."processed" = FALSE
              AND (pipeline_id % 100) = "array_cte"."pipeline_id_partition"
	    ORDER BY "p_ci_finished_pipeline_ch_sync_events"."pipeline_id" ASC,
	      "p_ci_finished_pipeline_ch_sync_events"."project_namespace_id" ASC
            LIMIT 1) p_ci_finished_pipeline_ch_sync_events ON TRUE
        WHERE "p_ci_finished_pipeline_ch_sync_events"."pipeline_id" IS NOT NULL
          AND "p_ci_finished_pipeline_ch_sync_events"."project_namespace_id" IS NOT NULL) array_scope_lateral_query
      LIMIT 1)
  UNION ALL (
    SELECT recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array[position],
      recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_array[position],
      array_cte_pipeline_id_partition_array,
      recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array[:position_query.position - 1] ||
      next_cursor_values.pipeline_id ||
      recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array[position_query.position + 1:],
      recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_array[:position_query.position -
	1] || next_cursor_values.project_namespace_id ||
	recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_array[position_query.position +
	1:], recursive_keyset_cte.count + 1
    FROM recursive_keyset_cte, LATERAL (
        SELECT pipeline_id, project_namespace_id, position
	FROM UNNEST(p_ci_finished_pipeline_ch_sync_events_pipeline_id_array,
	  p_ci_finished_pipeline_ch_sync_events_project_namespace_id_array)
          WITH ORDINALITY AS u (pipeline_id, project_namespace_id, position)
        WHERE pipeline_id IS NOT NULL
          AND project_namespace_id IS NOT NULL
        ORDER BY 1 ASC, 2 ASC
        LIMIT 1) AS position_query, LATERAL (
      SELECT "record"."pipeline_id", "record"."project_namespace_id"
      FROM (
        VALUES (NULL, NULL)) AS nulls
      LEFT JOIN (
	SELECT "p_ci_finished_pipeline_ch_sync_events"."pipeline_id" AS pipeline_id,
	  "p_ci_finished_pipeline_ch_sync_events"."project_namespace_id" AS project_namespace_id
        FROM "p_ci_finished_pipeline_ch_sync_events"
        WHERE "p_ci_finished_pipeline_ch_sync_events"."processed" = FALSE
          AND (pipeline_id % 100) = recursive_keyset_cte.array_cte_pipeline_id_partition_array[position]
	  AND (("p_ci_finished_pipeline_ch_sync_events"."pipeline_id",
	    "p_ci_finished_pipeline_ch_sync_events"."project_namespace_id") >
	    (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array[position],
	    recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_array[position]))
	ORDER BY "p_ci_finished_pipeline_ch_sync_events"."pipeline_id" ASC,
	  "p_ci_finished_pipeline_ch_sync_events"."project_namespace_id" ASC
        LIMIT 1) record ON TRUE
    LIMIT 1) AS next_cursor_values))
SELECT pipeline_id, project_namespace_id
FROM "recursive_keyset_cte" AS "p_ci_finished_pipeline_ch_sync_events"
WHERE (count <> 0)) p_ci_finished_pipeline_ch_sync_events
LIMIT 500
 Limit  (cost=17744.09..17746.37 rows=100 width=16) (actual time=15951.410..18293.095 rows=500 loops=1)
   Buffers: shared hit=5736650 read=56202 dirtied=24323
   WAL: records=34819 fpi=24323 bytes=182170253
   ->  CTE Scan on recursive_keyset_cte p_ci_finished_pipeline_ch_sync_events  (cost=17744.09..17746.37 rows=100 width=16) (actual time=15951.408..18292.896 rows=500 loops=1)
         Filter: (p_ci_finished_pipeline_ch_sync_events.count <> 0)
         Rows Removed by Filter: 1
         Buffers: shared hit=5736650 read=56202 dirtied=24323
         WAL: records=34819 fpi=24323 bytes=182170253
         CTE array_cte
           ->  Function Scan on generate_series p_ci_finished_pipeline_ch_sync_events_1  (cost=0.00..1.00 rows=100 width=4) (actual time=0.013..0.115 rows=100 loops=1)
         CTE recursive_keyset_cte
           ->  Recursive Union  (cost=8699.88..17743.09 rows=101 width=120) (actual time=15930.345..18289.649 rows=501 loops=1)
                 Buffers: shared hit=5736650 read=56202 dirtied=24323
                 WAL: records=34819 fpi=24323 bytes=182170253
                 ->  Limit  (cost=8699.88..8699.89 rows=1 width=120) (actual time=15930.337..15930.413 rows=1 loops=1)
                       Buffers: shared hit=2830456 read=56012 dirtied=24235
                       WAL: records=34728 fpi=24235 bytes=181477775
                       ->  Subquery Scan on array_scope_lateral_query  (cost=8699.88..8699.89 rows=1 width=120) (actual time=15930.335..15930.410 rows=1 loops=1)
                             Buffers: shared hit=2830456 read=56012 dirtied=24235
                             WAL: records=34728 fpi=24235 bytes=181477775
                             ->  Aggregate  (cost=8699.88..8699.89 rows=1 width=96) (actual time=15930.334..15930.408 rows=1 loops=1)
                                   Buffers: shared hit=2830456 read=56012 dirtied=24235
                                   WAL: records=34728 fpi=24235 bytes=181477775
                                   ->  Nested Loop  (cost=84.56..8699.12 rows=100 width=20) (actual time=3923.938..15929.965 rows=100 loops=1)
                                         Buffers: shared hit=2830456 read=56012 dirtied=24235
                                         WAL: records=34728 fpi=24235 bytes=181477775
                                         ->  CTE Scan on array_cte  (cost=0.00..2.00 rows=100 width=4) (actual time=0.014..0.410 rows=100 loops=1)
                                         ->  Subquery Scan on p_ci_finished_pipeline_ch_sync_events_2  (cost=84.56..86.96 rows=1 width=16) (actual time=159.291..159.292 rows=1 loops=100)
                                               Filter: ((p_ci_finished_pipeline_ch_sync_events_2.pipeline_id IS NOT NULL) AND (p_ci_finished_pipeline_ch_sync_events_2.project_namespace_id IS NOT NULL))
                                               Rows Removed by Filter: 0
                                               Buffers: shared hit=2830456 read=56012 dirtied=24235
                                               WAL: records=34728 fpi=24235 bytes=181477775
                                               ->  Limit  (cost=84.56..86.95 rows=1 width=16) (actual time=159.289..159.291 rows=1 loops=100)
                                                     Buffers: shared hit=2830456 read=56012 dirtied=24235
                                                     WAL: records=34728 fpi=24235 bytes=181477775
                                                     ->  Incremental Sort  (cost=84.56..225014.91 rows=94138 width=16) (actual time=159.287..159.288 rows=1 loops=100)
                                                           Sort Key: p_ci_finished_pipeline_ch_sync_events_3.pipeline_id, p_ci_finished_pipeline_ch_sync_events_3.project_namespace_id
                                                           Buffers: shared hit=2830456 read=56012 dirtied=24235
                                                           WAL: records=34728 fpi=24235 bytes=181477775
                                                           ->  Merge Append  (cost=82.21..220778.70 rows=94138 width=16) (actual time=158.846..159.261 rows=2 loops=100)
                                                                 Sort Key: p_ci_finished_pipeline_ch_sync_events_3.pipeline_id
                                                                 Buffers: shared hit=2830453 read=56012 dirtied=24235
                                                                 WAL: records=34728 fpi=24235 bytes=181477775
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6702_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6702 p_ci_finished_pipeline_ch_sync_events_4  (cost=0.25..3.27 rows=1 width=16) (actual time=0.023..0.023 rows=0 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_4.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=200 read=4 dirtied=1
                                                                       WAL: records=1 fpi=1 bytes=8193
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6703_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6703 p_ci_finished_pipeline_ch_sync_events_5  (cost=0.42..846.55 rows=610 width=16) (actual time=1.006..1.234 rows=2 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_5.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=220 read=263 dirtied=32
                                                                       WAL: records=32 fpi=32 bytes=252284
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6704_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6704 p_ci_finished_pipeline_ch_sync_events_6  (cost=0.29..3126.22 rows=329 width=16) (actual time=4.365..4.365 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_6.processed) AND ((p_ci_finished_pipeline_ch_sync_events_6.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 4800
                                                                       Buffers: shared hit=273659 read=644 dirtied=498
                                                                       WAL: records=675 fpi=498 bytes=3954386
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6705_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6705 p_ci_finished_pipeline_ch_sync_events_7  (cost=0.29..173.75 rows=141 width=16) (actual time=1.207..1.207 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_7.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=189 read=250 dirtied=103
                                                                       WAL: records=194 fpi=103 bytes=790369
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6706_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6706 p_ci_finished_pipeline_ch_sync_events_8  (cost=0.42..1735.35 rows=1430 width=16) (actual time=3.229..3.236 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_8.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=351 read=710 dirtied=536
                                                                       WAL: records=1035 fpi=536 bytes=4320614
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6707_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6707 p_ci_finished_pipeline_ch_sync_events_9  (cost=0.42..1532.78 rows=1254 width=16) (actual time=3.962..3.962 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_9.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=351 read=872 dirtied=704
                                                                       WAL: records=1299 fpi=704 bytes=5468612
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6708_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6708 p_ci_finished_pipeline_ch_sync_events_10  (cost=0.42..1379.13 rows=1131 width=16) (actual time=3.095..3.095 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_10.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=315 read=683 dirtied=512
                                                                       WAL: records=995 fpi=512 bytes=4119164
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6709_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6709 p_ci_finished_pipeline_ch_sync_events_11  (cost=0.42..485.88 rows=401 width=16) (actual time=1.752..1.752 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_11.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=296 read=378 dirtied=225
                                                                       WAL: records=427 fpi=225 bytes=1803431
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6710_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6710 p_ci_finished_pipeline_ch_sync_events_12  (cost=0.29..3603.64 rows=364 width=16) (actual time=3.334..3.334 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_12.processed) AND ((p_ci_finished_pipeline_ch_sync_events_12.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 2636
                                                                       Buffers: shared hit=178260 read=662 dirtied=202
                                                                       WAL: records=330 fpi=202 bytes=1599874
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6711_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6711 p_ci_finished_pipeline_ch_sync_events_13  (cost=0.29..74.76 rows=56 width=16) (actual time=0.593..0.593 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_13.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=186 read=145 dirtied=31
                                                                       WAL: records=50 fpi=31 bytes=203411
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6712_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6712 p_ci_finished_pipeline_ch_sync_events_14  (cost=0.29..3700.53 rows=348 width=16) (actual time=2.854..2.854 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_14.processed) AND ((p_ci_finished_pipeline_ch_sync_events_14.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 2548
                                                                       Buffers: shared hit=158096 read=631 dirtied=226
                                                                       WAL: records=392 fpi=226 bytes=1791134
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6713_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6713 p_ci_finished_pipeline_ch_sync_events_15  (cost=0.29..3082.32 rows=312 width=16) (actual time=3.152..3.152 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_15.processed) AND ((p_ci_finished_pipeline_ch_sync_events_15.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 2623
                                                                       Buffers: shared hit=151804 read=592 dirtied=471
                                                                       WAL: records=642 fpi=471 bytes=3534819
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6714_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6714 p_ci_finished_pipeline_ch_sync_events_16  (cost=0.29..77.87 rows=62 width=16) (actual time=0.583..0.583 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_16.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=199 read=145 dirtied=50
                                                                       WAL: records=84 fpi=50 bytes=388826
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6715_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6715 p_ci_finished_pipeline_ch_sync_events_17  (cost=0.42..479.76 rows=393 width=16) (actual time=1.565..1.565 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_17.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=261 read=343 dirtied=201
                                                                       WAL: records=337 fpi=201 bytes=1548423
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6716_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6716 p_ci_finished_pipeline_ch_sync_events_18  (cost=0.29..3481.55 rows=352 width=16) (actual time=3.151..3.151 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_18.processed) AND ((p_ci_finished_pipeline_ch_sync_events_18.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 2871
                                                                       Buffers: shared hit=136567 read=572 dirtied=481
                                                                       WAL: records=755 fpi=481 bytes=3792075
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6717_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6717 p_ci_finished_pipeline_ch_sync_events_19  (cost=0.29..157.04 rows=129 width=16) (actual time=0.994..0.994 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_19.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=157 read=228 dirtied=110
                                                                       WAL: records=182 fpi=110 bytes=881682
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6718_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6718 p_ci_finished_pipeline_ch_sync_events_20  (cost=0.29..109.77 rows=85 width=16) (actual time=0.811..0.811 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_20.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=192 read=180 dirtied=73
                                                                       WAL: records=140 fpi=73 bytes=588621
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6719_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6719 p_ci_finished_pipeline_ch_sync_events_21  (cost=0.29..227.01 rows=185 width=16) (actual time=1.308..1.308 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_21.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=179 read=279 dirtied=136
                                                                       WAL: records=248 fpi=136 bytes=1072150
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6720_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6720 p_ci_finished_pipeline_ch_sync_events_22  (cost=0.42..606.20 rows=504 width=16) (actual time=1.452..1.452 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_22.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=241 read=326 dirtied=163
                                                                       WAL: records=306 fpi=163 bytes=1325993
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6721_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6721 p_ci_finished_pipeline_ch_sync_events_23  (cost=0.42..519.32 rows=425 width=16) (actual time=1.406..1.406 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_23.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=227 read=301 dirtied=130
                                                                       WAL: records=252 fpi=130 bytes=1050304
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6722_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6722 p_ci_finished_pipeline_ch_sync_events_24  (cost=0.29..82.44 rows=66 width=16) (actual time=0.615..0.615 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_24.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=178 read=139 dirtied=36
                                                                       WAL: records=59 fpi=36 bytes=292454
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6723_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6723 p_ci_finished_pipeline_ch_sync_events_25  (cost=0.29..2575.47 rows=275 width=16) (actual time=2.776..2.776 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_25.processed) AND ((p_ci_finished_pipeline_ch_sync_events_25.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 1792
                                                                       Buffers: shared hit=89676 read=485 dirtied=114
                                                                       WAL: records=144 fpi=114 bytes=906992
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6724_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6724 p_ci_finished_pipeline_ch_sync_events_26  (cost=0.29..3193.81 rows=334 width=16) (actual time=2.715..2.715 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_26.processed) AND ((p_ci_finished_pipeline_ch_sync_events_26.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 1334
                                                                       Buffers: shared hit=91759 read=521 dirtied=247
                                                                       WAL: records=386 fpi=247 bytes=1891873
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6725_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6725 p_ci_finished_pipeline_ch_sync_events_27  (cost=0.42..583.27 rows=480 width=16) (actual time=1.245..1.245 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_27.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=352 read=281 dirtied=140
                                                                       WAL: records=266 fpi=140 bytes=1146124
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6726_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6726 p_ci_finished_pipeline_ch_sync_events_28  (cost=0.29..2513.45 rows=272 width=16) (actual time=1.871..1.871 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_28.processed) AND ((p_ci_finished_pipeline_ch_sync_events_28.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 861
                                                                       Buffers: shared hit=54241 read=431 dirtied=269
                                                                       WAL: records=348 fpi=269 bytes=2149441
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6727_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6727 p_ci_finished_pipeline_ch_sync_events_29  (cost=0.29..181.38 rows=148 width=16) (actual time=0.886..0.886 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_29.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=137 read=188 dirtied=66
                                                                       WAL: records=88 fpi=66 bytes=518958
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6728_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6728 p_ci_finished_pipeline_ch_sync_events_30  (cost=0.42..852.85 rows=712 width=16) (actual time=1.251..1.251 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_30.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=225 read=261 dirtied=122
                                                                       WAL: records=214 fpi=122 bytes=993806
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6729_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6729 p_ci_finished_pipeline_ch_sync_events_31  (cost=0.29..315.34 rows=262 width=16) (actual time=1.039..1.039 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_31.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=113 read=211 dirtied=78
                                                                       WAL: records=110 fpi=78 bytes=629314
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6730_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6730 p_ci_finished_pipeline_ch_sync_events_32  (cost=0.42..705.11 rows=584 width=16) (actual time=1.184..1.184 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_32.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=209 read=232 dirtied=85
                                                                       WAL: records=122 fpi=85 bytes=674185
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6731_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6731 p_ci_finished_pipeline_ch_sync_events_33  (cost=0.42..797.96 rows=661 width=16) (actual time=1.272..1.272 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_33.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=207 read=268 dirtied=92
                                                                       WAL: records=164 fpi=92 bytes=727666
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6732_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6732 p_ci_finished_pipeline_ch_sync_events_34  (cost=0.29..3011.53 rows=299 width=16) (actual time=1.914..1.914 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_34.processed) AND ((p_ci_finished_pipeline_ch_sync_events_34.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 1034
                                                                       Buffers: shared hit=71050 read=418 dirtied=222
                                                                       WAL: records=331 fpi=222 bytes=1647838
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6733_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6733 p_ci_finished_pipeline_ch_sync_events_35  (cost=0.29..295.54 rows=244 width=16) (actual time=1.028..1.028 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_35.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=112 read=197 dirtied=26
                                                                       WAL: records=44 fpi=26 bytes=210096
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6734_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6734 p_ci_finished_pipeline_ch_sync_events_36  (cost=0.29..4055.64 rows=403 width=16) (actual time=2.498..2.498 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_36.processed) AND ((p_ci_finished_pipeline_ch_sync_events_36.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 1177
                                                                       Buffers: shared hit=68910 read=549 dirtied=244
                                                                       WAL: records=372 fpi=244 bytes=1861414
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6735_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6735 p_ci_finished_pipeline_ch_sync_events_37  (cost=0.29..83.97 rows=68 width=16) (actual time=0.309..0.309 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_37.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=156 read=144 dirtied=18
                                                                       WAL: records=31 fpi=18 bytes=146616
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6736_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6736 p_ci_finished_pipeline_ch_sync_events_38  (cost=0.42..572.32 rows=452 width=16) (actual time=1.341..1.341 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_38.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=255 read=261 dirtied=95
                                                                       WAL: records=175 fpi=95 bytes=779383
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6737_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6737 p_ci_finished_pipeline_ch_sync_events_39  (cost=0.42..843.59 rows=699 width=16) (actual time=1.033..1.033 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_39.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=207 read=220 dirtied=47
                                                                       WAL: records=78 fpi=47 bytes=377643
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6738_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6738 p_ci_finished_pipeline_ch_sync_events_40  (cost=0.42..1376.53 rows=1153 width=16) (actual time=1.118..1.118 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_40.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=198 read=239 dirtied=69
                                                                       WAL: records=124 fpi=69 bytes=566407
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6739_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6739 p_ci_finished_pipeline_ch_sync_events_41  (cost=0.42..1111.33 rows=912 width=16) (actual time=1.825..1.825 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_41.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=259 read=413 dirtied=268
                                                                       WAL: records=466 fpi=268 bytes=2128260
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6740_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6740 p_ci_finished_pipeline_ch_sync_events_42  (cost=0.42..1056.79 rows=881 width=16) (actual time=0.510..0.510 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_42.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=207 read=216 dirtied=71
                                                                       WAL: records=100 fpi=71 bytes=572463
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6741_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6741 p_ci_finished_pipeline_ch_sync_events_43  (cost=0.42..1013.86 rows=830 width=16) (actual time=0.427..0.427 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_43.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=199 read=215 dirtied=30
                                                                       WAL: records=45 fpi=30 bytes=235218
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6742_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6742 p_ci_finished_pipeline_ch_sync_events_44  (cost=0.42..1255.49 rows=1009 width=16) (actual time=0.456..0.456 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_44.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=196 read=225 dirtied=40
                                                                       WAL: records=74 fpi=40 bytes=324242
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6743_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6743 p_ci_finished_pipeline_ch_sync_events_45  (cost=0.42..1017.25 rows=851 width=16) (actual time=0.745..0.745 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_45.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=217 read=282 dirtied=98
                                                                       WAL: records=181 fpi=98 bytes=774060
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6744_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6744 p_ci_finished_pipeline_ch_sync_events_46  (cost=0.42..1096.19 rows=905 width=16) (actual time=1.047..1.047 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_46.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=247 read=227 dirtied=71
                                                                       WAL: records=121 fpi=71 bytes=581305
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6745_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6745 p_ci_finished_pipeline_ch_sync_events_47  (cost=0.42..1142.13 rows=959 width=16) (actual time=0.669..0.669 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_47.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=201 read=212 dirtied=38
                                                                       WAL: records=69 fpi=38 bytes=311332
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6746_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6746 p_ci_finished_pipeline_ch_sync_events_48  (cost=0.42..621.30 rows=510 width=16) (actual time=0.254..0.254 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_48.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=205 read=207 dirtied=39
                                                                       WAL: records=53 fpi=39 bytes=308931
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6747_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6747 p_ci_finished_pipeline_ch_sync_events_49  (cost=0.29..125.02 rows=99 width=16) (actual time=0.142..0.142 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_49.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=142 read=159 dirtied=34
                                                                       WAL: records=47 fpi=34 bytes=276456
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6748_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6748 p_ci_finished_pipeline_ch_sync_events_50  (cost=0.42..689.90 rows=573 width=16) (actual time=0.383..0.383 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_50.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=213 read=208 dirtied=48
                                                                       WAL: records=83 fpi=48 bytes=392156
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6749_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6749 p_ci_finished_pipeline_ch_sync_events_51  (cost=0.29..3347.82 rows=333 width=16) (actual time=1.570..1.570 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_51.processed) AND ((p_ci_finished_pipeline_ch_sync_events_51.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 1195
                                                                       Buffers: shared hit=92378 read=571 dirtied=415
                                                                       WAL: records=467 fpi=415 bytes=3198487
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6750_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6750 p_ci_finished_pipeline_ch_sync_events_52  (cost=0.42..568.13 rows=472 width=16) (actual time=1.042..1.042 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_52.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=213 read=241 dirtied=87
                                                                       WAL: records=161 fpi=87 bytes=713961
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6751_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6751 p_ci_finished_pipeline_ch_sync_events_53  (cost=0.28..44.39 rows=35 width=16) (actual time=0.234..0.234 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_53.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=228 read=85 dirtied=25
                                                                       WAL: records=45 fpi=25 bytes=204029
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6752_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6752 p_ci_finished_pipeline_ch_sync_events_54  (cost=0.29..198.09 rows=162 width=16) (actual time=0.620..0.620 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_54.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=121 read=210 dirtied=56
                                                                       WAL: records=89 fpi=56 bytes=445190
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6753_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6753 p_ci_finished_pipeline_ch_sync_events_55  (cost=0.42..1359.56 rows=1127 width=16) (actual time=1.612..1.612 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_55.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=213 read=346 dirtied=194
                                                                       WAL: records=350 fpi=194 bytes=1594042
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6754_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6754 p_ci_finished_pipeline_ch_sync_events_56  (cost=0.42..1189.32 rows=998 width=16) (actual time=1.306..1.306 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_56.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=203 read=281 dirtied=132
                                                                       WAL: records=216 fpi=132 bytes=1074866
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6755_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6755 p_ci_finished_pipeline_ch_sync_events_57  (cost=0.42..814.78 rows=680 width=16) (actual time=1.054..1.054 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_57.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=208 read=257 dirtied=100
                                                                       WAL: records=154 fpi=100 bytes=818762
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6756_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6756 p_ci_finished_pipeline_ch_sync_events_58  (cost=0.42..1100.91 rows=918 width=16) (actual time=0.748..0.748 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_58.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=221 read=246 dirtied=78
                                                                       WAL: records=133 fpi=78 bytes=630814
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6757_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6757 p_ci_finished_pipeline_ch_sync_events_59  (cost=0.42..520.91 rows=429 width=16) (actual time=0.582..0.582 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_59.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=203 read=213 dirtied=32
                                                                       WAL: records=53 fpi=32 bytes=258460
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6758_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6758 p_ci_finished_pipeline_ch_sync_events_60  (cost=0.42..507.25 rows=421 width=16) (actual time=0.612..0.612 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_60.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=203 read=212 dirtied=30
                                                                       WAL: records=48 fpi=30 bytes=241908
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6759_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6759 p_ci_finished_pipeline_ch_sync_events_61  (cost=0.42..685.15 rows=558 width=16) (actual time=0.780..0.780 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_61.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=205 read=218 dirtied=42
                                                                       WAL: records=71 fpi=42 bytes=339008
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6760_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6760 p_ci_finished_pipeline_ch_sync_events_62  (cost=0.29..157.02 rows=128 width=16) (actual time=0.203..0.203 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_62.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=119 read=183 dirtied=15
                                                                       WAL: records=19 fpi=15 bytes=121871
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6761_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6761 p_ci_finished_pipeline_ch_sync_events_63  (cost=0.29..246.75 rows=200 width=16) (actual time=0.470..0.470 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_63.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=111 read=193 dirtied=51
                                                                       WAL: records=69 fpi=51 bytes=415399
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6762_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6762 p_ci_finished_pipeline_ch_sync_events_64  (cost=0.42..485.98 rows=405 width=16) (actual time=0.769..0.769 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_64.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=207 read=204 dirtied=45
                                                                       WAL: records=67 fpi=45 bytes=367495
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6763_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6763 p_ci_finished_pipeline_ch_sync_events_65  (cost=0.29..3589.61 rows=380 width=16) (actual time=1.566..1.566 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_65.processed) AND ((p_ci_finished_pipeline_ch_sync_events_65.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 1304
                                                                       Buffers: shared hit=64486 read=508 dirtied=145
                                                                       WAL: records=218 fpi=145 bytes=1127119
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6764_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6764 p_ci_finished_pipeline_ch_sync_events_66  (cost=0.29..184.40 rows=150 width=16) (actual time=0.212..0.212 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_66.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=117 read=186 dirtied=11
                                                                       WAL: records=16 fpi=11 bytes=87021
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6765_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6765 p_ci_finished_pipeline_ch_sync_events_67  (cost=0.42..531.58 rows=440 width=16) (actual time=0.352..0.352 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_67.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=204 read=206 dirtied=36
                                                                       WAL: records=58 fpi=36 bytes=294570
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6766_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6766 p_ci_finished_pipeline_ch_sync_events_68  (cost=0.29..77.83 rows=60 width=16) (actual time=0.108..0.108 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_68.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=172 read=128 dirtied=13
                                                                       WAL: records=17 fpi=13 bytes=105897
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6767_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6767 p_ci_finished_pipeline_ch_sync_events_69  (cost=0.42..516.30 rows=425 width=16) (actual time=0.578..0.578 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_69.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=202 read=201 dirtied=17
                                                                       WAL: records=28 fpi=17 bytes=139309
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6768_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6768 p_ci_finished_pipeline_ch_sync_events_70  (cost=0.29..207.19 rows=166 width=16) (actual time=0.231..0.231 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_70.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=116 read=189 dirtied=17
                                                                       WAL: records=27 fpi=17 bytes=128267
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6769_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6769 p_ci_finished_pipeline_ch_sync_events_71  (cost=0.29..319.84 rows=260 width=16) (actual time=0.166..0.166 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_71.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=106 read=195 dirtied=9
                                                                       WAL: records=18 fpi=9 bytes=74235
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6770_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6770 p_ci_finished_pipeline_ch_sync_events_72  (cost=0.29..3673.56 rows=391 width=16) (actual time=1.248..1.248 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_72.processed) AND ((p_ci_finished_pipeline_ch_sync_events_72.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 1434
                                                                       Buffers: shared hit=94818 read=461 dirtied=417
                                                                       WAL: records=491 fpi=417 bytes=3320305
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6771_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6771 p_ci_finished_pipeline_ch_sync_events_73  (cost=0.29..251.40 rows=207 width=16) (actual time=0.173..0.173 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_73.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=117 read=185 dirtied=20
                                                                       WAL: records=31 fpi=20 bytes=160622
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6772_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6772 p_ci_finished_pipeline_ch_sync_events_74  (cost=0.29..2774.12 rows=290 width=16) (actual time=0.879..0.879 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_74.processed) AND ((p_ci_finished_pipeline_ch_sync_events_74.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 713
                                                                       Buffers: shared hit=53495 read=397 dirtied=227
                                                                       WAL: records=325 fpi=227 bytes=1787289
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6773_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6773 p_ci_finished_pipeline_ch_sync_events_75  (cost=0.29..269.58 rows=217 width=16) (actual time=0.206..0.206 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_75.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=110 read=195 dirtied=25
                                                                       WAL: records=35 fpi=25 bytes=197085
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6774_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6774 p_ci_finished_pipeline_ch_sync_events_76  (cost=0.29..338.22 rows=282 width=16) (actual time=0.230..0.230 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_76.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=115 read=193 dirtied=63
                                                                       WAL: records=77 fpi=63 bytes=512257
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6775_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6775 p_ci_finished_pipeline_ch_sync_events_77  (cost=0.29..196.46 rows=155 width=16) (actual time=0.580..0.580 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_77.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=118 read=205 dirtied=45
                                                                       WAL: records=78 fpi=45 bytes=349947
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6776_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6776 p_ci_finished_pipeline_ch_sync_events_78  (cost=0.29..2858.13 rows=299 width=16) (actual time=1.220..1.220 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_78.processed) AND ((p_ci_finished_pipeline_ch_sync_events_78.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 914
                                                                       Buffers: shared hit=68681 read=479 dirtied=80
                                                                       WAL: records=107 fpi=80 bytes=593862
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6777_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6777 p_ci_finished_pipeline_ch_sync_events_79  (cost=0.29..246.82 rows=203 width=16) (actual time=0.435..0.435 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_79.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=114 read=199 dirtied=57
                                                                       WAL: records=95 fpi=57 bytes=462559
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6778_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6778 p_ci_finished_pipeline_ch_sync_events_80  (cost=0.29..3504.52 rows=376 width=16) (actual time=1.915..1.915 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_80.processed) AND ((p_ci_finished_pipeline_ch_sync_events_80.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 1134
                                                                       Buffers: shared hit=74240 read=553 dirtied=311
                                                                       WAL: records=462 fpi=311 bytes=2498951
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6779_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6779 p_ci_finished_pipeline_ch_sync_events_81  (cost=0.42..948.84 rows=797 width=16) (actual time=0.647..0.647 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_81.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=205 read=249 dirtied=90
                                                                       WAL: records=154 fpi=90 bytes=738428
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6780_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6780 p_ci_finished_pipeline_ch_sync_events_82  (cost=0.42..802.43 rows=662 width=16) (actual time=0.628..0.628 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_82.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=201 read=236 dirtied=73
                                                                       WAL: records=100 fpi=73 bytes=590043
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6781_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6781 p_ci_finished_pipeline_ch_sync_events_83  (cost=0.29..262.02 rows=214 width=16) (actual time=0.343..0.343 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_83.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=121 read=190 dirtied=37
                                                                       WAL: records=62 fpi=37 bytes=296563
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6782_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6782 p_ci_finished_pipeline_ch_sync_events_84  (cost=0.42..577.03 rows=465 width=16) (actual time=0.477..0.477 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_84.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=206 read=220 dirtied=60
                                                                       WAL: records=92 fpi=60 bytes=477440
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6783_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6783 p_ci_finished_pipeline_ch_sync_events_85  (cost=0.29..3535.35 rows=385 width=16) (actual time=1.373..1.373 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_85.processed) AND ((p_ci_finished_pipeline_ch_sync_events_85.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 720
                                                                       Buffers: shared hit=49838 read=466 dirtied=241
                                                                       WAL: records=331 fpi=241 bytes=1926491
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6784_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6784 p_ci_finished_pipeline_ch_sync_events_86  (cost=0.29..3632.35 rows=394 width=16) (actual time=1.434..1.434 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_86.processed) AND ((p_ci_finished_pipeline_ch_sync_events_86.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 681
                                                                       Buffers: shared hit=38598 read=456 dirtied=222
                                                                       WAL: records=286 fpi=222 bytes=1786774
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6785_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6785 p_ci_finished_pipeline_ch_sync_events_87  (cost=0.42..694.56 rows=582 width=16) (actual time=0.694..0.694 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_87.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=203 read=207 dirtied=52
                                                                       WAL: records=75 fpi=52 bytes=418754
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6786_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6786 p_ci_finished_pipeline_ch_sync_events_88  (cost=0.42..1168.07 rows=982 width=16) (actual time=0.726..0.726 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_88.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=197 read=228 dirtied=40
                                                                       WAL: records=71 fpi=40 bytes=328334
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6787_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6787 p_ci_finished_pipeline_ch_sync_events_89  (cost=0.42..1002.10 rows=841 width=16) (actual time=0.504..0.504 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_89.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=197 read=220 dirtied=28
                                                                       WAL: records=46 fpi=28 bytes=228918
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6788_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6788 p_ci_finished_pipeline_ch_sync_events_90  (cost=0.29..231.40 rows=178 width=16) (actual time=0.209..0.209 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_90.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=114 read=190 dirtied=10
                                                                       WAL: records=18 fpi=10 bytes=82226
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6789_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6789 p_ci_finished_pipeline_ch_sync_events_91  (cost=0.29..181.40 rows=151 width=16) (actual time=0.245..0.245 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_91.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=119 read=182 dirtied=20
                                                                       WAL: records=30 fpi=20 bytes=161322
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6790_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6790 p_ci_finished_pipeline_ch_sync_events_92  (cost=0.29..2915.44 rows=307 width=16) (actual time=1.210..1.210 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_92.processed) AND ((p_ci_finished_pipeline_ch_sync_events_92.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 705
                                                                       Buffers: shared hit=45150 read=426 dirtied=178
                                                                       WAL: records=247 fpi=178 bytes=1405878
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6791_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6791 p_ci_finished_pipeline_ch_sync_events_93  (cost=0.42..603.05 rows=494 width=16) (actual time=0.549..0.549 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_93.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=202 read=202 dirtied=52
                                                                       WAL: records=71 fpi=52 bytes=424492
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6792_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6792 p_ci_finished_pipeline_ch_sync_events_94  (cost=0.42..896.78 rows=737 width=16) (actual time=0.583..0.583 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_94.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=196 read=211 dirtied=42
                                                                       WAL: records=56 fpi=42 bytes=327310
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6793_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6793 p_ci_finished_pipeline_ch_sync_events_95  (cost=0.42..491.98 rows=406 width=16) (actual time=0.371..0.371 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_95.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=207 read=196 dirtied=45
                                                                       WAL: records=60 fpi=45 bytes=366711
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6794_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6794 p_ci_finished_pipeline_ch_sync_events_96  (cost=0.29..216.28 rows=172 width=16) (actual time=0.153..0.153 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_96.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=116 read=187 dirtied=17
                                                                       WAL: records=26 fpi=17 bytes=136835
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6795_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6795 p_ci_finished_pipeline_ch_sync_events_97  (cost=0.29..3597.85 rows=359 width=16) (actual time=1.953..1.953 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_97.processed) AND ((p_ci_finished_pipeline_ch_sync_events_97.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 1140
                                                                       Buffers: shared hit=64222 read=570 dirtied=411
                                                                       WAL: records=623 fpi=411 bytes=3266355
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6796_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6796 p_ci_finished_pipeline_ch_sync_events_98  (cost=0.29..97.59 rows=75 width=16) (actual time=0.275..0.275 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_98.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=153 read=148 dirtied=41
                                                                       WAL: records=70 fpi=41 bytes=335903
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6797_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6797 p_ci_finished_pipeline_ch_sync_events_99  (cost=0.29..3357.31 rows=351 width=16) (actual time=0.928..0.928 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_99.processed) AND ((p_ci_finished_pipeline_ch_sync_events_99.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 1662
                                                                       Buffers: shared hit=77827 read=510 dirtied=444
                                                                       WAL: records=492 fpi=444 bytes=3504108
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6798_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6798 p_ci_finished_pipeline_ch_sync_events_100  (cost=0.29..240.61 rows=191 width=16) (actual time=0.286..0.286 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_100.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=115 read=190 dirtied=47
                                                                       WAL: records=68 fpi=47 bytes=383061
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6799_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6799 p_ci_finished_pipeline_ch_sync_events_101  (cost=0.29..298.55 rows=245 width=16) (actual time=0.346..0.346 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_101.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=110 read=196 dirtied=37
                                                                       WAL: records=58 fpi=37 bytes=299423
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6800_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6800 p_ci_finished_pipeline_ch_sync_events_102  (cost=0.29..3561.56 rows=364 width=16) (actual time=1.464..1.464 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_102.processed) AND ((p_ci_finished_pipeline_ch_sync_events_102.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 1295
                                                                       Buffers: shared hit=98530 read=537 dirtied=408
                                                                       WAL: records=439 fpi=408 bytes=3123062
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6801_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6801 p_ci_finished_pipeline_ch_sync_events_103  (cost=0.28..42.88 rows=34 width=16) (actual time=0.117..0.117 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_103.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=214 read=87 dirtied=19
                                                                       WAL: records=33 fpi=19 bytes=151691
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6802_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6802 p_ci_finished_pipeline_ch_sync_events_104  (cost=0.29..150.90 rows=121 width=16) (actual time=0.172..0.172 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_104.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=128 read=181 dirtied=37
                                                                       WAL: records=69 fpi=37 bytes=299543
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6803_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6803 p_ci_finished_pipeline_ch_sync_events_105  (cost=0.29..3539.77 rows=340 width=16) (actual time=0.941..0.941 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_105.processed) AND ((p_ci_finished_pipeline_ch_sync_events_105.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 1099
                                                                       Buffers: shared hit=72767 read=522 dirtied=79
                                                                       WAL: records=107 fpi=79 bytes=585357
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6804_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6804 p_ci_finished_pipeline_ch_sync_events_106  (cost=0.42..735.31 rows=598 width=16) (actual time=0.839..0.839 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_106.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=206 read=225 dirtied=67
                                                                       WAL: records=113 fpi=67 bytes=549737
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6805_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6805 p_ci_finished_pipeline_ch_sync_events_107  (cost=0.29..286.36 rows=233 width=16) (actual time=0.294..0.294 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_107.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=109 read=201 dirtied=50
                                                                       WAL: records=64 fpi=50 bytes=402972
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6806_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6806 p_ci_finished_pipeline_ch_sync_events_108  (cost=0.42..785.73 rows=647 width=16) (actual time=0.682..0.682 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_108.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=205 read=211 dirtied=58
                                                                       WAL: records=80 fpi=58 bytes=473670
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6807_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6807 p_ci_finished_pipeline_ch_sync_events_109  (cost=0.29..164.63 rows=134 width=16) (actual time=0.178..0.178 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_109.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=118 read=186 dirtied=37
                                                                       WAL: records=48 fpi=37 bytes=298349
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6808_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6808 p_ci_finished_pipeline_ch_sync_events_110  (cost=0.42..933.46 rows=775 width=16) (actual time=0.442..0.442 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_110.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=199 read=230 dirtied=70
                                                                       WAL: records=108 fpi=70 bytes=567046
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6809_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6809 p_ci_finished_pipeline_ch_sync_events_111  (cost=0.29..219.41 rows=179 width=16) (actual time=0.191..0.191 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_111.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=118 read=188 dirtied=30
                                                                       WAL: records=41 fpi=30 bytes=244048
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6810_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6810 p_ci_finished_pipeline_ch_sync_events_112  (cost=0.42..851.35 rows=713 width=16) (actual time=0.461..0.461 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_112.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=207 read=224 dirtied=49
                                                                       WAL: records=71 fpi=49 bytes=400615
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6811_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6811 p_ci_finished_pipeline_ch_sync_events_113  (cost=0.28..50.43 rows=39 width=16) (actual time=0.047..0.047 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_113.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=210 read=90 dirtied=6
                                                                       WAL: records=8 fpi=6 bytes=48230
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6812_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6812 p_ci_finished_pipeline_ch_sync_events_114  (cost=0.42..1047.59 rows=869 width=16) (actual time=0.400..0.400 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_114.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=197 read=220 dirtied=34
                                                                       WAL: records=55 fpi=34 bytes=275210
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6813_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6813 p_ci_finished_pipeline_ch_sync_events_115  (cost=0.29..2753.18 rows=307 width=16) (actual time=0.954..0.954 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_115.processed) AND ((p_ci_finished_pipeline_ch_sync_events_115.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 618
                                                                       Buffers: shared hit=41075 read=394 dirtied=107
                                                                       WAL: records=141 fpi=107 bytes=844219
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6814_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6814 p_ci_finished_pipeline_ch_sync_events_116  (cost=0.42..741.66 rows=616 width=16) (actual time=0.602..0.602 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_116.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=200 read=209 dirtied=26
                                                                       WAL: records=41 fpi=26 bytes=213262
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6815_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6815 p_ci_finished_pipeline_ch_sync_events_117  (cost=0.42..660.99 rows=548 width=16) (actual time=0.558..0.558 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_117.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=200 read=201 dirtied=38
                                                                       WAL: records=44 fpi=38 bytes=308524
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6816_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6816 p_ci_finished_pipeline_ch_sync_events_118  (cost=0.29..2720.09 rows=286 width=16) (actual time=1.005..1.005 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_118.processed) AND ((p_ci_finished_pipeline_ch_sync_events_118.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 627
                                                                       Buffers: shared hit=39086 read=401 dirtied=156
                                                                       WAL: records=209 fpi=156 bytes=1228018
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6817_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6817 p_ci_finished_pipeline_ch_sync_events_119  (cost=0.42..522.42 rows=430 width=16) (actual time=0.257..0.257 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_119.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=201 read=202 dirtied=41
                                                                       WAL: records=49 fpi=41 bytes=333115
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6818_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6818 p_ci_finished_pipeline_ch_sync_events_120  (cost=0.29..65.69 rows=52 width=16) (actual time=0.172..0.172 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_120.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=179 read=121 dirtied=19
                                                                       WAL: records=27 fpi=19 bytes=154565
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6819_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6819 p_ci_finished_pipeline_ch_sync_events_121  (cost=0.42..618.45 rows=517 width=16) (actual time=0.287..0.287 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_121.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=204 read=197 dirtied=34
                                                                       WAL: records=44 fpi=34 bytes=275656
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6820_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6820 p_ci_finished_pipeline_ch_sync_events_122  (cost=0.42..659.57 rows=553 width=16) (actual time=0.269..0.269 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_122.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=202 read=201 dirtied=50
                                                                       WAL: records=62 fpi=50 bytes=404054
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6821_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6821 p_ci_finished_pipeline_ch_sync_events_123  (cost=0.42..528.41 rows=431 width=16) (actual time=0.186..0.186 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_123.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=203 read=199 dirtied=54
                                                                       WAL: records=72 fpi=54 bytes=439694
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6822_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6822 p_ci_finished_pipeline_ch_sync_events_124  (cost=0.29..190.36 rows=148 width=16) (actual time=0.378..0.378 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_124.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=122 read=180 dirtied=39
                                                                       WAL: records=60 fpi=39 bytes=315129
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6823_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6823 p_ci_finished_pipeline_ch_sync_events_125  (cost=0.29..166.07 rows=131 width=16) (actual time=0.204..0.204 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_125.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=121 read=179 dirtied=27
                                                                       WAL: records=44 fpi=27 bytes=221013
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6824_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6824 p_ci_finished_pipeline_ch_sync_events_126  (cost=0.29..237.52 rows=186 width=16) (actual time=0.132..0.132 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_126.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=117 read=185 dirtied=19
                                                                       WAL: records=26 fpi=19 bytes=145905
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6825_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6825 p_ci_finished_pipeline_ch_sync_events_127  (cost=0.42..581.86 rows=484 width=16) (actual time=0.218..0.218 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_127.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=207 read=195 dirtied=48
                                                                       WAL: records=58 fpi=48 bytes=387082
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6826_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6826 p_ci_finished_pipeline_ch_sync_events_128  (cost=0.29..176.75 rows=141 width=16) (actual time=0.246..0.246 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_128.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=119 read=183 dirtied=25
                                                                       WAL: records=44 fpi=25 bytes=205133
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6827_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6827 p_ci_finished_pipeline_ch_sync_events_129  (cost=0.29..2660.65 rows=279 width=16) (actual time=0.853..0.853 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_129.processed) AND ((p_ci_finished_pipeline_ch_sync_events_129.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 775
                                                                       Buffers: shared hit=55031 read=389 dirtied=162
                                                                       WAL: records=248 fpi=162 bytes=1292600
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6828_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6828 p_ci_finished_pipeline_ch_sync_events_130  (cost=0.29..3011.20 rows=308 width=16) (actual time=1.305..1.305 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_130.processed) AND ((p_ci_finished_pipeline_ch_sync_events_130.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 1078
                                                                       Buffers: shared hit=65608 read=452 dirtied=317
                                                                       WAL: records=348 fpi=317 bytes=2449301
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6829_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6829 p_ci_finished_pipeline_ch_sync_events_131  (cost=0.29..211.58 rows=162 width=16) (actual time=0.169..0.169 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_131.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=110 read=190 dirtied=2
                                                                       WAL: records=3 fpi=2 bytes=16316
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6830_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6830 p_ci_finished_pipeline_ch_sync_events_132  (cost=0.29..80.90 rows=64 width=16) (actual time=0.174..0.174 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_132.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=160 read=141 dirtied=21
                                                                       WAL: records=38 fpi=21 bytes=171671
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6831_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6831 p_ci_finished_pipeline_ch_sync_events_133  (cost=0.42..711.31 rows=596 width=16) (actual time=0.378..0.378 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_133.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=202 read=209 dirtied=23
                                                                       WAL: records=43 fpi=23 bytes=185397
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6832_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6832 p_ci_finished_pipeline_ch_sync_events_134  (cost=0.42..726.52 rows=608 width=16) (actual time=0.597..0.597 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_134.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=203 read=213 dirtied=49
                                                                       WAL: records=79 fpi=49 bytes=401357
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6833_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6833 p_ci_finished_pipeline_ch_sync_events_135  (cost=0.29..159.99 rows=127 width=16) (actual time=0.201..0.201 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_135.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=116 read=186 dirtied=36
                                                                       WAL: records=43 fpi=36 bytes=292516
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6834_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6834 p_ci_finished_pipeline_ch_sync_events_136  (cost=0.42..1086.78 rows=884 width=16) (actual time=0.492..0.492 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_136.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=198 read=234 dirtied=73
                                                                       WAL: records=113 fpi=73 bytes=597791
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6835_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6835 p_ci_finished_pipeline_ch_sync_events_137  (cost=0.29..312.22 rows=254 width=16) (actual time=0.216..0.216 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_137.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=106 read=202 dirtied=55
                                                                       WAL: records=59 fpi=55 bytes=421961
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6836_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6836 p_ci_finished_pipeline_ch_sync_events_138  (cost=0.29..91.56 rows=75 width=16) (actual time=0.188..0.188 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_138.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=156 read=149 dirtied=49
                                                                       WAL: records=67 fpi=49 bytes=393045
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6837_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6837 p_ci_finished_pipeline_ch_sync_events_139  (cost=0.42..513.37 rows=427 width=16) (actual time=0.386..0.386 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_139.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=202 read=202 dirtied=46
                                                                       WAL: records=60 fpi=46 bytes=374286
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6838_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6838 p_ci_finished_pipeline_ch_sync_events_140  (cost=0.29..260.48 rows=212 width=16) (actual time=0.272..0.272 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_140.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=111 read=189 dirtied=39
                                                                       WAL: records=49 fpi=39 bytes=316521
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6839_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6839 p_ci_finished_pipeline_ch_sync_events_141  (cost=0.42..773.75 rows=651 width=16) (actual time=0.367..0.367 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_141.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=202 read=209 dirtied=46
                                                                       WAL: records=61 fpi=46 bytes=374542
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6840_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6840 p_ci_finished_pipeline_ch_sync_events_142  (cost=0.29..330.47 rows=269 width=16) (actual time=0.209..0.209 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_142.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=113 read=190 dirtied=27
                                                                       WAL: records=36 fpi=27 bytes=214095
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6841_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6841 p_ci_finished_pipeline_ch_sync_events_143  (cost=0.42..1149.46 rows=951 width=16) (actual time=0.449..0.449 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_143.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=197 read=212 dirtied=44
                                                                       WAL: records=57 fpi=44 bytes=359008
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6842_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6842 p_ci_finished_pipeline_ch_sync_events_144  (cost=0.42..1452.38 rows=1205 width=16) (actual time=0.801..0.801 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_144.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=196 read=210 dirtied=54
                                                                       WAL: records=62 fpi=54 bytes=439900
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6843_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6843 p_ci_finished_pipeline_ch_sync_events_145  (cost=0.29..198.18 rows=165 width=16) (actual time=0.273..0.273 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_145.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=116 read=185 dirtied=37
                                                                       WAL: records=47 fpi=37 bytes=300037
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6844_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6844 p_ci_finished_pipeline_ch_sync_events_146  (cost=0.42..522.40 rows=429 width=16) (actual time=0.307..0.307 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_146.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=201 read=200 dirtied=31
                                                                       WAL: records=37 fpi=31 bytes=246237
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6845_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6845 p_ci_finished_pipeline_ch_sync_events_147  (cost=0.29..61.14 rows=49 width=16) (actual time=0.147..0.147 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_147.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=191 read=109 dirtied=13
                                                                       WAL: records=26 fpi=13 bytes=105867
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6846_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6846 p_ci_finished_pipeline_ch_sync_events_148  (cost=0.42..633.50 rows=520 width=16) (actual time=0.383..0.383 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_148.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=202 read=201 dirtied=25
                                                                       WAL: records=44 fpi=25 bytes=188205
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6847_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6847 p_ci_finished_pipeline_ch_sync_events_149  (cost=0.29..217.81 rows=173 width=16) (actual time=0.192..0.192 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_149.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=111 read=189 dirtied=12
                                                                       WAL: records=17 fpi=12 bytes=98088
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6848_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6848 p_ci_finished_pipeline_ch_sync_events_150  (cost=0.42..534.63 rows=442 width=16) (actual time=0.317..0.317 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_150.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=203 read=198 dirtied=22
                                                                       WAL: records=31 fpi=22 bytes=179300
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6849_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6849 p_ci_finished_pipeline_ch_sync_events_151  (cost=0.29..226.81 rows=174 width=16) (actual time=0.220..0.220 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_151.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=115 read=187 dirtied=19
                                                                       WAL: records=32 fpi=19 bytes=155695
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6850_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6850 p_ci_finished_pipeline_ch_sync_events_152  (cost=0.29..277.19 rows=223 width=16) (actual time=0.272..0.272 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_152.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=124 read=176 dirtied=19
                                                                       WAL: records=32 fpi=19 bytes=155235
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6851_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6851 p_ci_finished_pipeline_ch_sync_events_153  (cost=0.29..112.88 rows=91 width=16) (actual time=0.262..0.262 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_153.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=145 read=158 dirtied=34
                                                                       WAL: records=59 fpi=34 bytes=275654
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6852_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6852 p_ci_finished_pipeline_ch_sync_events_154  (cost=0.29..205.73 rows=169 width=16) (actual time=0.141..0.141 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_154.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=113 read=188 dirtied=27
                                                                       WAL: records=43 fpi=27 bytes=220923
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6853_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6853 p_ci_finished_pipeline_ch_sync_events_155  (cost=0.42..925.91 rows=773 width=16) (actual time=0.208..0.208 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_155.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=202 read=201 dirtied=50
                                                                       WAL: records=69 fpi=50 bytes=406948
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6854_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6854 p_ci_finished_pipeline_ch_sync_events_156  (cost=0.42..672.94 rows=546 width=16) (actual time=0.434..0.434 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_156.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=206 read=201 dirtied=50
                                                                       WAL: records=70 fpi=50 bytes=405012
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6855_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6855 p_ci_finished_pipeline_ch_sync_events_157  (cost=0.29..131.14 rows=106 width=16) (actual time=0.140..0.140 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_157.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=140 read=162 dirtied=49
                                                                       WAL: records=55 fpi=49 bytes=395405
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6856_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6856 p_ci_finished_pipeline_ch_sync_events_158  (cost=0.29..284.75 rows=227 width=16) (actual time=0.149..0.149 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_158.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=108 read=193 dirtied=43
                                                                       WAL: records=51 fpi=43 bytes=349595
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6857_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6857 p_ci_finished_pipeline_ch_sync_events_159  (cost=0.29..118.99 rows=98 width=16) (actual time=0.242..0.242 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_159.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=144 read=158 dirtied=39
                                                                       WAL: records=61 fpi=39 bytes=318099
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6858_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6858 p_ci_finished_pipeline_ch_sync_events_160  (cost=0.29..114.36 rows=91 width=16) (actual time=0.180..0.180 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_160.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=147 read=154 dirtied=37
                                                                       WAL: records=63 fpi=37 bytes=303661
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6859_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6859 p_ci_finished_pipeline_ch_sync_events_161  (cost=0.29..236.04 rows=187 width=16) (actual time=0.342..0.342 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_161.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=108 read=195 dirtied=36
                                                                       WAL: records=61 fpi=36 bytes=284722
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6860_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6860 p_ci_finished_pipeline_ch_sync_events_162  (cost=0.29..2988.79 rows=295 width=16) (actual time=1.459..1.459 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_162.processed) AND ((p_ci_finished_pipeline_ch_sync_events_162.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 941
                                                                       Buffers: shared hit=54433 read=457 dirtied=272
                                                                       WAL: records=405 fpi=272 bytes=2144028
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6861_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6861 p_ci_finished_pipeline_ch_sync_events_163  (cost=0.42..944.09 rows=783 width=16) (actual time=0.452..0.452 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_163.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=195 read=214 dirtied=34
                                                                       WAL: records=56 fpi=34 bytes=275584
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6862_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6862 p_ci_finished_pipeline_ch_sync_events_164  (cost=0.42..1595.62 rows=1331 width=16) (actual time=0.547..0.547 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_164.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=197 read=214 dirtied=21
                                                                       WAL: records=37 fpi=21 bytes=170595
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6863_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6863 p_ci_finished_pipeline_ch_sync_events_165  (cost=0.42..2986.88 rows=2492 width=16) (actual time=0.540..0.540 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_165.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=186 read=232 dirtied=28
                                                                       WAL: records=45 fpi=28 bytes=229256
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6864_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6864 p_ci_finished_pipeline_ch_sync_events_166  (cost=0.42..559.10 rows=470 width=16) (actual time=0.531..0.531 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_166.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=202 read=200 dirtied=13
                                                                       WAL: records=23 fpi=13 bytes=106429
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6865_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6865 p_ci_finished_pipeline_ch_sync_events_167  (cost=0.29..137.20 rows=110 width=16) (actual time=0.209..0.209 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_167.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=134 read=168 dirtied=19
                                                                       WAL: records=31 fpi=19 bytes=155635
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6866_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6866 p_ci_finished_pipeline_ch_sync_events_168  (cost=0.29..289.52 rows=242 width=16) (actual time=0.218..0.218 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_168.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=109 read=193 dirtied=13
                                                                       WAL: records=22 fpi=13 bytes=105625
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6867_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6867 p_ci_finished_pipeline_ch_sync_events_169  (cost=0.29..2525.40 rows=269 width=16) (actual time=0.776..0.776 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_169.processed) AND ((p_ci_finished_pipeline_ch_sync_events_169.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 662
                                                                       Buffers: shared hit=36732 read=347 dirtied=77
                                                                       WAL: records=114 fpi=77 bytes=603291
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6868_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6868 p_ci_finished_pipeline_ch_sync_events_170  (cost=0.29..3820.77 rows=386 width=16) (actual time=1.004..1.004 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_170.processed) AND ((p_ci_finished_pipeline_ch_sync_events_170.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 1036
                                                                       Buffers: shared hit=50325 read=478 dirtied=119
                                                                       WAL: records=156 fpi=119 bytes=853613
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6869_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6869 p_ci_finished_pipeline_ch_sync_events_171  (cost=0.29..97.59 rows=75 width=16) (actual time=0.120..0.120 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_171.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=149 read=151 dirtied=23
                                                                       WAL: records=38 fpi=23 bytes=188521
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6870_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6870 p_ci_finished_pipeline_ch_sync_events_172  (cost=0.42..486.00 rows=406 width=16) (actual time=0.212..0.212 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_172.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=204 read=196 dirtied=15
                                                                       WAL: records=26 fpi=15 bytes=122741
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6871_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6871 p_ci_finished_pipeline_ch_sync_events_173  (cost=0.29..3313.01 rows=278 width=16) (actual time=1.880..1.880 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_173.processed) AND ((p_ci_finished_pipeline_ch_sync_events_173.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 2515
                                                                       Buffers: shared hit=74708 read=631 dirtied=313
                                                                       WAL: records=373 fpi=313 bytes=1826741
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6872_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6872 p_ci_finished_pipeline_ch_sync_events_174  (cost=0.42..1432.50 rows=1181 width=16) (actual time=0.303..0.303 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_174.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=199 read=224 dirtied=39
                                                                       WAL: records=74 fpi=39 bytes=319159
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6873_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6873 p_ci_finished_pipeline_ch_sync_events_175  (cost=0.42..1065.82 rows=883 width=16) (actual time=0.263..0.263 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_175.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=197 read=216 dirtied=36
                                                                       WAL: records=71 fpi=36 bytes=294968
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6874_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6874 p_ci_finished_pipeline_ch_sync_events_176  (cost=0.42..1065.77 rows=880 width=16) (actual time=0.258..0.258 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_176.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=200 read=218 dirtied=35
                                                                       WAL: records=63 fpi=35 bytes=285515
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6875_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6875 p_ci_finished_pipeline_ch_sync_events_177  (cost=0.42..1053.51 rows=865 width=16) (actual time=0.190..0.190 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_177.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=195 read=219 dirtied=29
                                                                       WAL: records=43 fpi=29 bytes=220305
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6876_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6876 p_ci_finished_pipeline_ch_sync_events_178  (cost=0.42..1452.31 rows=1197 width=16) (actual time=0.322..0.322 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_178.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=201 read=234 dirtied=58
                                                                       WAL: records=95 fpi=58 bytes=460006
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6877_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6877 p_ci_finished_pipeline_ch_sync_events_179  (cost=0.42..1126.54 rows=925 width=16) (actual time=0.198..0.198 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_179.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=199 read=203 dirtied=5
                                                                       WAL: records=7 fpi=5 bytes=40581
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6878_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6878 p_ci_finished_pipeline_ch_sync_events_180  (cost=0.42..1053.81 rows=883 width=16) (actual time=0.648..0.648 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_180.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=202 read=240 dirtied=55
                                                                       WAL: records=103 fpi=55 bytes=447825
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6879_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6879 p_ci_finished_pipeline_ch_sync_events_181  (cost=0.42..1222.25 rows=994 width=16) (actual time=0.765..0.765 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_181.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=205 read=236 dirtied=71
                                                                       WAL: records=121 fpi=71 bytes=571529
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6880_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6880 p_ci_finished_pipeline_ch_sync_events_182  (cost=0.29..304.46 rows=240 width=16) (actual time=0.155..0.155 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_182.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=106 read=194 dirtied=13
                                                                       WAL: records=16 fpi=13 bytes=105763
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6881_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6881 p_ci_finished_pipeline_ch_sync_events_183  (cost=0.29..140.16 rows=107 width=16) (actual time=0.190..0.190 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_183.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=144 read=167 dirtied=29
                                                                       WAL: records=53 fpi=29 bytes=230009
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6882_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6882 p_ci_finished_pipeline_ch_sync_events_184  (cost=0.29..67.23 rows=54 width=16) (actual time=0.214..0.214 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_184.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=183 read=125 dirtied=42
                                                                       WAL: records=66 fpi=42 bytes=339238
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6883_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6883 p_ci_finished_pipeline_ch_sync_events_185  (cost=0.42..487.51 rows=406 width=16) (actual time=0.200..0.200 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_185.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=207 read=210 dirtied=57
                                                                       WAL: records=93 fpi=57 bytes=465447
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6884_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6884 p_ci_finished_pipeline_ch_sync_events_186  (cost=0.42..546.25 rows=420 width=16) (actual time=0.279..0.279 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_186.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=209 read=217 dirtied=44
                                                                       WAL: records=75 fpi=44 bytes=340578
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6885_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6885 p_ci_finished_pipeline_ch_sync_events_187  (cost=0.29..284.84 rows=233 width=16) (actual time=0.180..0.180 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_187.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=112 read=195 dirtied=32
                                                                       WAL: records=41 fpi=32 bytes=256748
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6886_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6886 p_ci_finished_pipeline_ch_sync_events_188  (cost=0.29..179.78 rows=145 width=16) (actual time=0.160..0.160 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_188.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=120 read=186 dirtied=34
                                                                       WAL: records=55 fpi=34 bytes=278822
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6887_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6887 p_ci_finished_pipeline_ch_sync_events_189  (cost=0.29..64.19 rows=52 width=16) (actual time=0.120..0.120 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_189.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=193 read=116 dirtied=38
                                                                       WAL: records=56 fpi=38 bytes=309062
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6888_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6888 p_ci_finished_pipeline_ch_sync_events_190  (cost=0.42..534.66 rows=444 width=16) (actual time=0.204..0.204 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_190.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=209 read=214 dirtied=55
                                                                       WAL: records=76 fpi=55 bytes=441241
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6889_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6889 p_ci_finished_pipeline_ch_sync_events_191  (cost=0.29..2977.85 rows=321 width=16) (actual time=1.077..1.077 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_191.processed) AND ((p_ci_finished_pipeline_ch_sync_events_191.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 598
                                                                       Buffers: shared hit=39888 read=414 dirtied=205
                                                                       WAL: records=265 fpi=205 bytes=1643217
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6890_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6890 p_ci_finished_pipeline_ch_sync_events_192  (cost=0.42..536.11 rows=443 width=16) (actual time=0.348..0.348 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_192.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=205 read=211 dirtied=46
                                                                       WAL: records=71 fpi=46 bytes=375618
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6891_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6891 p_ci_finished_pipeline_ch_sync_events_193  (cost=0.42..979.05 rows=812 width=16) (actual time=0.339..0.339 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_193.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=196 read=239 dirtied=44
                                                                       WAL: records=77 fpi=44 bytes=356102
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6892_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6892 p_ci_finished_pipeline_ch_sync_events_194  (cost=0.42..858.66 rows=702 width=16) (actual time=0.280..0.280 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_194.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=202 read=217 dirtied=27
                                                                       WAL: records=47 fpi=27 bytes=215333
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6893_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6893 p_ci_finished_pipeline_ch_sync_events_195  (cost=0.29..76.37 rows=62 width=16) (actual time=0.101..0.101 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_195.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=167 read=135 dirtied=16
                                                                       WAL: records=23 fpi=16 bytes=129954
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6894_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6894 p_ci_finished_pipeline_ch_sync_events_196  (cost=0.29..152.50 rows=127 width=16) (actual time=0.150..0.150 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_196.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=126 read=180 dirtied=23
                                                                       WAL: records=40 fpi=23 bytes=188437
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6895_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6895 p_ci_finished_pipeline_ch_sync_events_197  (cost=0.42..750.73 rows=620 width=16) (actual time=0.276..0.276 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_197.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=204 read=224 dirtied=54
                                                                       WAL: records=81 fpi=54 bytes=425874
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6896_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6896 p_ci_finished_pipeline_ch_sync_events_198  (cost=0.42..696.02 rows=581 width=16) (actual time=0.512..0.512 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_198.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=204 read=212 dirtied=66
                                                                       WAL: records=85 fpi=66 bytes=538188
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6897_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6897 p_ci_finished_pipeline_ch_sync_events_199  (cost=0.29..3608.52 rows=390 width=16) (actual time=1.211..1.211 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_199.processed) AND ((p_ci_finished_pipeline_ch_sync_events_199.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 582
                                                                       Buffers: shared hit=36476 read=440 dirtied=262
                                                                       WAL: records=311 fpi=262 bytes=2043250
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6898_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6898 p_ci_finished_pipeline_ch_sync_events_200  (cost=0.42..995.78 rows=823 width=16) (actual time=0.757..0.757 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_200.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=201 read=228 dirtied=86
                                                                       WAL: records=112 fpi=86 bytes=699694
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6899_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6899 p_ci_finished_pipeline_ch_sync_events_201  (cost=0.42..554.49 rows=464 width=16) (actual time=0.630..0.630 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_201.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=206 read=203 dirtied=73
                                                                       WAL: records=84 fpi=73 bytes=593517
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6900_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6900 p_ci_finished_pipeline_ch_sync_events_202  (cost=0.29..216.30 rows=173 width=16) (actual time=0.566..0.566 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_202.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=117 read=196 dirtied=80
                                                                       WAL: records=94 fpi=80 bytes=638564
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6901_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6901 p_ci_finished_pipeline_ch_sync_events_203  (cost=0.28..42.86 rows=33 width=16) (actual time=0.255..0.255 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_203.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=206 read=94 dirtied=41
                                                                       WAL: records=46 fpi=41 bytes=326363
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6902_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6902 p_ci_finished_pipeline_ch_sync_events_204  (cost=0.42..627.59 rows=525 width=16) (actual time=0.657..0.657 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_204.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=205 read=205 dirtied=76
                                                                       WAL: records=91 fpi=76 bytes=615696
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6903_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6903 p_ci_finished_pipeline_ch_sync_events_205  (cost=0.29..213.29 rows=172 width=16) (actual time=0.611..0.611 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_205.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=112 read=194 dirtied=76
                                                                       WAL: records=86 fpi=76 bytes=600186
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6904_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6904 p_ci_finished_pipeline_ch_sync_events_206  (cost=0.42..1439.00 rows=1209 width=16) (actual time=2.486..2.486 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_206.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=281 read=543 dirtied=393
                                                                       WAL: records=745 fpi=393 bytes=3224345
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6905_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6905 p_ci_finished_pipeline_ch_sync_events_207  (cost=0.29..167.55 rows=130 width=16) (actual time=0.944..0.945 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_207.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=218 read=226 dirtied=104
                                                                       WAL: records=120 fpi=104 bytes=698358
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6906_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6906 p_ci_finished_pipeline_ch_sync_events_208  (cost=0.29..3466.87 rows=342 width=16) (actual time=0.870..0.870 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_208.processed) AND ((p_ci_finished_pipeline_ch_sync_events_208.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 792
                                                                       Buffers: shared hit=43934 read=457 dirtied=327
                                                                       WAL: records=379 fpi=327 bytes=2245905
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6907_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6907 p_ci_finished_pipeline_ch_sync_events_209  (cost=0.42..636.53 rows=522 width=16) (actual time=0.418..0.418 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_209.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=244 read=351 dirtied=233
                                                                       WAL: records=410 fpi=233 bytes=1898615
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6908_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6908 p_ci_finished_pipeline_ch_sync_events_210  (cost=0.29..82.45 rows=67 width=16) (actual time=0.093..0.093 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_210.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=174 read=139 dirtied=11
                                                                       WAL: records=19 fpi=11 bytes=89589
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6909_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6909 p_ci_finished_pipeline_ch_sync_events_211  (cost=0.42..525.43 rows=430 width=16) (actual time=0.376..0.376 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_211.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=263 read=325 dirtied=76
                                                                       WAL: records=128 fpi=76 bytes=614530
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6910_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6910 p_ci_finished_pipeline_ch_sync_events_212  (cost=0.29..59.58 rows=46 width=16) (actual time=0.065..0.065 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_212.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=203 read=101 dirtied=9
                                                                       WAL: records=16 fpi=9 bytes=73675
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6911_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6911 p_ci_finished_pipeline_ch_sync_events_213  (cost=0.29..3845.55 rows=388 width=16) (actual time=0.754..0.754 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_213.processed) AND ((p_ci_finished_pipeline_ch_sync_events_213.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 1055
                                                                       Buffers: shared hit=42494 read=412 dirtied=313
                                                                       WAL: records=333 fpi=313 bytes=2274203
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6912_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6912 p_ci_finished_pipeline_ch_sync_events_214  (cost=0.42..2932.25 rows=2456 width=16) (actual time=0.863..0.863 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_214.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=275 read=554 dirtied=359
                                                                       WAL: records=675 fpi=359 bytes=2793895
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6913_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6913 p_ci_finished_pipeline_ch_sync_events_215  (cost=0.29..3038.95 rows=323 width=16) (actual time=1.001..1.001 rows=1 loops=100)
                                                                       Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_215.processed) AND ((p_ci_finished_pipeline_ch_sync_events_215.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition))
                                                                       Rows Removed by Filter: 567
                                                                       Buffers: shared hit=45993 read=380 dirtied=225
                                                                       WAL: records=280 fpi=225 bytes=1765471
                                                                 ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6914_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6914 p_ci_finished_pipeline_ch_sync_events_216  (cost=0.29..265.00 rows=212 width=16) (actual time=0.919..1.098 rows=1 loops=100)
                                                                       Index Cond: ((p_ci_finished_pipeline_ch_sync_events_216.pipeline_id % '100'::bigint) = array_cte.pipeline_id_partition)
                                                                       Buffers: shared hit=120 read=219 dirtied=87
                                                                       WAL: records=106 fpi=87 bytes=621857
                 ->  Nested Loop  (cost=86.81..904.22 rows=10 width=120) (actual time=4.715..4.717 rows=1 loops=500)
                       Buffers: shared hit=2906194 read=190 dirtied=88
                       WAL: records=91 fpi=88 bytes=692478
                       ->  Nested Loop  (cost=0.16..1.98 rows=10 width=112) (actual time=0.038..0.039 rows=1 loops=500)
                             ->  WorkTable Scan on recursive_keyset_cte  (cost=0.00..0.20 rows=10 width=104) (actual time=0.000..0.000 rows=1 loops=500)
                             ->  Limit  (cost=0.16..0.16 rows=1 width=24) (actual time=0.037..0.037 rows=1 loops=500)
                                   ->  Sort  (cost=0.16..0.18 rows=10 width=24) (actual time=0.036..0.036 rows=1 loops=500)
                                         Sort Key: u.pipeline_id, u.project_namespace_id
                                         Sort Method: top-N heapsort  Memory: 25kB
                                         ->  Function Scan on  u  (cost=0.01..0.11 rows=10 width=24) (actual time=0.012..0.022 rows=100 loops=500)
                                               Filter: ((u.pipeline_id IS NOT NULL) AND (u.project_namespace_id IS NOT NULL))
                                               Rows Removed by Filter: 0
                       ->  Limit  (cost=86.65..90.18 rows=1 width=16) (actual time=4.669..4.669 rows=1 loops=500)
                             Buffers: shared hit=2906194 read=190 dirtied=88
                             WAL: records=91 fpi=88 bytes=692478
                             ->  Nested Loop Left Join  (cost=86.65..90.18 rows=1 width=16) (actual time=4.668..4.668 rows=1 loops=500)
                                   Buffers: shared hit=2906194 read=190 dirtied=88
                                   WAL: records=91 fpi=88 bytes=692478
                                   ->  Result  (cost=0.00..0.01 rows=1 width=0) (actual time=0.000..0.000 rows=1 loops=500)
                                   ->  Limit  (cost=86.65..90.16 rows=1 width=16) (actual time=4.668..4.668 rows=1 loops=500)
                                         Buffers: shared hit=2906194 read=190 dirtied=88
                                         WAL: records=91 fpi=88 bytes=692478
                                         ->  Incremental Sort  (cost=86.65..110070.26 rows=31382 width=16) (actual time=4.667..4.667 rows=1 loops=500)
                                               Sort Key: p_ci_finished_pipeline_ch_sync_events_217.pipeline_id, p_ci_finished_pipeline_ch_sync_events_217.project_namespace_id
                                               Buffers: shared hit=2906194 read=190 dirtied=88
                                               WAL: records=91 fpi=88 bytes=692478
                                               ->  Merge Append  (cost=83.18..108658.07 rows=31382 width=16) (actual time=4.413..4.656 rows=2 loops=500)
                                                     Sort Key: p_ci_finished_pipeline_ch_sync_events_217.pipeline_id
                                                     Buffers: shared hit=2906194 read=190 dirtied=88
                                                     WAL: records=91 fpi=88 bytes=692478
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6702_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6702 p_ci_finished_pipeline_ch_sync_events_218  (cost=0.26..3.28 rows=1 width=16) (actual time=0.003..0.003 rows=0 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_218.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_218.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_218.pipeline_id, p_ci_finished_pipeline_ch_sync_events_218.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1004
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6703_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6703 p_ci_finished_pipeline_ch_sync_events_219  (cost=0.42..305.00 rows=203 width=16) (actual time=0.008..0.225 rows=2 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_219.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_219.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_219.pipeline_id, p_ci_finished_pipeline_ch_sync_events_219.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 1
                                                           Buffers: shared hit=2743 read=170 dirtied=78
                                                           WAL: records=78 fpi=78 bytes=615618
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6704_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6704 p_ci_finished_pipeline_ch_sync_events_220  (cost=0.29..1909.74 rows=110 width=16) (actual time=0.174..0.174 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_220.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_220.processed) AND ((p_ci_finished_pipeline_ch_sync_events_220.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_220.pipeline_id, p_ci_finished_pipeline_ch_sync_events_220.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 531
                                                           Buffers: shared hit=171168
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6705_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6705 p_ci_finished_pipeline_ch_sync_events_221  (cost=0.29..69.20 rows=47 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_221.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_221.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_221.pipeline_id, p_ci_finished_pipeline_ch_sync_events_221.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1502
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6706_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6706 p_ci_finished_pipeline_ch_sync_events_222  (cost=0.43..677.70 rows=477 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_222.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_222.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_222.pipeline_id, p_ci_finished_pipeline_ch_sync_events_222.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2013
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6707_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6707 p_ci_finished_pipeline_ch_sync_events_223  (cost=0.42..596.43 rows=418 width=16) (actual time=0.007..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_223.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_223.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_223.pipeline_id, p_ci_finished_pipeline_ch_sync_events_223.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2013 read=1
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6708_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6708 p_ci_finished_pipeline_ch_sync_events_224  (cost=0.42..536.70 rows=377 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_224.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_224.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_224.pipeline_id, p_ci_finished_pipeline_ch_sync_events_224.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2001
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6709_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6709 p_ci_finished_pipeline_ch_sync_events_225  (cost=0.42..190.42 rows=134 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_225.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_225.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_225.pipeline_id, p_ci_finished_pipeline_ch_sync_events_225.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2002
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6710_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6710 p_ci_finished_pipeline_ch_sync_events_226  (cost=0.29..2054.21 rows=121 width=16) (actual time=0.123..0.123 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_226.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_226.processed) AND ((p_ci_finished_pipeline_ch_sync_events_226.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_226.pipeline_id, p_ci_finished_pipeline_ch_sync_events_226.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 250
                                                           Buffers: shared hit=103786
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6711_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6711 p_ci_finished_pipeline_ch_sync_events_227  (cost=0.29..29.36 rows=19 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_227.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_227.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_227.pipeline_id, p_ci_finished_pipeline_ch_sync_events_227.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6712_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6712 p_ci_finished_pipeline_ch_sync_events_228  (cost=0.29..2126.75 rows=116 width=16) (actual time=0.121..0.121 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_228.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_228.processed) AND ((p_ci_finished_pipeline_ch_sync_events_228.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_228.pipeline_id, p_ci_finished_pipeline_ch_sync_events_228.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 279
                                                           Buffers: shared hit=111277
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6713_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6713 p_ci_finished_pipeline_ch_sync_events_229  (cost=0.29..1800.67 rows=104 width=16) (actual time=0.128..0.128 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_229.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_229.processed) AND ((p_ci_finished_pipeline_ch_sync_events_229.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_229.pipeline_id, p_ci_finished_pipeline_ch_sync_events_229.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 297
                                                           Buffers: shared hit=106585
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6714_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6714 p_ci_finished_pipeline_ch_sync_events_230  (cost=0.29..32.42 rows=21 width=16) (actual time=0.006..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_230.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_230.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_230.pipeline_id, p_ci_finished_pipeline_ch_sync_events_230.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1501 read=1
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6715_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6715 p_ci_finished_pipeline_ch_sync_events_231  (cost=0.42..187.34 rows=131 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_231.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_231.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_231.pipeline_id, p_ci_finished_pipeline_ch_sync_events_231.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6716_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6716 p_ci_finished_pipeline_ch_sync_events_232  (cost=0.29..2018.76 rows=117 width=16) (actual time=0.107..0.107 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_232.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_232.processed) AND ((p_ci_finished_pipeline_ch_sync_events_232.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_232.pipeline_id, p_ci_finished_pipeline_ch_sync_events_232.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 296
                                                           Buffers: shared hit=87442
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6717_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6717 p_ci_finished_pipeline_ch_sync_events_233  (cost=0.29..63.08 rows=43 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_233.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_233.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_233.pipeline_id, p_ci_finished_pipeline_ch_sync_events_233.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1502
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6718_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6718 p_ci_finished_pipeline_ch_sync_events_234  (cost=0.29..43.13 rows=28 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_234.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_234.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_234.pipeline_id, p_ci_finished_pipeline_ch_sync_events_234.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6719_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6719 p_ci_finished_pipeline_ch_sync_events_235  (cost=0.29..89.15 rows=62 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_235.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_235.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_235.pipeline_id, p_ci_finished_pipeline_ch_sync_events_235.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6720_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6720 p_ci_finished_pipeline_ch_sync_events_236  (cost=0.42..239.45 rows=168 width=16) (actual time=0.008..0.015 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_236.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_236.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_236.pipeline_id, p_ci_finished_pipeline_ch_sync_events_236.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2005 read=5 dirtied=2
                                                           WAL: records=2 fpi=2 bytes=15650
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6721_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6721 p_ci_finished_pipeline_ch_sync_events_237  (cost=0.42..202.67 rows=142 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_237.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_237.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_237.pipeline_id, p_ci_finished_pipeline_ch_sync_events_237.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6722_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6722 p_ci_finished_pipeline_ch_sync_events_238  (cost=0.29..33.95 rows=22 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_238.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_238.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_238.pipeline_id, p_ci_finished_pipeline_ch_sync_events_238.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6723_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6723 p_ci_finished_pipeline_ch_sync_events_239  (cost=0.29..1542.39 rows=92 width=16) (actual time=0.098..0.098 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_239.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_239.processed) AND ((p_ci_finished_pipeline_ch_sync_events_239.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_239.pipeline_id, p_ci_finished_pipeline_ch_sync_events_239.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 245
                                                           Buffers: shared hit=82055
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6724_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6724 p_ci_finished_pipeline_ch_sync_events_240  (cost=0.29..1884.80 rows=111 width=16) (actual time=0.094..0.094 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_240.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_240.processed) AND ((p_ci_finished_pipeline_ch_sync_events_240.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_240.pipeline_id, p_ci_finished_pipeline_ch_sync_events_240.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 198
                                                           Buffers: shared hit=83019
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6725_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6725 p_ci_finished_pipeline_ch_sync_events_241  (cost=0.42..228.70 rows=160 width=16) (actual time=0.008..0.010 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_241.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_241.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_241.pipeline_id, p_ci_finished_pipeline_ch_sync_events_241.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2006 read=1
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6726_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6726 p_ci_finished_pipeline_ch_sync_events_242  (cost=0.29..1478.35 rows=91 width=16) (actual time=0.078..0.078 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_242.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_242.processed) AND ((p_ci_finished_pipeline_ch_sync_events_242.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_242.pipeline_id, p_ci_finished_pipeline_ch_sync_events_242.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 170
                                                           Buffers: shared hit=73266
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6727_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6727 p_ci_finished_pipeline_ch_sync_events_243  (cost=0.29..72.26 rows=49 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_243.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_243.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_243.pipeline_id, p_ci_finished_pipeline_ch_sync_events_243.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6728_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6728 p_ci_finished_pipeline_ch_sync_events_244  (cost=0.42..336.02 rows=237 width=16) (actual time=0.008..0.010 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_244.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_244.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_244.pipeline_id, p_ci_finished_pipeline_ch_sync_events_244.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2001 read=1 dirtied=1
                                                           WAL: records=1 fpi=1 bytes=8161
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6729_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6729 p_ci_finished_pipeline_ch_sync_events_245  (cost=0.29..124.39 rows=87 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_245.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_245.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_245.pipeline_id, p_ci_finished_pipeline_ch_sync_events_245.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6730_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6730 p_ci_finished_pipeline_ch_sync_events_246  (cost=0.42..277.76 rows=195 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_246.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_246.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_246.pipeline_id, p_ci_finished_pipeline_ch_sync_events_246.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6731_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6731 p_ci_finished_pipeline_ch_sync_events_247  (cost=0.42..313.02 rows=220 width=16) (actual time=0.009..0.009 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_247.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_247.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_247.pipeline_id, p_ci_finished_pipeline_ch_sync_events_247.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6732_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6732 p_ci_finished_pipeline_ch_sync_events_248  (cost=0.29..1796.40 rows=100 width=16) (actual time=0.083..0.083 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_248.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_248.processed) AND ((p_ci_finished_pipeline_ch_sync_events_248.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_248.pipeline_id, p_ci_finished_pipeline_ch_sync_events_248.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 175
                                                           Buffers: shared hit=75361
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6733_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6733 p_ci_finished_pipeline_ch_sync_events_249  (cost=0.29..116.72 rows=81 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_249.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_249.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_249.pipeline_id, p_ci_finished_pipeline_ch_sync_events_249.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6734_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6734 p_ci_finished_pipeline_ch_sync_events_250  (cost=0.29..2315.95 rows=134 width=16) (actual time=0.082..0.082 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_250.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_250.processed) AND ((p_ci_finished_pipeline_ch_sync_events_250.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_250.pipeline_id, p_ci_finished_pipeline_ch_sync_events_250.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 179
                                                           Buffers: shared hit=71432
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6735_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6735 p_ci_finished_pipeline_ch_sync_events_251  (cost=0.29..35.48 rows=23 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_251.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_251.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_251.pipeline_id, p_ci_finished_pipeline_ch_sync_events_251.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6736_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6736 p_ci_finished_pipeline_ch_sync_events_252  (cost=0.42..217.95 rows=151 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_252.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_252.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_252.pipeline_id, p_ci_finished_pipeline_ch_sync_events_252.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2002
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6737_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6737 p_ci_finished_pipeline_ch_sync_events_253  (cost=0.42..331.39 rows=233 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_253.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_253.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_253.pipeline_id, p_ci_finished_pipeline_ch_sync_events_253.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6738_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6738 p_ci_finished_pipeline_ch_sync_events_254  (cost=0.42..542.92 rows=384 width=16) (actual time=0.009..0.009 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_254.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_254.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_254.pipeline_id, p_ci_finished_pipeline_ch_sync_events_254.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6739_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6739 p_ci_finished_pipeline_ch_sync_events_255  (cost=0.42..432.53 rows=304 width=16) (actual time=0.008..0.010 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_255.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_255.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_255.pipeline_id, p_ci_finished_pipeline_ch_sync_events_255.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000 read=1 dirtied=1
                                                           WAL: records=2 fpi=1 bytes=8155
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6740_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6740 p_ci_finished_pipeline_ch_sync_events_256  (cost=0.42..415.73 rows=294 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_256.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_256.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_256.pipeline_id, p_ci_finished_pipeline_ch_sync_events_256.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6741_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6741 p_ci_finished_pipeline_ch_sync_events_257  (cost=0.42..394.20 rows=277 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_257.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_257.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_257.pipeline_id, p_ci_finished_pipeline_ch_sync_events_257.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6742_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6742 p_ci_finished_pipeline_ch_sync_events_258  (cost=0.42..481.47 rows=336 width=16) (actual time=0.007..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_258.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_258.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_258.pipeline_id, p_ci_finished_pipeline_ch_sync_events_258.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2003 read=1
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6743_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6743 p_ci_finished_pipeline_ch_sync_events_259  (cost=0.42..401.92 rows=284 width=16) (actual time=0.008..0.009 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_259.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_259.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_259.pipeline_id, p_ci_finished_pipeline_ch_sync_events_259.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2002 read=1
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6744_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6744 p_ci_finished_pipeline_ch_sync_events_260  (cost=0.42..429.46 rows=302 width=16) (actual time=0.009..0.009 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_260.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_260.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_260.pipeline_id, p_ci_finished_pipeline_ch_sync_events_260.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6745_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6745 p_ci_finished_pipeline_ch_sync_events_261  (cost=0.42..451.00 rows=320 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_261.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_261.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_261.pipeline_id, p_ci_finished_pipeline_ch_sync_events_261.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6746_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6746 p_ci_finished_pipeline_ch_sync_events_262  (cost=0.42..244.01 rows=170 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_262.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_262.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_262.pipeline_id, p_ci_finished_pipeline_ch_sync_events_262.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6747_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6747 p_ci_finished_pipeline_ch_sync_events_263  (cost=0.29..49.28 rows=33 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_263.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_263.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_263.pipeline_id, p_ci_finished_pipeline_ch_sync_events_263.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6748_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6748 p_ci_finished_pipeline_ch_sync_events_264  (cost=0.42..271.63 rows=191 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_264.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_264.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_264.pipeline_id, p_ci_finished_pipeline_ch_sync_events_264.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6749_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6749 p_ci_finished_pipeline_ch_sync_events_265  (cost=0.29..1883.15 rows=111 width=16) (actual time=0.084..0.084 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_265.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_265.processed) AND ((p_ci_finished_pipeline_ch_sync_events_265.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_265.pipeline_id, p_ci_finished_pipeline_ch_sync_events_265.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 161
                                                           Buffers: shared hit=72841
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6750_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6750 p_ci_finished_pipeline_ch_sync_events_266  (cost=0.42..222.61 rows=157 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_266.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_266.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_266.pipeline_id, p_ci_finished_pipeline_ch_sync_events_266.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6751_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6751 p_ci_finished_pipeline_ch_sync_events_267  (cost=0.29..18.65 rows=12 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_267.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_267.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_267.pipeline_id, p_ci_finished_pipeline_ch_sync_events_267.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6752_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6752 p_ci_finished_pipeline_ch_sync_events_268  (cost=0.29..78.40 rows=54 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_268.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_268.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_268.pipeline_id, p_ci_finished_pipeline_ch_sync_events_268.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6753_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6753 p_ci_finished_pipeline_ch_sync_events_269  (cost=0.42..533.67 rows=376 width=16) (actual time=0.009..0.009 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_269.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_269.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_269.pipeline_id, p_ci_finished_pipeline_ch_sync_events_269.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6754_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6754 p_ci_finished_pipeline_ch_sync_events_270  (cost=0.42..469.39 rows=333 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_270.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_270.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_270.pipeline_id, p_ci_finished_pipeline_ch_sync_events_270.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6755_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6755 p_ci_finished_pipeline_ch_sync_events_271  (cost=0.42..322.22 rows=227 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_271.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_271.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_271.pipeline_id, p_ci_finished_pipeline_ch_sync_events_271.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6756_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6756 p_ci_finished_pipeline_ch_sync_events_272  (cost=0.42..432.58 rows=306 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_272.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_272.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_272.pipeline_id, p_ci_finished_pipeline_ch_sync_events_272.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6757_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6757 p_ci_finished_pipeline_ch_sync_events_273  (cost=0.42..204.21 rows=143 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_273.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_273.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_273.pipeline_id, p_ci_finished_pipeline_ch_sync_events_273.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6758_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6758 p_ci_finished_pipeline_ch_sync_events_274  (cost=0.42..199.61 rows=140 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_274.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_274.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_274.pipeline_id, p_ci_finished_pipeline_ch_sync_events_274.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6759_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6759 p_ci_finished_pipeline_ch_sync_events_275  (cost=0.42..266.99 rows=186 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_275.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_275.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_275.pipeline_id, p_ci_finished_pipeline_ch_sync_events_275.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6760_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6760 p_ci_finished_pipeline_ch_sync_events_276  (cost=0.29..63.08 rows=43 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_276.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_276.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_276.pipeline_id, p_ci_finished_pipeline_ch_sync_events_276.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6761_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6761 p_ci_finished_pipeline_ch_sync_events_277  (cost=0.29..96.79 rows=67 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_277.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_277.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_277.pipeline_id, p_ci_finished_pipeline_ch_sync_events_277.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6762_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6762 p_ci_finished_pipeline_ch_sync_events_278  (cost=0.42..191.96 rows=135 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_278.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_278.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_278.pipeline_id, p_ci_finished_pipeline_ch_sync_events_278.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6763_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6763 p_ci_finished_pipeline_ch_sync_events_279  (cost=0.29..2083.98 rows=127 width=16) (actual time=0.083..0.083 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_279.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_279.processed) AND ((p_ci_finished_pipeline_ch_sync_events_279.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_279.pipeline_id, p_ci_finished_pipeline_ch_sync_events_279.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 176
                                                           Buffers: shared hit=68484
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6764_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6764 p_ci_finished_pipeline_ch_sync_events_280  (cost=0.29..73.79 rows=50 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_280.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_280.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_280.pipeline_id, p_ci_finished_pipeline_ch_sync_events_280.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6765_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6765 p_ci_finished_pipeline_ch_sync_events_281  (cost=0.42..208.82 rows=147 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_281.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_281.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_281.pipeline_id, p_ci_finished_pipeline_ch_sync_events_281.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6766_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6766 p_ci_finished_pipeline_ch_sync_events_282  (cost=0.29..30.89 rows=20 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_282.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_282.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_282.pipeline_id, p_ci_finished_pipeline_ch_sync_events_282.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6767_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6767 p_ci_finished_pipeline_ch_sync_events_283  (cost=0.42..202.66 rows=142 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_283.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_283.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_283.pipeline_id, p_ci_finished_pipeline_ch_sync_events_283.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6768_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6768 p_ci_finished_pipeline_ch_sync_events_284  (cost=0.29..81.44 rows=55 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_284.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_284.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_284.pipeline_id, p_ci_finished_pipeline_ch_sync_events_284.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6769_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6769 p_ci_finished_pipeline_ch_sync_events_285  (cost=0.29..125.90 rows=87 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_285.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_285.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_285.pipeline_id, p_ci_finished_pipeline_ch_sync_events_285.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6770_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6770 p_ci_finished_pipeline_ch_sync_events_286  (cost=0.29..2118.55 rows=130 width=16) (actual time=0.088..0.088 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_286.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_286.processed) AND ((p_ci_finished_pipeline_ch_sync_events_286.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_286.pipeline_id, p_ci_finished_pipeline_ch_sync_events_286.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 184
                                                           Buffers: shared hit=76221
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6771_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6771 p_ci_finished_pipeline_ch_sync_events_287  (cost=0.29..99.86 rows=69 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_287.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_287.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_287.pipeline_id, p_ci_finished_pipeline_ch_sync_events_287.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6772_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6772 p_ci_finished_pipeline_ch_sync_events_288  (cost=0.29..1594.55 rows=97 width=16) (actual time=0.070..0.070 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_288.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_288.processed) AND ((p_ci_finished_pipeline_ch_sync_events_288.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_288.pipeline_id, p_ci_finished_pipeline_ch_sync_events_288.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 135
                                                           Buffers: shared hit=62690
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6773_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6773 p_ci_finished_pipeline_ch_sync_events_289  (cost=0.29..104.45 rows=72 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_289.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_289.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_289.pipeline_id, p_ci_finished_pipeline_ch_sync_events_289.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6774_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6774 p_ci_finished_pipeline_ch_sync_events_290  (cost=0.29..133.61 rows=94 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_290.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_290.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_290.pipeline_id, p_ci_finished_pipeline_ch_sync_events_290.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6775_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6775 p_ci_finished_pipeline_ch_sync_events_291  (cost=0.29..76.84 rows=52 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_291.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_291.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_291.pipeline_id, p_ci_finished_pipeline_ch_sync_events_291.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6776_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6776 p_ci_finished_pipeline_ch_sync_events_292  (cost=0.29..1652.02 rows=100 width=16) (actual time=0.071..0.071 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_292.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_292.processed) AND ((p_ci_finished_pipeline_ch_sync_events_292.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_292.pipeline_id, p_ci_finished_pipeline_ch_sync_events_292.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 140
                                                           Buffers: shared hit=63638
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6777_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6777 p_ci_finished_pipeline_ch_sync_events_293  (cost=0.29..98.33 rows=68 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_293.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_293.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_293.pipeline_id, p_ci_finished_pipeline_ch_sync_events_293.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6778_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6778 p_ci_finished_pipeline_ch_sync_events_294  (cost=0.29..2034.61 rows=125 width=16) (actual time=0.085..0.085 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_294.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_294.processed) AND ((p_ci_finished_pipeline_ch_sync_events_294.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_294.pipeline_id, p_ci_finished_pipeline_ch_sync_events_294.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 168
                                                           Buffers: shared hit=73728
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6779_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6779 p_ci_finished_pipeline_ch_sync_events_295  (cost=0.42..375.89 rows=266 width=16) (actual time=0.009..0.009 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_295.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_295.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_295.pipeline_id, p_ci_finished_pipeline_ch_sync_events_295.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6780_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6780 p_ci_finished_pipeline_ch_sync_events_296  (cost=0.42..314.53 rows=221 width=16) (actual time=0.009..0.009 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_296.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_296.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_296.pipeline_id, p_ci_finished_pipeline_ch_sync_events_296.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6781_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6781 p_ci_finished_pipeline_ch_sync_events_297  (cost=0.29..102.92 rows=71 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_297.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_297.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_297.pipeline_id, p_ci_finished_pipeline_ch_sync_events_297.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6782_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6782 p_ci_finished_pipeline_ch_sync_events_298  (cost=0.42..222.56 rows=155 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_298.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_298.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_298.pipeline_id, p_ci_finished_pipeline_ch_sync_events_298.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6783_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6783 p_ci_finished_pipeline_ch_sync_events_299  (cost=0.29..2068.73 rows=128 width=16) (actual time=0.074..0.074 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_299.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_299.processed) AND ((p_ci_finished_pipeline_ch_sync_events_299.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_299.pipeline_id, p_ci_finished_pipeline_ch_sync_events_299.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 146
                                                           Buffers: shared hit=66836
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6784_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6784 p_ci_finished_pipeline_ch_sync_events_300  (cost=0.29..2114.35 rows=131 width=16) (actual time=0.065..0.065 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_300.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_300.processed) AND ((p_ci_finished_pipeline_ch_sync_events_300.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_300.pipeline_id, p_ci_finished_pipeline_ch_sync_events_300.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 132
                                                           Buffers: shared hit=56752
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6785_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6785 p_ci_finished_pipeline_ch_sync_events_301  (cost=0.42..274.73 rows=194 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_301.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_301.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_301.pipeline_id, p_ci_finished_pipeline_ch_sync_events_301.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6786_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6786 p_ci_finished_pipeline_ch_sync_events_302  (cost=0.42..461.72 rows=327 width=16) (actual time=0.009..0.009 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_302.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_302.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_302.pipeline_id, p_ci_finished_pipeline_ch_sync_events_302.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6787_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6787 p_ci_finished_pipeline_ch_sync_events_303  (cost=0.42..395.81 rows=280 width=16) (actual time=0.008..0.010 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_303.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_303.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_303.pipeline_id, p_ci_finished_pipeline_ch_sync_events_303.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2001 read=1
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6788_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6788 p_ci_finished_pipeline_ch_sync_events_304  (cost=0.29..87.56 rows=59 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_304.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_304.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_304.pipeline_id, p_ci_finished_pipeline_ch_sync_events_304.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6789_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6789 p_ci_finished_pipeline_ch_sync_events_305  (cost=0.29..72.28 rows=50 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_305.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_305.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_305.pipeline_id, p_ci_finished_pipeline_ch_sync_events_305.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6790_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6790 p_ci_finished_pipeline_ch_sync_events_306  (cost=0.29..1705.62 rows=102 width=16) (actual time=0.067..0.067 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_306.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_306.processed) AND ((p_ci_finished_pipeline_ch_sync_events_306.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_306.pipeline_id, p_ci_finished_pipeline_ch_sync_events_306.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 125
                                                           Buffers: shared hit=56177
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6791_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6791 p_ci_finished_pipeline_ch_sync_events_307  (cost=0.42..234.87 rows=165 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_307.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_307.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_307.pipeline_id, p_ci_finished_pipeline_ch_sync_events_307.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6792_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6792 p_ci_finished_pipeline_ch_sync_events_308  (cost=0.42..351.29 rows=246 width=16) (actual time=0.009..0.009 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_308.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_308.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_308.pipeline_id, p_ci_finished_pipeline_ch_sync_events_308.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6793_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6793 p_ci_finished_pipeline_ch_sync_events_309  (cost=0.42..191.96 rows=135 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_309.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_309.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_309.pipeline_id, p_ci_finished_pipeline_ch_sync_events_309.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6794_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6794 p_ci_finished_pipeline_ch_sync_events_310  (cost=0.29..84.50 rows=57 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_310.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_310.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_310.pipeline_id, p_ci_finished_pipeline_ch_sync_events_310.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6795_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6795 p_ci_finished_pipeline_ch_sync_events_311  (cost=0.29..2051.04 rows=120 width=16) (actual time=0.082..0.082 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_311.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_311.processed) AND ((p_ci_finished_pipeline_ch_sync_events_311.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_311.pipeline_id, p_ci_finished_pipeline_ch_sync_events_311.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 151
                                                           Buffers: shared hit=66452
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6796_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6796 p_ci_finished_pipeline_ch_sync_events_312  (cost=0.29..38.54 rows=25 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_312.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_312.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_312.pipeline_id, p_ci_finished_pipeline_ch_sync_events_312.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6797_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6797 p_ci_finished_pipeline_ch_sync_events_313  (cost=0.29..1995.25 rows=117 width=16) (actual time=0.079..0.079 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_313.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_313.processed) AND ((p_ci_finished_pipeline_ch_sync_events_313.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_313.pipeline_id, p_ci_finished_pipeline_ch_sync_events_313.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 176
                                                           Buffers: shared hit=65073
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6798_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6798 p_ci_finished_pipeline_ch_sync_events_314  (cost=0.29..93.71 rows=64 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_314.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_314.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_314.pipeline_id, p_ci_finished_pipeline_ch_sync_events_314.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6799_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6799 p_ci_finished_pipeline_ch_sync_events_315  (cost=0.29..118.24 rows=82 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_315.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_315.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_315.pipeline_id, p_ci_finished_pipeline_ch_sync_events_315.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6800_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6800 p_ci_finished_pipeline_ch_sync_events_316  (cost=0.29..2019.29 rows=121 width=16) (actual time=0.079..0.079 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_316.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_316.processed) AND ((p_ci_finished_pipeline_ch_sync_events_316.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_316.pipeline_id, p_ci_finished_pipeline_ch_sync_events_316.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 144
                                                           Buffers: shared hit=68656
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6801_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6801 p_ci_finished_pipeline_ch_sync_events_317  (cost=0.29..18.62 rows=11 width=16) (actual time=0.005..0.005 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_317.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_317.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_317.pipeline_id, p_ci_finished_pipeline_ch_sync_events_317.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6802_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6802 p_ci_finished_pipeline_ch_sync_events_318  (cost=0.29..59.99 rows=40 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_318.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_318.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_318.pipeline_id, p_ci_finished_pipeline_ch_sync_events_318.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6803_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6803 p_ci_finished_pipeline_ch_sync_events_319  (cost=0.29..2051.03 rows=113 width=16) (actual time=0.071..0.071 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_319.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_319.processed) AND ((p_ci_finished_pipeline_ch_sync_events_319.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_319.pipeline_id, p_ci_finished_pipeline_ch_sync_events_319.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 133
                                                           Buffers: shared hit=61118
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6804_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6804 p_ci_finished_pipeline_ch_sync_events_320  (cost=0.42..285.36 rows=199 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_320.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_320.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_320.pipeline_id, p_ci_finished_pipeline_ch_sync_events_320.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6805_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6805 p_ci_finished_pipeline_ch_sync_events_321  (cost=0.29..112.13 rows=78 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_321.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_321.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_321.pipeline_id, p_ci_finished_pipeline_ch_sync_events_321.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6806_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6806 p_ci_finished_pipeline_ch_sync_events_322  (cost=0.42..308.40 rows=216 width=16) (actual time=0.009..0.009 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_322.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_322.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_322.pipeline_id, p_ci_finished_pipeline_ch_sync_events_322.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6807_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6807 p_ci_finished_pipeline_ch_sync_events_323  (cost=0.29..66.14 rows=45 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_323.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_323.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_323.pipeline_id, p_ci_finished_pipeline_ch_sync_events_323.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6808_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6808 p_ci_finished_pipeline_ch_sync_events_324  (cost=0.42..366.66 rows=258 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_324.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_324.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_324.pipeline_id, p_ci_finished_pipeline_ch_sync_events_324.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6809_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6809 p_ci_finished_pipeline_ch_sync_events_325  (cost=0.29..87.59 rows=60 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_325.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_325.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_325.pipeline_id, p_ci_finished_pipeline_ch_sync_events_325.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6810_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6810 p_ci_finished_pipeline_ch_sync_events_326  (cost=0.42..337.55 rows=238 width=16) (actual time=0.009..0.009 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_326.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_326.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_326.pipeline_id, p_ci_finished_pipeline_ch_sync_events_326.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6811_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6811 p_ci_finished_pipeline_ch_sync_events_327  (cost=0.29..20.16 rows=13 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_327.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_327.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_327.pipeline_id, p_ci_finished_pipeline_ch_sync_events_327.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6812_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6812 p_ci_finished_pipeline_ch_sync_events_328  (cost=0.42..411.11 rows=290 width=16) (actual time=0.009..0.009 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_328.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_328.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_328.pipeline_id, p_ci_finished_pipeline_ch_sync_events_328.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6813_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6813 p_ci_finished_pipeline_ch_sync_events_329  (cost=0.29..1662.94 rows=102 width=16) (actual time=0.071..0.071 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_329.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_329.processed) AND ((p_ci_finished_pipeline_ch_sync_events_329.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_329.pipeline_id, p_ci_finished_pipeline_ch_sync_events_329.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 137
                                                           Buffers: shared hit=65254
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6814_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6814 p_ci_finished_pipeline_ch_sync_events_330  (cost=0.42..291.56 rows=205 width=16) (actual time=0.009..0.009 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_330.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_330.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_330.pipeline_id, p_ci_finished_pipeline_ch_sync_events_330.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6815_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6815 p_ci_finished_pipeline_ch_sync_events_331  (cost=0.42..260.90 rows=183 width=16) (actual time=0.009..0.009 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_331.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_331.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_331.pipeline_id, p_ci_finished_pipeline_ch_sync_events_331.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6816_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6816 p_ci_finished_pipeline_ch_sync_events_332  (cost=0.29..1612.03 rows=95 width=16) (actual time=0.067..0.067 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_332.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_332.processed) AND ((p_ci_finished_pipeline_ch_sync_events_332.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_332.pipeline_id, p_ci_finished_pipeline_ch_sync_events_332.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 124
                                                           Buffers: shared hit=60353
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6817_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6817 p_ci_finished_pipeline_ch_sync_events_333  (cost=0.42..204.20 rows=143 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_333.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_333.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_333.pipeline_id, p_ci_finished_pipeline_ch_sync_events_333.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6818_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6818 p_ci_finished_pipeline_ch_sync_events_334  (cost=0.29..26.30 rows=17 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_334.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_334.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_334.pipeline_id, p_ci_finished_pipeline_ch_sync_events_334.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6819_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6819 p_ci_finished_pipeline_ch_sync_events_335  (cost=0.42..245.58 rows=172 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_335.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_335.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_335.pipeline_id, p_ci_finished_pipeline_ch_sync_events_335.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6820_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6820 p_ci_finished_pipeline_ch_sync_events_336  (cost=0.42..260.93 rows=184 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_336.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_336.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_336.pipeline_id, p_ci_finished_pipeline_ch_sync_events_336.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6821_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6821 p_ci_finished_pipeline_ch_sync_events_337  (cost=0.42..205.72 rows=144 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_337.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_337.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_337.pipeline_id, p_ci_finished_pipeline_ch_sync_events_337.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6822_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6822 p_ci_finished_pipeline_ch_sync_events_338  (cost=0.29..72.26 rows=49 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_338.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_338.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_338.pipeline_id, p_ci_finished_pipeline_ch_sync_events_338.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6823_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6823 p_ci_finished_pipeline_ch_sync_events_339  (cost=0.29..64.61 rows=44 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_339.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_339.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_339.pipeline_id, p_ci_finished_pipeline_ch_sync_events_339.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6824_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6824 p_ci_finished_pipeline_ch_sync_events_340  (cost=0.29..90.65 rows=62 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_340.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_340.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_340.pipeline_id, p_ci_finished_pipeline_ch_sync_events_340.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6825_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6825 p_ci_finished_pipeline_ch_sync_events_341  (cost=0.42..228.74 rows=161 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_341.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_341.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_341.pipeline_id, p_ci_finished_pipeline_ch_sync_events_341.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6826_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6826 p_ci_finished_pipeline_ch_sync_events_342  (cost=0.29..69.20 rows=47 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_342.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_342.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_342.pipeline_id, p_ci_finished_pipeline_ch_sync_events_342.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6827_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6827 p_ci_finished_pipeline_ch_sync_events_343  (cost=0.29..1521.84 rows=93 width=16) (actual time=0.071..0.071 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_343.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_343.processed) AND ((p_ci_finished_pipeline_ch_sync_events_343.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_343.pipeline_id, p_ci_finished_pipeline_ch_sync_events_343.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 131
                                                           Buffers: shared hit=62853
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6828_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6828 p_ci_finished_pipeline_ch_sync_events_344  (cost=0.29..1734.50 rows=103 width=16) (actual time=0.072..0.072 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_344.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_344.processed) AND ((p_ci_finished_pipeline_ch_sync_events_344.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_344.pipeline_id, p_ci_finished_pipeline_ch_sync_events_344.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 139
                                                           Buffers: shared hit=62644
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6829_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6829 p_ci_finished_pipeline_ch_sync_events_345  (cost=0.29..79.90 rows=54 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_345.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_345.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_345.pipeline_id, p_ci_finished_pipeline_ch_sync_events_345.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6830_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6830 p_ci_finished_pipeline_ch_sync_events_346  (cost=0.29..32.42 rows=21 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_346.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_346.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_346.pipeline_id, p_ci_finished_pipeline_ch_sync_events_346.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6831_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6831 p_ci_finished_pipeline_ch_sync_events_347  (cost=0.42..282.38 rows=199 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_347.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_347.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_347.pipeline_id, p_ci_finished_pipeline_ch_sync_events_347.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6832_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6832 p_ci_finished_pipeline_ch_sync_events_348  (cost=0.42..288.50 rows=203 width=16) (actual time=0.009..0.009 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_348.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_348.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_348.pipeline_id, p_ci_finished_pipeline_ch_sync_events_348.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6833_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6833 p_ci_finished_pipeline_ch_sync_events_349  (cost=0.29..63.05 rows=42 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_349.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_349.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_349.pipeline_id, p_ci_finished_pipeline_ch_sync_events_349.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6834_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6834 p_ci_finished_pipeline_ch_sync_events_350  (cost=0.42..421.73 rows=295 width=16) (actual time=0.009..0.009 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_350.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_350.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_350.pipeline_id, p_ci_finished_pipeline_ch_sync_events_350.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6835_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6835 p_ci_finished_pipeline_ch_sync_events_351  (cost=0.29..122.84 rows=85 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_351.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_351.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_351.pipeline_id, p_ci_finished_pipeline_ch_sync_events_351.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6836_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6836 p_ci_finished_pipeline_ch_sync_events_352  (cost=0.29..37.03 rows=25 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_352.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_352.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_352.pipeline_id, p_ci_finished_pipeline_ch_sync_events_352.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6837_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6837 p_ci_finished_pipeline_ch_sync_events_353  (cost=0.42..201.17 rows=142 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_353.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_353.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_353.pipeline_id, p_ci_finished_pipeline_ch_sync_events_353.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6838_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6838 p_ci_finished_pipeline_ch_sync_events_354  (cost=0.29..102.92 rows=71 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_354.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_354.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_354.pipeline_id, p_ci_finished_pipeline_ch_sync_events_354.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6839_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6839 p_ci_finished_pipeline_ch_sync_events_355  (cost=0.42..306.91 rows=217 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_355.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_355.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_355.pipeline_id, p_ci_finished_pipeline_ch_sync_events_355.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6840_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6840 p_ci_finished_pipeline_ch_sync_events_356  (cost=0.29..128.98 rows=90 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_356.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_356.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_356.pipeline_id, p_ci_finished_pipeline_ch_sync_events_356.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6841_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6841 p_ci_finished_pipeline_ch_sync_events_357  (cost=0.42..449.39 rows=317 width=16) (actual time=0.009..0.009 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_357.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_357.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_357.pipeline_id, p_ci_finished_pipeline_ch_sync_events_357.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6842_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6842 p_ci_finished_pipeline_ch_sync_events_358  (cost=0.42..570.44 rows=402 width=16) (actual time=0.009..0.009 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_358.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_358.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_358.pipeline_id, p_ci_finished_pipeline_ch_sync_events_358.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6843_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6843 p_ci_finished_pipeline_ch_sync_events_359  (cost=0.29..79.94 rows=55 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_359.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_359.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_359.pipeline_id, p_ci_finished_pipeline_ch_sync_events_359.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6844_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6844 p_ci_finished_pipeline_ch_sync_events_360  (cost=0.42..204.20 rows=143 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_360.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_360.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_360.pipeline_id, p_ci_finished_pipeline_ch_sync_events_360.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6845_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6845 p_ci_finished_pipeline_ch_sync_events_361  (cost=0.29..24.77 rows=16 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_361.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_361.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_361.pipeline_id, p_ci_finished_pipeline_ch_sync_events_361.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6846_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6846 p_ci_finished_pipeline_ch_sync_events_362  (cost=0.42..248.60 rows=173 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_362.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_362.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_362.pipeline_id, p_ci_finished_pipeline_ch_sync_events_362.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6847_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6847 p_ci_finished_pipeline_ch_sync_events_363  (cost=0.29..84.53 rows=58 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_363.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_363.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_363.pipeline_id, p_ci_finished_pipeline_ch_sync_events_363.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6848_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6848 p_ci_finished_pipeline_ch_sync_events_364  (cost=0.42..208.82 rows=147 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_364.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_364.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_364.pipeline_id, p_ci_finished_pipeline_ch_sync_events_364.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6849_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6849 p_ci_finished_pipeline_ch_sync_events_365  (cost=0.29..86.03 rows=58 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_365.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_365.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_365.pipeline_id, p_ci_finished_pipeline_ch_sync_events_365.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6850_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6850 p_ci_finished_pipeline_ch_sync_events_366  (cost=0.29..107.51 rows=74 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_366.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_366.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_366.pipeline_id, p_ci_finished_pipeline_ch_sync_events_366.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6851_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6851 p_ci_finished_pipeline_ch_sync_events_367  (cost=0.29..44.69 rows=30 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_367.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_367.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_367.pipeline_id, p_ci_finished_pipeline_ch_sync_events_367.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6852_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6852 p_ci_finished_pipeline_ch_sync_events_368  (cost=0.29..81.47 rows=56 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_368.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_368.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_368.pipeline_id, p_ci_finished_pipeline_ch_sync_events_368.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6853_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6853 p_ci_finished_pipeline_ch_sync_events_369  (cost=0.42..365.15 rows=258 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_369.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_369.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_369.pipeline_id, p_ci_finished_pipeline_ch_sync_events_369.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6854_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6854 p_ci_finished_pipeline_ch_sync_events_370  (cost=0.42..262.37 rows=182 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_370.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_370.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_370.pipeline_id, p_ci_finished_pipeline_ch_sync_events_370.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6855_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6855 p_ci_finished_pipeline_ch_sync_events_371  (cost=0.29..52.34 rows=35 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_371.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_371.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_371.pipeline_id, p_ci_finished_pipeline_ch_sync_events_371.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6856_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6856 p_ci_finished_pipeline_ch_sync_events_372  (cost=0.29..110.57 rows=76 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_372.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_372.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_372.pipeline_id, p_ci_finished_pipeline_ch_sync_events_372.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6857_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6857 p_ci_finished_pipeline_ch_sync_events_373  (cost=0.29..49.28 rows=33 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_373.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_373.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_373.pipeline_id, p_ci_finished_pipeline_ch_sync_events_373.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6858_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6858 p_ci_finished_pipeline_ch_sync_events_374  (cost=0.29..44.69 rows=30 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_374.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_374.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_374.pipeline_id, p_ci_finished_pipeline_ch_sync_events_374.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6859_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6859 p_ci_finished_pipeline_ch_sync_events_375  (cost=0.29..90.65 rows=62 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_375.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_375.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_375.pipeline_id, p_ci_finished_pipeline_ch_sync_events_375.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6860_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6860 p_ci_finished_pipeline_ch_sync_events_376  (cost=0.29..1750.78 rows=98 width=16) (actual time=0.067..0.067 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_376.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_376.processed) AND ((p_ci_finished_pipeline_ch_sync_events_376.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_376.pipeline_id, p_ci_finished_pipeline_ch_sync_events_376.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 128
                                                           Buffers: shared hit=58574
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6861_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6861 p_ci_finished_pipeline_ch_sync_events_377  (cost=0.42..371.24 rows=261 width=16) (actual time=0.009..0.009 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_377.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_377.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_377.pipeline_id, p_ci_finished_pipeline_ch_sync_events_377.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6862_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6862 p_ci_finished_pipeline_ch_sync_events_378  (cost=0.43..627.21 rows=444 width=16) (actual time=0.009..0.009 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_378.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_378.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_378.pipeline_id, p_ci_finished_pipeline_ch_sync_events_378.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6863_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6863 p_ci_finished_pipeline_ch_sync_events_379  (cost=0.43..1174.30 rows=831 width=16) (actual time=0.009..0.009 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_379.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_379.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_379.pipeline_id, p_ci_finished_pipeline_ch_sync_events_379.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6864_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6864 p_ci_finished_pipeline_ch_sync_events_380  (cost=0.42..222.62 rows=157 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_380.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_380.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_380.pipeline_id, p_ci_finished_pipeline_ch_sync_events_380.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6865_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6865 p_ci_finished_pipeline_ch_sync_events_381  (cost=0.29..55.40 rows=37 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_381.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_381.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_381.pipeline_id, p_ci_finished_pipeline_ch_sync_events_381.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6866_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6866 p_ci_finished_pipeline_ch_sync_events_382  (cost=0.29..115.22 rows=81 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_382.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_382.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_382.pipeline_id, p_ci_finished_pipeline_ch_sync_events_382.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6867_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6867 p_ci_finished_pipeline_ch_sync_events_383  (cost=0.29..1476.52 rows=90 width=16) (actual time=0.060..0.060 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_383.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_383.processed) AND ((p_ci_finished_pipeline_ch_sync_events_383.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_383.pipeline_id, p_ci_finished_pipeline_ch_sync_events_383.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 113
                                                           Buffers: shared hit=52455
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6868_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6868 p_ci_finished_pipeline_ch_sync_events_384  (cost=0.29..2185.79 rows=129 width=16) (actual time=0.066..0.066 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_384.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_384.processed) AND ((p_ci_finished_pipeline_ch_sync_events_384.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_384.pipeline_id, p_ci_finished_pipeline_ch_sync_events_384.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 128
                                                           Buffers: shared hit=56505
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6869_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6869 p_ci_finished_pipeline_ch_sync_events_385  (cost=0.29..38.54 rows=25 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_385.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_385.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_385.pipeline_id, p_ci_finished_pipeline_ch_sync_events_385.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6870_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6870 p_ci_finished_pipeline_ch_sync_events_386  (cost=0.42..191.96 rows=135 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_386.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_386.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_386.pipeline_id, p_ci_finished_pipeline_ch_sync_events_386.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6871_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6871 p_ci_finished_pipeline_ch_sync_events_387  (cost=0.29..2050.94 rows=93 width=16) (actual time=0.076..0.076 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_387.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_387.processed) AND ((p_ci_finished_pipeline_ch_sync_events_387.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_387.pipeline_id, p_ci_finished_pipeline_ch_sync_events_387.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 162
                                                           Buffers: shared hit=63610
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6872_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6872 p_ci_finished_pipeline_ch_sync_events_388  (cost=0.42..559.71 rows=394 width=16) (actual time=0.009..0.009 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_388.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_388.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_388.pipeline_id, p_ci_finished_pipeline_ch_sync_events_388.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6873_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6873 p_ci_finished_pipeline_ch_sync_events_389  (cost=0.42..417.22 rows=294 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_389.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_389.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_389.pipeline_id, p_ci_finished_pipeline_ch_sync_events_389.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6874_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6874 p_ci_finished_pipeline_ch_sync_events_390  (cost=0.42..415.70 rows=293 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_390.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_390.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_390.pipeline_id, p_ci_finished_pipeline_ch_sync_events_390.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6875_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6875 p_ci_finished_pipeline_ch_sync_events_391  (cost=0.42..409.54 rows=288 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_391.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_391.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_391.pipeline_id, p_ci_finished_pipeline_ch_sync_events_391.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6876_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6876 p_ci_finished_pipeline_ch_sync_events_392  (cost=0.42..567.37 rows=399 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_392.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_392.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_392.pipeline_id, p_ci_finished_pipeline_ch_sync_events_392.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6877_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6877 p_ci_finished_pipeline_ch_sync_events_393  (cost=0.42..438.64 rows=308 width=16) (actual time=0.009..0.009 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_393.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_393.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_393.pipeline_id, p_ci_finished_pipeline_ch_sync_events_393.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6878_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6878 p_ci_finished_pipeline_ch_sync_events_394  (cost=0.42..415.72 rows=294 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_394.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_394.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_394.pipeline_id, p_ci_finished_pipeline_ch_sync_events_394.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6879_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6879 p_ci_finished_pipeline_ch_sync_events_395  (cost=0.42..472.33 rows=331 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_395.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_395.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_395.pipeline_id, p_ci_finished_pipeline_ch_sync_events_395.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6880_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6880 p_ci_finished_pipeline_ch_sync_events_396  (cost=0.29..116.68 rows=80 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_396.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_396.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_396.pipeline_id, p_ci_finished_pipeline_ch_sync_events_396.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6881_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6881 p_ci_finished_pipeline_ch_sync_events_397  (cost=0.29..53.87 rows=36 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_397.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_397.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_397.pipeline_id, p_ci_finished_pipeline_ch_sync_events_397.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6882_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6882 p_ci_finished_pipeline_ch_sync_events_398  (cost=0.29..27.83 rows=18 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_398.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_398.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_398.pipeline_id, p_ci_finished_pipeline_ch_sync_events_398.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6883_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6883 p_ci_finished_pipeline_ch_sync_events_399  (cost=0.42..191.97 rows=135 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_399.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_399.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_399.pipeline_id, p_ci_finished_pipeline_ch_sync_events_399.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6884_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6884 p_ci_finished_pipeline_ch_sync_events_400  (cost=0.42..204.12 rows=140 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_400.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_400.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_400.pipeline_id, p_ci_finished_pipeline_ch_sync_events_400.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6885_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6885 p_ci_finished_pipeline_ch_sync_events_401  (cost=0.29..112.12 rows=78 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_401.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_401.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_401.pipeline_id, p_ci_finished_pipeline_ch_sync_events_401.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6886_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6886 p_ci_finished_pipeline_ch_sync_events_402  (cost=0.29..70.71 rows=48 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_402.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_402.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_402.pipeline_id, p_ci_finished_pipeline_ch_sync_events_402.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6887_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6887 p_ci_finished_pipeline_ch_sync_events_403  (cost=0.29..26.30 rows=17 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_403.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_403.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_403.pipeline_id, p_ci_finished_pipeline_ch_sync_events_403.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6888_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6888 p_ci_finished_pipeline_ch_sync_events_404  (cost=0.42..210.35 rows=148 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_404.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_404.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_404.pipeline_id, p_ci_finished_pipeline_ch_sync_events_404.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6889_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6889 p_ci_finished_pipeline_ch_sync_events_405  (cost=0.29..1737.13 rows=107 width=16) (actual time=0.061..0.061 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_405.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_405.processed) AND ((p_ci_finished_pipeline_ch_sync_events_405.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_405.pipeline_id, p_ci_finished_pipeline_ch_sync_events_405.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 115
                                                           Buffers: shared hit=55288
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6890_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6890 p_ci_finished_pipeline_ch_sync_events_406  (cost=0.42..210.34 rows=148 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_406.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_406.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_406.pipeline_id, p_ci_finished_pipeline_ch_sync_events_406.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6891_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6891 p_ci_finished_pipeline_ch_sync_events_407  (cost=0.42..385.03 rows=271 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_407.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_407.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_407.pipeline_id, p_ci_finished_pipeline_ch_sync_events_407.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6892_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6892 p_ci_finished_pipeline_ch_sync_events_408  (cost=0.42..334.43 rows=234 width=16) (actual time=0.009..0.009 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_408.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_408.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_408.pipeline_id, p_ci_finished_pipeline_ch_sync_events_408.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6893_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6893 p_ci_finished_pipeline_ch_sync_events_409  (cost=0.29..32.42 rows=21 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_409.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_409.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_409.pipeline_id, p_ci_finished_pipeline_ch_sync_events_409.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6894_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6894 p_ci_finished_pipeline_ch_sync_events_410  (cost=0.29..61.55 rows=42 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_410.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_410.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_410.pipeline_id, p_ci_finished_pipeline_ch_sync_events_410.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6895_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6895 p_ci_finished_pipeline_ch_sync_events_411  (cost=0.42..294.62 rows=207 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_411.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_411.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_411.pipeline_id, p_ci_finished_pipeline_ch_sync_events_411.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6896_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6896 p_ci_finished_pipeline_ch_sync_events_412  (cost=0.42..276.22 rows=194 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_412.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_412.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_412.pipeline_id, p_ci_finished_pipeline_ch_sync_events_412.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6897_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6897 p_ci_finished_pipeline_ch_sync_events_413  (cost=0.29..2111.88 rows=130 width=16) (actual time=0.068..0.068 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_413.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_413.processed) AND ((p_ci_finished_pipeline_ch_sync_events_413.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_413.pipeline_id, p_ci_finished_pipeline_ch_sync_events_413.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 125
                                                           Buffers: shared hit=58797
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6898_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6898 p_ci_finished_pipeline_ch_sync_events_414  (cost=0.42..389.63 rows=274 width=16) (actual time=0.009..0.009 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_414.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_414.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_414.pipeline_id, p_ci_finished_pipeline_ch_sync_events_414.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6899_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6899 p_ci_finished_pipeline_ch_sync_events_415  (cost=0.42..219.55 rows=155 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_415.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_415.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_415.pipeline_id, p_ci_finished_pipeline_ch_sync_events_415.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6900_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6900 p_ci_finished_pipeline_ch_sync_events_416  (cost=0.29..84.53 rows=58 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_416.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_416.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_416.pipeline_id, p_ci_finished_pipeline_ch_sync_events_416.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6901_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6901 p_ci_finished_pipeline_ch_sync_events_417  (cost=0.29..18.62 rows=11 width=16) (actual time=0.005..0.005 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_417.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_417.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_417.pipeline_id, p_ci_finished_pipeline_ch_sync_events_417.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6902_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6902 p_ci_finished_pipeline_ch_sync_events_418  (cost=0.42..248.67 rows=175 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_418.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_418.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_418.pipeline_id, p_ci_finished_pipeline_ch_sync_events_418.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6903_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6903 p_ci_finished_pipeline_ch_sync_events_419  (cost=0.29..83.00 rows=57 width=16) (actual time=0.007..0.007 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_419.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_419.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_419.pipeline_id, p_ci_finished_pipeline_ch_sync_events_419.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6904_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6904 p_ci_finished_pipeline_ch_sync_events_420  (cost=0.42..568.98 rows=403 width=16) (actual time=0.009..0.009 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_420.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_420.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_420.pipeline_id, p_ci_finished_pipeline_ch_sync_events_420.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6905_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6905 p_ci_finished_pipeline_ch_sync_events_421  (cost=0.29..64.58 rows=43 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_421.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_421.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_421.pipeline_id, p_ci_finished_pipeline_ch_sync_events_421.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1502
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6906_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6906 p_ci_finished_pipeline_ch_sync_events_422  (cost=0.29..2042.71 rows=114 width=16) (actual time=0.070..0.070 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_422.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_422.processed) AND ((p_ci_finished_pipeline_ch_sync_events_422.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_422.pipeline_id, p_ci_finished_pipeline_ch_sync_events_422.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 125
                                                           Buffers: shared hit=58980
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6907_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6907 p_ci_finished_pipeline_ch_sync_events_423  (cost=0.42..250.13 rows=174 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_423.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_423.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_423.pipeline_id, p_ci_finished_pipeline_ch_sync_events_423.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6908_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6908 p_ci_finished_pipeline_ch_sync_events_424  (cost=0.29..33.95 rows=22 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_424.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_424.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_424.pipeline_id, p_ci_finished_pipeline_ch_sync_events_424.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6909_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6909 p_ci_finished_pipeline_ch_sync_events_425  (cost=0.42..204.21 rows=143 width=16) (actual time=0.008..0.008 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_425.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_425.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_425.pipeline_id, p_ci_finished_pipeline_ch_sync_events_425.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6910_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6910 p_ci_finished_pipeline_ch_sync_events_426  (cost=0.29..23.24 rows=15 width=16) (actual time=0.006..0.006 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_426.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_426.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_426.pipeline_id, p_ci_finished_pipeline_ch_sync_events_426.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1500
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6911_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6911 p_ci_finished_pipeline_ch_sync_events_427  (cost=0.29..2194.36 rows=129 width=16) (actual time=0.064..0.064 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_427.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_427.processed) AND ((p_ci_finished_pipeline_ch_sync_events_427.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_427.pipeline_id, p_ci_finished_pipeline_ch_sync_events_427.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 130
                                                           Buffers: shared hit=56062
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6912_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6912 p_ci_finished_pipeline_ch_sync_events_428  (cost=0.43..1155.94 rows=819 width=16) (actual time=0.010..0.010 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_428.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_428.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_428.pipeline_id, p_ci_finished_pipeline_ch_sync_events_428.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=2000
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6913_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6913 p_ci_finished_pipeline_ch_sync_events_429  (cost=0.29..1795.80 rows=108 width=16) (actual time=0.063..0.063 rows=1 loops=500)
                                                           Index Cond: (p_ci_finished_pipeline_ch_sync_events_429.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"])
                                                           Filter: ((NOT p_ci_finished_pipeline_ch_sync_events_429.processed) AND ((p_ci_finished_pipeline_ch_sync_events_429.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (ROW(p_ci_finished_pipeline_ch_sync_events_429.pipeline_id, p_ci_finished_pipeline_ch_sync_events_429.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"])))
                                                           Rows Removed by Filter: 115
                                                           Buffers: shared hit=56880
                                                     ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6914_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6914 p_ci_finished_pipeline_ch_sync_events_430  (cost=0.29..102.92 rows=71 width=16) (actual time=0.007..0.017 rows=1 loops=500)
                                                           Index Cond: (((p_ci_finished_pipeline_ch_sync_events_430.pipeline_id % '100'::bigint) = (recursive_keyset_cte.array_cte_pipeline_id_partition_array)[u."position"]) AND (p_ci_finished_pipeline_ch_sync_events_430.pipeline_id >= (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"]))
                                                           Filter: (ROW(p_ci_finished_pipeline_ch_sync_events_430.pipeline_id, p_ci_finished_pipeline_ch_sync_events_430.project_namespace_id) > ROW((recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_pipeline_id_array)[u."position"], (recursive_keyset_cte.p_ci_finished_pipeline_ch_sync_events_project_namespace_id_arra)[u."position"]))
                                                           Rows Removed by Filter: 0
                                                           Buffers: shared hit=1551 read=7 dirtied=6
                                                           WAL: records=8 fpi=6 bytes=44894
Settings: jit = 'off', seq_page_cost = '4', work_mem = '100MB', effective_cache_size = '338688MB', random_page_cost = '1.5'
New query (single worker)

https://console.postgres.ai/gitlab/gitlab-production-ci/sessions/45405/commands/139218

CREATE INDEX index_p_ci_finished_pipeline_ch_sync_events_on_pipeline_id ON p_ci_finished_pipeline_ch_sync_events USING btree (pipeline_id) WHERE (processed = false);

gitlabhq_dblab> SELECT "p_ci_finished_pipeline_ch_sync_events"."pipeline_id"
 FROM "p_ci_finished_pipeline_ch_sync_events"
 WHERE "p_ci_finished_pipeline_ch_sync_events"."processed" = FALSE
 ORDER BY "p_ci_finished_pipeline_ch_sync_events"."pipeline_id" ASC
 LIMIT 1

+-------------+
| pipeline_id |
|-------------|
| 738072341   |
+-------------+

gitlabhq_dblab> SELECT "p_ci_finished_pipeline_ch_sync_events"."pipeline_id"
 FROM "p_ci_finished_pipeline_ch_sync_events"
 WHERE "p_ci_finished_pipeline_ch_sync_events"."processed" = FALSE
   AND "p_ci_finished_pipeline_ch_sync_events"."pipeline_id" >= 738072341
 ORDER BY "p_ci_finished_pipeline_ch_sync_events"."pipeline_id" ASC
 LIMIT 1 OFFSET 500

+-------------+
| pipeline_id |
|-------------|
| 2138905647  |
+-------------+
SELECT 1

SELECT "p_ci_finished_pipeline_ch_sync_events"."pipeline_id",
  "p_ci_finished_pipeline_ch_sync_events"."project_namespace_id",
  "p_ci_finished_pipeline_ch_sync_events"."pipeline_finished_at", "p_ci_finished_pipeline_ch_sync_events"."processed"
FROM "p_ci_finished_pipeline_ch_sync_events"
WHERE "p_ci_finished_pipeline_ch_sync_events"."processed" = FALSE
  AND "p_ci_finished_pipeline_ch_sync_events"."pipeline_id" >= 738072341
  AND "p_ci_finished_pipeline_ch_sync_events"."pipeline_id" < 2138905647
 Append  (cost=0.25..129420.50 rows=282014 width=25) (actual time=1.508..263.424 rows=500 loops=1)
   Buffers: shared hit=190124 read=1091 dirtied=257
   WAL: records=349 fpi=257 bytes=1964263
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6702_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6702 p_ci_finished_pipeline_ch_sync_events_1  (cost=0.25..3.27 rows=1 width=25) (actual time=1.507..1.510 rows=1 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_1.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_1.pipeline_id < 2138905647))
         Buffers: shared hit=3 read=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6703_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6703 p_ci_finished_pipeline_ch_sync_events_2  (cost=0.12..3.14 rows=1 width=25) (actual time=0.015..0.015 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_2.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_2.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6704_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6704 p_ci_finished_pipeline_ch_sync_events_3  (cost=0.25..3.27 rows=1 width=25) (actual time=0.932..0.935 rows=1 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_3.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_3.pipeline_id < 2138905647))
         Buffers: shared hit=3 read=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6705_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6705 p_ci_finished_pipeline_ch_sync_events_4  (cost=0.12..3.14 rows=1 width=25) (actual time=0.016..0.016 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_4.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_4.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6706_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6706 p_ci_finished_pipeline_ch_sync_events_5  (cost=0.12..252.24 rows=171 width=25) (actual time=0.006..0.006 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_5.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_5.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6707_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6707 p_ci_finished_pipeline_ch_sync_events_6  (cost=0.12..3.14 rows=1 width=25) (actual time=0.011..0.011 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_6.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_6.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6708_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6708 p_ci_finished_pipeline_ch_sync_events_7  (cost=0.12..3.14 rows=1 width=25) (actual time=0.006..0.006 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_7.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_7.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6709_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6709 p_ci_finished_pipeline_ch_sync_events_8  (cost=0.12..3.14 rows=1 width=25) (actual time=0.005..0.006 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_8.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_8.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6710_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6710 p_ci_finished_pipeline_ch_sync_events_9  (cost=0.12..3.14 rows=1 width=25) (actual time=0.004..0.005 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_9.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_9.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6711_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6711 p_ci_finished_pipeline_ch_sync_events_10  (cost=0.12..3.14 rows=1 width=25) (actual time=0.005..0.005 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_10.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_10.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6712_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6712 p_ci_finished_pipeline_ch_sync_events_11  (cost=0.12..3.14 rows=1 width=25) (actual time=0.013..0.013 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_11.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_11.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6713_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6713 p_ci_finished_pipeline_ch_sync_events_12  (cost=0.12..3.14 rows=1 width=25) (actual time=0.017..0.017 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_12.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_12.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6714_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6714 p_ci_finished_pipeline_ch_sync_events_13  (cost=0.12..3.14 rows=1 width=25) (actual time=0.009..0.010 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_13.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_13.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6715_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6715 p_ci_finished_pipeline_ch_sync_events_14  (cost=0.12..3.14 rows=1 width=25) (actual time=0.009..0.009 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_14.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_14.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6716_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6716 p_ci_finished_pipeline_ch_sync_events_15  (cost=0.12..3.14 rows=1 width=25) (actual time=0.005..0.005 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_15.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_15.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6717_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6717 p_ci_finished_pipeline_ch_sync_events_16  (cost=0.12..3.14 rows=1 width=25) (actual time=0.006..0.006 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_16.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_16.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6718_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6718 p_ci_finished_pipeline_ch_sync_events_17  (cost=0.12..3.14 rows=1 width=25) (actual time=0.006..0.006 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_17.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_17.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6719_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6719 p_ci_finished_pipeline_ch_sync_events_18  (cost=0.12..3.14 rows=1 width=25) (actual time=0.004..0.005 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_18.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_18.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6720_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6720 p_ci_finished_pipeline_ch_sync_events_19  (cost=0.12..3.14 rows=1 width=25) (actual time=0.005..0.006 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_19.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_19.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6721_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6721 p_ci_finished_pipeline_ch_sync_events_20  (cost=0.12..3.14 rows=1 width=25) (actual time=0.005..0.005 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_20.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_20.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6722_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6722 p_ci_finished_pipeline_ch_sync_events_21  (cost=0.12..3.14 rows=1 width=25) (actual time=0.005..0.005 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_21.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_21.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6723_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6723 p_ci_finished_pipeline_ch_sync_events_22  (cost=0.12..3.14 rows=1 width=25) (actual time=0.007..0.008 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_22.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_22.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6724_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6724 p_ci_finished_pipeline_ch_sync_events_23  (cost=0.12..3.14 rows=1 width=25) (actual time=0.005..0.005 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_23.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_23.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6725_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6725 p_ci_finished_pipeline_ch_sync_events_24  (cost=0.12..3.14 rows=1 width=25) (actual time=0.011..0.011 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_24.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_24.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6726_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6726 p_ci_finished_pipeline_ch_sync_events_25  (cost=0.12..3.14 rows=1 width=25) (actual time=0.004..0.004 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_25.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_25.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6727_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6727 p_ci_finished_pipeline_ch_sync_events_26  (cost=0.12..3.14 rows=1 width=25) (actual time=0.007..0.007 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_26.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_26.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6728_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6728 p_ci_finished_pipeline_ch_sync_events_27  (cost=0.12..3.14 rows=1 width=25) (actual time=0.005..0.006 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_27.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_27.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6729_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6729 p_ci_finished_pipeline_ch_sync_events_28  (cost=0.25..3.26 rows=1 width=25) (actual time=0.083..0.083 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_28.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_28.pipeline_id < 2138905647))
         Buffers: shared hit=44
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6730_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6730 p_ci_finished_pipeline_ch_sync_events_29  (cost=0.12..3.14 rows=1 width=25) (actual time=0.004..0.004 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_29.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_29.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6731_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6731 p_ci_finished_pipeline_ch_sync_events_30  (cost=0.12..3.14 rows=1 width=25) (actual time=0.004..0.004 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_30.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_30.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6732_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6732 p_ci_finished_pipeline_ch_sync_events_31  (cost=0.12..3.12 rows=1 width=25) (actual time=0.005..0.005 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_31.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_31.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6733_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6733 p_ci_finished_pipeline_ch_sync_events_32  (cost=0.12..3.14 rows=1 width=25) (actual time=0.014..0.014 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_32.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_32.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6734_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6734 p_ci_finished_pipeline_ch_sync_events_33  (cost=0.12..3.14 rows=1 width=25) (actual time=0.005..0.005 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_33.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_33.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6735_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6735 p_ci_finished_pipeline_ch_sync_events_34  (cost=0.12..3.14 rows=1 width=25) (actual time=0.004..0.005 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_34.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_34.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6736_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6736 p_ci_finished_pipeline_ch_sync_events_35  (cost=0.12..3.14 rows=1 width=25) (actual time=0.005..0.005 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_35.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_35.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6737_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6737 p_ci_finished_pipeline_ch_sync_events_36  (cost=0.12..3.14 rows=1 width=25) (actual time=0.005..0.006 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_36.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_36.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6738_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6738 p_ci_finished_pipeline_ch_sync_events_37  (cost=0.12..3.14 rows=1 width=25) (actual time=0.006..0.007 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_37.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_37.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6739_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6739 p_ci_finished_pipeline_ch_sync_events_38  (cost=0.12..3.14 rows=1 width=25) (actual time=0.005..0.005 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_38.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_38.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6740_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6740 p_ci_finished_pipeline_ch_sync_events_39  (cost=0.12..3.14 rows=1 width=25) (actual time=0.005..0.005 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_39.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_39.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6741_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6741 p_ci_finished_pipeline_ch_sync_events_40  (cost=0.12..3.14 rows=1 width=25) (actual time=0.004..0.004 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_40.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_40.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6742_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6742 p_ci_finished_pipeline_ch_sync_events_41  (cost=0.12..3.14 rows=1 width=25) (actual time=0.005..0.005 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_41.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_41.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6743_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6743 p_ci_finished_pipeline_ch_sync_events_42  (cost=0.12..3.14 rows=1 width=25) (actual time=0.006..0.006 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_42.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_42.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6744_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6744 p_ci_finished_pipeline_ch_sync_events_43  (cost=0.12..3.14 rows=1 width=25) (actual time=0.005..0.005 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_43.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_43.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6745_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6745 p_ci_finished_pipeline_ch_sync_events_44  (cost=0.12..3.14 rows=1 width=25) (actual time=0.011..0.011 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_44.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_44.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6746_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6746 p_ci_finished_pipeline_ch_sync_events_45  (cost=0.12..3.14 rows=1 width=25) (actual time=0.004..0.004 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_45.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_45.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6747_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6747 p_ci_finished_pipeline_ch_sync_events_46  (cost=0.12..3.14 rows=1 width=25) (actual time=0.011..0.011 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_46.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_46.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6748_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6748 p_ci_finished_pipeline_ch_sync_events_47  (cost=0.12..3.14 rows=1 width=25) (actual time=0.005..0.006 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_47.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_47.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6749_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6749 p_ci_finished_pipeline_ch_sync_events_48  (cost=0.12..3.14 rows=1 width=25) (actual time=0.006..0.006 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_48.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_48.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6750_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6750 p_ci_finished_pipeline_ch_sync_events_49  (cost=0.12..3.14 rows=1 width=25) (actual time=0.004..0.004 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_49.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_49.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6751_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6751 p_ci_finished_pipeline_ch_sync_events_50  (cost=0.12..3.14 rows=1 width=25) (actual time=0.004..0.004 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_50.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_50.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6752_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6752 p_ci_finished_pipeline_ch_sync_events_51  (cost=0.12..3.14 rows=1 width=25) (actual time=0.005..0.005 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_51.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_51.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6753_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6753 p_ci_finished_pipeline_ch_sync_events_52  (cost=0.12..3.14 rows=1 width=25) (actual time=0.006..0.007 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_52.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_52.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6754_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6754 p_ci_finished_pipeline_ch_sync_events_53  (cost=0.12..3.14 rows=1 width=25) (actual time=0.005..0.005 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_53.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_53.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6755_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6755 p_ci_finished_pipeline_ch_sync_events_54  (cost=0.12..3.14 rows=1 width=25) (actual time=0.004..0.004 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_54.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_54.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6756_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6756 p_ci_finished_pipeline_ch_sync_events_55  (cost=0.12..3.14 rows=1 width=25) (actual time=0.004..0.004 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_55.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_55.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6757_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6757 p_ci_finished_pipeline_ch_sync_events_56  (cost=0.12..3.14 rows=1 width=25) (actual time=0.005..0.005 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_56.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_56.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6758_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6758 p_ci_finished_pipeline_ch_sync_events_57  (cost=0.12..3.14 rows=1 width=25) (actual time=0.005..0.005 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_57.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_57.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6759_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6759 p_ci_finished_pipeline_ch_sync_events_58  (cost=0.12..3.14 rows=1 width=25) (actual time=0.010..0.010 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_58.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_58.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6760_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6760 p_ci_finished_pipeline_ch_sync_events_59  (cost=0.12..3.14 rows=1 width=25) (actual time=0.005..0.005 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_59.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_59.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6761_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6761 p_ci_finished_pipeline_ch_sync_events_60  (cost=0.12..3.14 rows=1 width=25) (actual time=0.013..0.013 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_60.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_60.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6762_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6762 p_ci_finished_pipeline_ch_sync_events_61  (cost=0.12..3.14 rows=1 width=25) (actual time=0.007..0.007 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_61.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_61.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6763_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6763 p_ci_finished_pipeline_ch_sync_events_62  (cost=0.12..3.14 rows=1 width=25) (actual time=0.006..0.006 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_62.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_62.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6764_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6764 p_ci_finished_pipeline_ch_sync_events_63  (cost=0.12..3.14 rows=1 width=25) (actual time=0.005..0.006 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_63.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_63.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6765_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6765 p_ci_finished_pipeline_ch_sync_events_64  (cost=0.12..3.14 rows=1 width=25) (actual time=0.004..0.004 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_64.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_64.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6766_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6766 p_ci_finished_pipeline_ch_sync_events_65  (cost=0.12..3.14 rows=1 width=25) (actual time=0.005..0.005 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_65.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_65.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6767_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6767 p_ci_finished_pipeline_ch_sync_events_66  (cost=0.12..3.14 rows=1 width=25) (actual time=0.011..0.012 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_66.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_66.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6768_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6768 p_ci_finished_pipeline_ch_sync_events_67  (cost=0.12..3.14 rows=1 width=25) (actual time=0.006..0.006 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_67.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_67.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6769_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6769 p_ci_finished_pipeline_ch_sync_events_68  (cost=0.12..3.14 rows=1 width=25) (actual time=0.004..0.004 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_68.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_68.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6770_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6770 p_ci_finished_pipeline_ch_sync_events_69  (cost=0.12..3.14 rows=1 width=25) (actual time=0.005..0.005 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_69.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_69.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6771_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6771 p_ci_finished_pipeline_ch_sync_events_70  (cost=0.12..3.14 rows=1 width=25) (actual time=0.006..0.006 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_70.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_70.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6772_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6772 p_ci_finished_pipeline_ch_sync_events_71  (cost=0.12..3.14 rows=1 width=25) (actual time=0.005..0.005 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_71.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_71.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6773_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6773 p_ci_finished_pipeline_ch_sync_events_72  (cost=0.12..3.14 rows=1 width=25) (actual time=0.006..0.006 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_72.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_72.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6774_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6774 p_ci_finished_pipeline_ch_sync_events_73  (cost=0.12..3.14 rows=1 width=25) (actual time=0.004..0.004 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_73.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_73.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6775_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6775 p_ci_finished_pipeline_ch_sync_events_74  (cost=0.12..3.14 rows=1 width=25) (actual time=0.004..0.004 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_74.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_74.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6776_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6776 p_ci_finished_pipeline_ch_sync_events_75  (cost=0.12..3.14 rows=1 width=25) (actual time=0.031..0.031 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_75.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_75.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6777_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6777 p_ci_finished_pipeline_ch_sync_events_76  (cost=0.12..3.14 rows=1 width=25) (actual time=0.005..0.005 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_76.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_76.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6778_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6778 p_ci_finished_pipeline_ch_sync_events_77  (cost=0.12..3.14 rows=1 width=25) (actual time=0.006..0.007 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_77.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_77.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6779_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6779 p_ci_finished_pipeline_ch_sync_events_78  (cost=0.12..3.14 rows=1 width=25) (actual time=0.004..0.004 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_78.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_78.pipeline_id < 2138905647))
         Buffers: shared hit=1
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6780_expr_pipeline_id_idx on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6780 p_ci_finished_pipeline_ch_sync_events_79  (cost=0.41..3728.33 rows=26557 width=25) (actual time=1.856..31.791 rows=378 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_79.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_79.pipeline_id < 2138905647))
         Buffers: shared hit=401 read=223 dirtied=44
         WAL: records=44 fpi=44 bytes=342196
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6781_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6781 p_ci_finished_pipeline_ch_sync_events_80  (cost=0.29..676.89 rows=4133 width=25) (actual time=2.519..2.526 rows=18 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_80.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_80.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_80.processed)
         Rows Removed by Filter: 4619
         Buffers: shared hit=3989
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6782_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6782 p_ci_finished_pipeline_ch_sync_events_81  (cost=0.42..1333.16 rows=6469 width=25) (actual time=4.184..4.187 rows=6 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_81.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_81.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_81.processed)
         Rows Removed by Filter: 6550
         Buffers: shared hit=6297
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6783_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6783 p_ci_finished_pipeline_ch_sync_events_82  (cost=0.29..890.54 rows=3684 width=25) (actual time=2.579..2.632 rows=5 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_82.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_82.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_82.processed)
         Rows Removed by Filter: 3851
         Buffers: shared hit=3668
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6784_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6784 p_ci_finished_pipeline_ch_sync_events_83  (cost=0.29..883.15 rows=3299 width=25) (actual time=2.089..2.109 rows=2 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_83.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_83.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_83.processed)
         Rows Removed by Filter: 3445
         Buffers: shared hit=3109
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6785_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6785 p_ci_finished_pipeline_ch_sync_events_84  (cost=0.42..1303.42 rows=4927 width=25) (actual time=2.315..2.316 rows=2 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_84.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_84.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_84.processed)
         Rows Removed by Filter: 5158
         Buffers: shared hit=4076
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6786_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6786 p_ci_finished_pipeline_ch_sync_events_85  (cost=0.42..1913.56 rows=6609 width=25) (actual time=5.148..5.195 rows=1 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_85.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_85.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_85.processed)
         Rows Removed by Filter: 6814
         Buffers: shared hit=6266
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6787_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6787 p_ci_finished_pipeline_ch_sync_events_86  (cost=0.42..1752.90 rows=6603 width=25) (actual time=2.897..2.898 rows=1 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_86.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_86.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_86.processed)
         Rows Removed by Filter: 6899
         Buffers: shared hit=5134
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6788_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6788 p_ci_finished_pipeline_ch_sync_events_87  (cost=0.29..810.77 rows=3819 width=25) (actual time=19.289..19.289 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_87.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_87.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_87.processed)
         Rows Removed by Filter: 4021
         Buffers: shared hit=928 read=372 dirtied=47
         WAL: records=64 fpi=47 bytes=346053
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6789_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6789 p_ci_finished_pipeline_ch_sync_events_88  (cost=0.29..443.14 rows=2114 width=25) (actual time=0.848..0.848 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_88.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_88.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_88.processed)
         Rows Removed by Filter: 2293
         Buffers: shared hit=1932
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6790_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6790 p_ci_finished_pipeline_ch_sync_events_89  (cost=0.29..739.61 rows=2672 width=25) (actual time=1.472..1.473 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_89.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_89.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_89.processed)
         Rows Removed by Filter: 2811
         Buffers: shared hit=2500
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6791_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6791 p_ci_finished_pipeline_ch_sync_events_90  (cost=0.42..1103.87 rows=3125 width=25) (actual time=3.107..3.108 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_90.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_90.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_90.processed)
         Rows Removed by Filter: 3247
         Buffers: shared hit=2905
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6792_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6792 p_ci_finished_pipeline_ch_sync_events_91  (cost=0.42..1547.13 rows=4601 width=25) (actual time=4.293..4.293 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_91.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_91.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_91.processed)
         Rows Removed by Filter: 4808
         Buffers: shared hit=4072
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6793_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6793 p_ci_finished_pipeline_ch_sync_events_92  (cost=0.42..858.05 rows=2440 width=25) (actual time=1.799..1.800 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_92.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_92.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_92.processed)
         Rows Removed by Filter: 2544
         Buffers: shared hit=2091
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6794_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6794 p_ci_finished_pipeline_ch_sync_events_93  (cost=0.29..543.83 rows=2166 width=25) (actual time=1.520..1.520 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_93.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_93.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_93.processed)
         Rows Removed by Filter: 2285
         Buffers: shared hit=1769
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6795_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6795 p_ci_finished_pipeline_ch_sync_events_94  (cost=0.29..830.80 rows=2587 width=25) (actual time=2.159..2.255 rows=1 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_94.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_94.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_94.processed)
         Rows Removed by Filter: 2455
         Buffers: shared hit=1996
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6796_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6796 p_ci_finished_pipeline_ch_sync_events_95  (cost=0.29..272.05 rows=434 width=25) (actual time=0.602..0.603 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_95.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_95.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_95.processed)
         Rows Removed by Filter: 440
         Buffers: shared hit=331
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6797_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6797 p_ci_finished_pipeline_ch_sync_events_96  (cost=0.29..879.05 rows=3023 width=25) (actual time=1.803..1.803 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_96.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_96.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_96.processed)
         Rows Removed by Filter: 3460
         Buffers: shared hit=2588
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6798_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6798 p_ci_finished_pipeline_ch_sync_events_97  (cost=0.29..508.78 rows=887 width=25) (actual time=0.482..0.482 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_97.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_97.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_97.processed)
         Rows Removed by Filter: 914
         Buffers: shared hit=744
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6799_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6799 p_ci_finished_pipeline_ch_sync_events_98  (cost=0.29..616.57 rows=1992 width=25) (actual time=2.107..2.108 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_98.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_98.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_98.processed)
         Rows Removed by Filter: 1967
         Buffers: shared hit=1497
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6800_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6800 p_ci_finished_pipeline_ch_sync_events_99  (cost=0.29..806.86 rows=2803 width=25) (actual time=2.371..2.371 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_99.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_99.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_99.processed)
         Rows Removed by Filter: 2873
         Buffers: shared hit=2501
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6801_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6801 p_ci_finished_pipeline_ch_sync_events_100  (cost=0.28..113.34 rows=508 width=25) (actual time=0.355..0.356 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_100.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_100.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_100.processed)
         Rows Removed by Filter: 552
         Buffers: shared hit=538
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6802_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6802 p_ci_finished_pipeline_ch_sync_events_101  (cost=0.29..352.63 rows=1042 width=25) (actual time=0.479..0.479 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_101.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_101.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_101.processed)
         Rows Removed by Filter: 917
         Buffers: shared hit=708
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6803_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6803 p_ci_finished_pipeline_ch_sync_events_102  (cost=0.29..893.53 rows=2647 width=25) (actual time=2.360..2.360 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_102.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_102.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_102.processed)
         Rows Removed by Filter: 2762
         Buffers: shared hit=2418
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6804_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6804 p_ci_finished_pipeline_ch_sync_events_103  (cost=0.42..1357.72 rows=3294 width=25) (actual time=2.404..2.404 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_103.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_103.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_103.processed)
         Rows Removed by Filter: 3374
         Buffers: shared hit=2980
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6805_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6805 p_ci_finished_pipeline_ch_sync_events_104  (cost=0.29..632.86 rows=2058 width=25) (actual time=1.651..1.651 rows=1 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_104.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_104.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_104.processed)
         Rows Removed by Filter: 2157
         Buffers: shared hit=1714
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6806_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6806 p_ci_finished_pipeline_ch_sync_events_105  (cost=0.42..1377.95 rows=3265 width=25) (actual time=2.860..2.862 rows=2 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_105.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_105.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_105.processed)
         Rows Removed by Filter: 3370
         Buffers: shared hit=2843
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6807_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6807 p_ci_finished_pipeline_ch_sync_events_106  (cost=0.29..359.74 rows=526 width=25) (actual time=0.324..0.324 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_106.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_106.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_106.processed)
         Rows Removed by Filter: 538
         Buffers: shared hit=433
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6808_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6808 p_ci_finished_pipeline_ch_sync_events_107  (cost=0.42..1495.16 rows=2834 width=25) (actual time=2.612..2.613 rows=1 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_107.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_107.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_107.processed)
         Rows Removed by Filter: 2902
         Buffers: shared hit=2429
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6809_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6809 p_ci_finished_pipeline_ch_sync_events_108  (cost=0.29..417.55 rows=564 width=25) (actual time=0.628..0.673 rows=1 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_108.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_108.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_108.processed)
         Rows Removed by Filter: 569
         Buffers: shared hit=488
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6810_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6810 p_ci_finished_pipeline_ch_sync_events_109  (cost=0.42..1268.08 rows=2208 width=25) (actual time=2.438..2.438 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_109.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_109.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_109.processed)
         Rows Removed by Filter: 2285
         Buffers: shared hit=1929
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6811_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6811 p_ci_finished_pipeline_ch_sync_events_110  (cost=0.29..113.38 rows=136 width=25) (actual time=0.148..0.148 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_110.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_110.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_110.processed)
         Rows Removed by Filter: 139
         Buffers: shared hit=107
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6812_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6812 p_ci_finished_pipeline_ch_sync_events_111  (cost=0.42..1518.36 rows=2562 width=25) (actual time=1.754..1.755 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_111.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_111.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_111.processed)
         Rows Removed by Filter: 2596
         Buffers: shared hit=2140
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6813_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6813 p_ci_finished_pipeline_ch_sync_events_112  (cost=0.29..677.48 rows=1015 width=25) (actual time=0.874..0.874 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_112.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_112.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_112.processed)
         Rows Removed by Filter: 1037
         Buffers: shared hit=901
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6814_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6814 p_ci_finished_pipeline_ch_sync_events_113  (cost=0.42..1088.86 rows=1721 width=25) (actual time=1.218..1.218 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_113.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_113.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_113.processed)
         Rows Removed by Filter: 1773
         Buffers: shared hit=1640
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6815_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6815 p_ci_finished_pipeline_ch_sync_events_114  (cost=0.42..1014.28 rows=1619 width=25) (actual time=2.033..2.034 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_114.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_114.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_114.processed)
         Rows Removed by Filter: 1659
         Buffers: shared hit=1190
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6816_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6816 p_ci_finished_pipeline_ch_sync_events_115  (cost=0.29..635.38 rows=981 width=25) (actual time=0.914..0.914 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_115.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_115.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_115.processed)
         Rows Removed by Filter: 990
         Buffers: shared hit=755
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6817_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6817 p_ci_finished_pipeline_ch_sync_events_116  (cost=0.42..866.64 rows=1420 width=25) (actual time=1.129..1.129 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_116.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_116.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_116.processed)
         Rows Removed by Filter: 1468
         Buffers: shared hit=1170
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6818_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6818 p_ci_finished_pipeline_ch_sync_events_117  (cost=0.29..151.54 rows=213 width=25) (actual time=0.246..0.246 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_117.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_117.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_117.processed)
         Rows Removed by Filter: 218
         Buffers: shared hit=179
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6819_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6819 p_ci_finished_pipeline_ch_sync_events_118  (cost=0.42..880.68 rows=1469 width=25) (actual time=1.191..1.191 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_118.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_118.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_118.processed)
         Rows Removed by Filter: 1505
         Buffers: shared hit=1249
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6820_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6820 p_ci_finished_pipeline_ch_sync_events_119  (cost=0.42..993.99 rows=1675 width=25) (actual time=0.998..0.998 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_119.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_119.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_119.processed)
         Rows Removed by Filter: 1692
         Buffers: shared hit=1307
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6821_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6821 p_ci_finished_pipeline_ch_sync_events_120  (cost=0.42..970.27 rows=1735 width=25) (actual time=1.259..1.259 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_120.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_120.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_120.processed)
         Rows Removed by Filter: 1795
         Buffers: shared hit=1171
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6822_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6822 p_ci_finished_pipeline_ch_sync_events_121  (cost=0.29..514.40 rows=1295 width=25) (actual time=0.727..0.727 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_121.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_121.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_121.processed)
         Rows Removed by Filter: 1357
         Buffers: shared hit=761
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6823_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6823 p_ci_finished_pipeline_ch_sync_events_122  (cost=0.29..348.77 rows=506 width=25) (actual time=0.346..0.346 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_122.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_122.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_122.processed)
         Rows Removed by Filter: 514
         Buffers: shared hit=416
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6824_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6824 p_ci_finished_pipeline_ch_sync_events_123  (cost=0.29..495.34 rows=761 width=25) (actual time=0.684..0.684 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_123.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_123.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_123.processed)
         Rows Removed by Filter: 789
         Buffers: shared hit=611
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6825_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6825 p_ci_finished_pipeline_ch_sync_events_124  (cost=0.42..991.87 rows=2361 width=25) (actual time=1.304..1.304 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_124.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_124.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_124.processed)
         Rows Removed by Filter: 2434
         Buffers: shared hit=1732
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6826_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6826 p_ci_finished_pipeline_ch_sync_events_125  (cost=0.29..374.43 rows=568 width=25) (actual time=0.336..0.336 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_125.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_125.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_125.processed)
         Rows Removed by Filter: 582
         Buffers: shared hit=438
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6827_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6827 p_ci_finished_pipeline_ch_sync_events_126  (cost=0.29..569.65 rows=1105 width=25) (actual time=0.785..0.785 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_126.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_126.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_126.processed)
         Rows Removed by Filter: 1148
         Buffers: shared hit=928
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6828_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6828 p_ci_finished_pipeline_ch_sync_events_127  (cost=0.29..680.47 rows=1432 width=25) (actual time=0.852..0.852 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_127.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_127.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_127.processed)
         Rows Removed by Filter: 1473
         Buffers: shared hit=1097
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6829_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6829 p_ci_finished_pipeline_ch_sync_events_128  (cost=0.29..531.66 rows=778 width=25) (actual time=0.782..0.782 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_128.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_128.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_128.processed)
         Rows Removed by Filter: 799
         Buffers: shared hit=627
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6830_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6830 p_ci_finished_pipeline_ch_sync_events_129  (cost=0.29..194.20 rows=269 width=25) (actual time=0.324..0.324 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_129.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_129.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_129.processed)
         Rows Removed by Filter: 277
         Buffers: shared hit=230
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6831_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6831 p_ci_finished_pipeline_ch_sync_events_130  (cost=0.42..1163.44 rows=2346 width=25) (actual time=1.520..1.521 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_130.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_130.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_130.processed)
         Rows Removed by Filter: 2420
         Buffers: shared hit=1899
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6832_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6832 p_ci_finished_pipeline_ch_sync_events_131  (cost=0.42..1074.69 rows=1781 width=25) (actual time=2.043..2.043 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_131.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_131.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_131.processed)
         Rows Removed by Filter: 1831
         Buffers: shared hit=1430
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6833_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6833 p_ci_finished_pipeline_ch_sync_events_132  (cost=0.29..349.31 rows=439 width=25) (actual time=0.301..0.302 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_132.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_132.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_132.processed)
         Rows Removed by Filter: 451
         Buffers: shared hit=328
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6834_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6834 p_ci_finished_pipeline_ch_sync_events_133  (cost=0.42..1449.33 rows=2257 width=25) (actual time=2.536..2.536 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_133.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_133.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_133.processed)
         Rows Removed by Filter: 2297
         Buffers: shared hit=1681
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6835_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6835 p_ci_finished_pipeline_ch_sync_events_134  (cost=0.29..692.33 rows=1420 width=25) (actual time=0.854..0.854 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_134.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_134.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_134.processed)
         Rows Removed by Filter: 1498
         Buffers: shared hit=928
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6836_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6836 p_ci_finished_pipeline_ch_sync_events_135  (cost=0.29..203.96 rows=438 width=25) (actual time=0.405..0.405 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_135.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_135.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_135.processed)
         Rows Removed by Filter: 448
         Buffers: shared hit=174
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6837_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6837 p_ci_finished_pipeline_ch_sync_events_136  (cost=0.42..860.66 rows=1355 width=25) (actual time=0.596..0.597 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_136.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_136.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_136.processed)
         Rows Removed by Filter: 1370
         Buffers: shared hit=909
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6838_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6838 p_ci_finished_pipeline_ch_sync_events_137  (cost=0.29..438.81 rows=565 width=25) (actual time=0.548..0.548 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_137.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_137.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_137.processed)
         Rows Removed by Filter: 572
         Buffers: shared hit=415
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6839_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6839 p_ci_finished_pipeline_ch_sync_events_138  (cost=0.42..954.49 rows=1441 width=25) (actual time=1.309..1.309 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_138.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_138.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_138.processed)
         Rows Removed by Filter: 1473
         Buffers: shared hit=1160
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6840_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6840 p_ci_finished_pipeline_ch_sync_events_139  (cost=0.29..506.13 rows=637 width=25) (actual time=0.471..0.472 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_139.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_139.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_139.processed)
         Rows Removed by Filter: 650
         Buffers: shared hit=566
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6841_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6841 p_ci_finished_pipeline_ch_sync_events_140  (cost=0.42..1457.69 rows=2276 width=25) (actual time=1.788..1.788 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_140.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_140.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_140.processed)
         Rows Removed by Filter: 2312
         Buffers: shared hit=1606
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6842_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6842 p_ci_finished_pipeline_ch_sync_events_141  (cost=0.42..1655.62 rows=2615 width=25) (actual time=2.168..2.168 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_141.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_141.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_141.processed)
         Rows Removed by Filter: 2702
         Buffers: shared hit=1839
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6843_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6843 p_ci_finished_pipeline_ch_sync_events_142  (cost=0.29..377.64 rows=532 width=25) (actual time=0.450..0.450 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_142.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_142.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_142.processed)
         Rows Removed by Filter: 537
         Buffers: shared hit=398
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6844_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6844 p_ci_finished_pipeline_ch_sync_events_143  (cost=0.42..794.66 rows=1226 width=25) (actual time=0.880..0.880 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_143.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_143.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_143.processed)
         Rows Removed by Filter: 1260
         Buffers: shared hit=895
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6845_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6845 p_ci_finished_pipeline_ch_sync_events_144  (cost=0.29..132.93 rows=182 width=25) (actual time=0.242..0.242 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_144.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_144.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_144.processed)
         Rows Removed by Filter: 188
         Buffers: shared hit=146
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6846_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6846 p_ci_finished_pipeline_ch_sync_events_145  (cost=0.42..872.61 rows=1375 width=25) (actual time=0.875..0.876 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_145.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_145.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_145.processed)
         Rows Removed by Filter: 1389
         Buffers: shared hit=1055
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6847_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6847 p_ci_finished_pipeline_ch_sync_events_146  (cost=0.29..401.60 rows=526 width=25) (actual time=0.442..0.442 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_146.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_146.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_146.processed)
         Rows Removed by Filter: 533
         Buffers: shared hit=407
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6848_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6848 p_ci_finished_pipeline_ch_sync_events_147  (cost=0.42..845.97 rows=1361 width=25) (actual time=1.169..1.169 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_147.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_147.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_147.processed)
         Rows Removed by Filter: 1374
         Buffers: shared hit=978
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6849_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6849 p_ci_finished_pipeline_ch_sync_events_148  (cost=0.29..477.66 rows=656 width=25) (actual time=0.844..0.844 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_148.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_148.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_148.processed)
         Rows Removed by Filter: 672
         Buffers: shared hit=551
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6850_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6850 p_ci_finished_pipeline_ch_sync_events_149  (cost=0.29..556.79 rows=978 width=25) (actual time=0.516..0.516 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_149.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_149.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_149.processed)
         Rows Removed by Filter: 989
         Buffers: shared hit=652
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6851_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6851 p_ci_finished_pipeline_ch_sync_events_150  (cost=0.29..316.18 rows=1613 width=25) (actual time=0.878..0.878 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_150.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_150.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_150.processed)
         Rows Removed by Filter: 1772
         Buffers: shared hit=426
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6852_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6852 p_ci_finished_pipeline_ch_sync_events_151  (cost=0.29..395.11 rows=619 width=25) (actual time=0.568..0.568 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_151.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_151.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_151.processed)
         Rows Removed by Filter: 630
         Buffers: shared hit=428
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6853_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6853 p_ci_finished_pipeline_ch_sync_events_152  (cost=0.42..1419.51 rows=2871 width=25) (actual time=1.791..1.791 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_152.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_152.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_152.processed)
         Rows Removed by Filter: 2992
         Buffers: shared hit=2322
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6854_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6854 p_ci_finished_pipeline_ch_sync_events_153  (cost=0.42..1067.66 rows=1819 width=25) (actual time=1.005..1.005 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_153.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_153.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_153.processed)
         Rows Removed by Filter: 1876
         Buffers: shared hit=1316
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6855_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6855 p_ci_finished_pipeline_ch_sync_events_154  (cost=0.29..280.86 rows=687 width=25) (actual time=0.744..0.744 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_154.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_154.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_154.processed)
         Rows Removed by Filter: 712
         Buffers: shared hit=536
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6856_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6856 p_ci_finished_pipeline_ch_sync_events_155  (cost=0.29..543.51 rows=843 width=25) (actual time=0.504..0.504 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_155.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_155.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_155.processed)
         Rows Removed by Filter: 871
         Buffers: shared hit=713
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6857_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6857 p_ci_finished_pipeline_ch_sync_events_156  (cost=0.29..233.29 rows=447 width=25) (actual time=0.741..0.742 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_156.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_156.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_156.processed)
         Rows Removed by Filter: 459
         Buffers: shared hit=399
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6858_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6858 p_ci_finished_pipeline_ch_sync_events_157  (cost=0.29..250.16 rows=354 width=25) (actual time=0.339..0.339 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_157.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_157.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_157.processed)
         Rows Removed by Filter: 364
         Buffers: shared hit=270
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6859_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6859 p_ci_finished_pipeline_ch_sync_events_158  (cost=0.29..521.60 rows=799 width=25) (actual time=0.508..0.508 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_158.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_158.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_158.processed)
         Rows Removed by Filter: 816
         Buffers: shared hit=700
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6860_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6860 p_ci_finished_pipeline_ch_sync_events_159  (cost=0.29..727.66 rows=1205 width=25) (actual time=0.610..0.610 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_159.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_159.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_159.processed)
         Rows Removed by Filter: 1241
         Buffers: shared hit=844
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6861_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6861 p_ci_finished_pipeline_ch_sync_events_160  (cost=0.42..1260.26 rows=2089 width=25) (actual time=1.130..1.131 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_160.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_160.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_160.processed)
         Rows Removed by Filter: 2143
         Buffers: shared hit=1522
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6862_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6862 p_ci_finished_pipeline_ch_sync_events_161  (cost=0.42..1716.02 rows=2798 width=25) (actual time=2.883..2.883 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_161.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_161.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_161.processed)
         Rows Removed by Filter: 2875
         Buffers: shared hit=2198
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6863_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6863 p_ci_finished_pipeline_ch_sync_events_162  (cost=0.42..3123.71 rows=5165 width=25) (actual time=3.906..3.906 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_162.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_162.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_162.processed)
         Rows Removed by Filter: 5142
         Buffers: shared hit=3002
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6864_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6864 p_ci_finished_pipeline_ch_sync_events_163  (cost=0.42..734.65 rows=1135 width=25) (actual time=0.696..0.696 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_163.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_163.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_163.processed)
         Rows Removed by Filter: 1147
         Buffers: shared hit=740
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6865_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6865 p_ci_finished_pipeline_ch_sync_events_164  (cost=0.29..308.99 rows=449 width=25) (actual time=0.477..0.477 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_164.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_164.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_164.processed)
         Rows Removed by Filter: 454
         Buffers: shared hit=254
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6866_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6866 p_ci_finished_pipeline_ch_sync_events_165  (cost=0.29..513.54 rows=831 width=25) (actual time=0.451..0.451 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_165.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_165.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_165.processed)
         Rows Removed by Filter: 854
         Buffers: shared hit=510
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6867_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6867 p_ci_finished_pipeline_ch_sync_events_166  (cost=0.29..558.50 rows=888 width=25) (actual time=0.558..0.559 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_166.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_166.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_166.processed)
         Rows Removed by Filter: 910
         Buffers: shared hit=629
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6868_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6868 p_ci_finished_pipeline_ch_sync_events_167  (cost=0.29..770.76 rows=1254 width=25) (actual time=0.702..0.702 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_167.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_167.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_167.processed)
         Rows Removed by Filter: 1252
         Buffers: shared hit=728
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6869_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6869 p_ci_finished_pipeline_ch_sync_events_168  (cost=0.29..221.79 rows=288 width=25) (actual time=0.214..0.214 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_168.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_168.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_168.processed)
         Rows Removed by Filter: 291
         Buffers: shared hit=226
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6870_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6870 p_ci_finished_pipeline_ch_sync_events_169  (cost=0.42..872.16 rows=2528 width=25) (actual time=0.920..0.920 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_169.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_169.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_169.processed)
         Rows Removed by Filter: 2631
         Buffers: shared hit=999
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6871_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6871 p_ci_finished_pipeline_ch_sync_events_170  (cost=0.29..1092.66 rows=2612 width=25) (actual time=0.965..0.965 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_170.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_170.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_170.processed)
         Rows Removed by Filter: 2744
         Buffers: shared hit=988
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6872_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6872 p_ci_finished_pipeline_ch_sync_events_171  (cost=0.42..2299.68 rows=4622 width=25) (actual time=3.176..3.176 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_171.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_171.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_171.processed)
         Rows Removed by Filter: 4732
         Buffers: shared hit=3032
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6873_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6873 p_ci_finished_pipeline_ch_sync_events_172  (cost=0.42..1608.80 rows=3052 width=25) (actual time=1.432..1.433 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_172.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_172.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_172.processed)
         Rows Removed by Filter: 3123
         Buffers: shared hit=1646
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6874_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6874 p_ci_finished_pipeline_ch_sync_events_173  (cost=0.42..1565.38 rows=2952 width=25) (actual time=1.571..1.571 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_173.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_173.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_173.processed)
         Rows Removed by Filter: 3031
         Buffers: shared hit=1582
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6875_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6875 p_ci_finished_pipeline_ch_sync_events_174  (cost=0.42..1587.50 rows=2958 width=25) (actual time=1.427..1.428 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_174.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_174.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_174.processed)
         Rows Removed by Filter: 3009
         Buffers: shared hit=1572
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6876_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6876 p_ci_finished_pipeline_ch_sync_events_175  (cost=0.42..2417.03 rows=4483 width=25) (actual time=2.414..2.414 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_175.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_175.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_175.processed)
         Rows Removed by Filter: 4604
         Buffers: shared hit=2972
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6877_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6877 p_ci_finished_pipeline_ch_sync_events_176  (cost=0.42..1763.83 rows=2915 width=25) (actual time=1.255..1.256 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_176.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_176.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_176.processed)
         Rows Removed by Filter: 3023
         Buffers: shared hit=1353
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6878_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6878 p_ci_finished_pipeline_ch_sync_events_177  (cost=0.42..1485.95 rows=2736 width=25) (actual time=1.127..1.127 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_177.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_177.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_177.processed)
         Rows Removed by Filter: 2836
         Buffers: shared hit=1306
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6879_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6879 p_ci_finished_pipeline_ch_sync_events_178  (cost=0.42..1688.79 rows=3025 width=25) (actual time=1.454..1.454 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_178.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_178.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_178.processed)
         Rows Removed by Filter: 3089
         Buffers: shared hit=1885
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6880_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6880 p_ci_finished_pipeline_ch_sync_events_179  (cost=0.29..622.84 rows=1064 width=25) (actual time=0.664..0.664 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_179.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_179.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_179.processed)
         Rows Removed by Filter: 1092
         Buffers: shared hit=772
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6881_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6881 p_ci_finished_pipeline_ch_sync_events_180  (cost=0.29..388.16 rows=533 width=25) (actual time=5.718..5.718 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_180.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_180.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_180.processed)
         Rows Removed by Filter: 558
         Buffers: shared hit=230 read=173 dirtied=72
         WAL: records=111 fpi=72 bytes=549002
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6882_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6882 p_ci_finished_pipeline_ch_sync_events_181  (cost=0.29..149.87 rows=467 width=25) (actual time=0.357..0.357 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_181.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_181.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_181.processed)
         Rows Removed by Filter: 490
         Buffers: shared hit=416
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6883_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6883 p_ci_finished_pipeline_ch_sync_events_182  (cost=0.42..797.69 rows=1757 width=25) (actual time=1.022..1.022 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_182.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_182.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_182.processed)
         Rows Removed by Filter: 1808
         Buffers: shared hit=1361
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6884_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6884 p_ci_finished_pipeline_ch_sync_events_183  (cost=0.42..848.95 rows=1189 width=25) (actual time=0.657..0.657 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_183.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_183.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_183.processed)
         Rows Removed by Filter: 1230
         Buffers: shared hit=708
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6885_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6885 p_ci_finished_pipeline_ch_sync_events_184  (cost=0.29..537.61 rows=936 width=25) (actual time=0.603..0.604 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_184.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_184.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_184.processed)
         Rows Removed by Filter: 968
         Buffers: shared hit=802
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6886_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6886 p_ci_finished_pipeline_ch_sync_events_185  (cost=0.29..341.81 rows=425 width=25) (actual time=0.293..0.294 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_185.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_185.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_185.processed)
         Rows Removed by Filter: 428
         Buffers: shared hit=318
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6887_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6887 p_ci_finished_pipeline_ch_sync_events_186  (cost=0.29..148.49 rows=248 width=25) (actual time=0.209..0.209 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_186.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_186.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_186.processed)
         Rows Removed by Filter: 255
         Buffers: shared hit=196
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6888_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6888 p_ci_finished_pipeline_ch_sync_events_187  (cost=0.42..777.41 rows=1320 width=25) (actual time=0.916..0.916 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_187.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_187.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_187.processed)
         Rows Removed by Filter: 1373
         Buffers: shared hit=937
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6889_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6889 p_ci_finished_pipeline_ch_sync_events_188  (cost=0.29..541.65 rows=762 width=25) (actual time=0.464..0.464 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_188.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_188.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_188.processed)
         Rows Removed by Filter: 773
         Buffers: shared hit=580
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6890_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6890 p_ci_finished_pipeline_ch_sync_events_189  (cost=0.42..774.96 rows=1123 width=25) (actual time=0.862..0.862 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_189.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_189.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_189.processed)
         Rows Removed by Filter: 1155
         Buffers: shared hit=862
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6891_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6891 p_ci_finished_pipeline_ch_sync_events_190  (cost=0.42..1070.63 rows=1558 width=25) (actual time=1.112..1.112 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_190.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_190.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_190.processed)
         Rows Removed by Filter: 1530
         Buffers: shared hit=984
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6892_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6892 p_ci_finished_pipeline_ch_sync_events_191  (cost=0.42..901.44 rows=1256 width=25) (actual time=1.236..1.236 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_191.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_191.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_191.processed)
         Rows Removed by Filter: 1261
         Buffers: shared hit=886
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6893_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6893 p_ci_finished_pipeline_ch_sync_events_192  (cost=0.29..130.80 rows=146 width=25) (actual time=0.149..0.149 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_192.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_192.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_192.processed)
         Rows Removed by Filter: 148
         Buffers: shared hit=115
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6894_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6894 p_ci_finished_pipeline_ch_sync_events_193  (cost=0.29..249.25 rows=305 width=25) (actual time=0.209..0.209 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_193.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_193.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_193.processed)
         Rows Removed by Filter: 310
         Buffers: shared hit=230
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6895_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6895 p_ci_finished_pipeline_ch_sync_events_194  (cost=0.42..845.06 rows=1188 width=25) (actual time=0.648..0.648 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_194.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_194.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_194.processed)
         Rows Removed by Filter: 1207
         Buffers: shared hit=775
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6896_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6896 p_ci_finished_pipeline_ch_sync_events_195  (cost=0.42..748.51 rows=984 width=25) (actual time=0.512..0.512 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_195.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_195.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_195.processed)
         Rows Removed by Filter: 1003
         Buffers: shared hit=558
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6897_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6897 p_ci_finished_pipeline_ch_sync_events_196  (cost=0.29..580.29 rows=756 width=25) (actual time=0.435..0.435 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_196.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_196.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_196.processed)
         Rows Removed by Filter: 755
         Buffers: shared hit=542
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6898_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6898 p_ci_finished_pipeline_ch_sync_events_197  (cost=0.42..1293.84 rows=1976 width=25) (actual time=0.954..0.954 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_197.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_197.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_197.processed)
         Rows Removed by Filter: 2026
         Buffers: shared hit=899
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6899_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6899 p_ci_finished_pipeline_ch_sync_events_198  (cost=0.42..718.99 rows=1049 width=25) (actual time=0.521..0.521 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_198.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_198.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_198.processed)
         Rows Removed by Filter: 1074
         Buffers: shared hit=574
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6900_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6900 p_ci_finished_pipeline_ch_sync_events_199  (cost=0.29..376.84 rows=480 width=25) (actual time=0.270..0.270 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_199.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_199.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_199.processed)
         Rows Removed by Filter: 488
         Buffers: shared hit=305
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6901_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6901 p_ci_finished_pipeline_ch_sync_events_200  (cost=0.28..103.71 rows=131 width=25) (actual time=0.099..0.099 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_200.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_200.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_200.processed)
         Rows Removed by Filter: 133
         Buffers: shared hit=85
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6902_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6902 p_ci_finished_pipeline_ch_sync_events_201  (cost=0.42..924.82 rows=1531 width=25) (actual time=0.683..0.683 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_201.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_201.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_201.processed)
         Rows Removed by Filter: 1574
         Buffers: shared hit=592
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6903_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6903 p_ci_finished_pipeline_ch_sync_events_202  (cost=0.29..360.30 rows=472 width=25) (actual time=0.304..0.304 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_202.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_202.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_202.processed)
         Rows Removed by Filter: 483
         Buffers: shared hit=327
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6904_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6904 p_ci_finished_pipeline_ch_sync_events_203  (cost=0.42..1568.69 rows=2701 width=25) (actual time=1.919..1.919 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_203.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_203.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_203.processed)
         Rows Removed by Filter: 2821
         Buffers: shared hit=1862
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6905_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6905 p_ci_finished_pipeline_ch_sync_events_204  (cost=0.29..761.52 rows=6903 width=25) (actual time=38.664..38.664 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_204.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_204.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_204.processed)
         Rows Removed by Filter: 9449
         Buffers: shared hit=1756 read=321 dirtied=94
         WAL: records=130 fpi=94 bytes=727012
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6906_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6906 p_ci_finished_pipeline_ch_sync_events_205  (cost=0.29..649.45 rows=876 width=25) (actual time=0.435..0.435 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_205.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_205.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_205.processed)
         Rows Removed by Filter: 919
         Buffers: shared hit=577
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6907_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6907 p_ci_finished_pipeline_ch_sync_events_206  (cost=0.42..1151.27 rows=2192 width=25) (actual time=0.946..0.946 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_206.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_206.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_206.processed)
         Rows Removed by Filter: 2133
         Buffers: shared hit=1355
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6908_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6908 p_ci_finished_pipeline_ch_sync_events_207  (cost=0.29..170.32 rows=214 width=25) (actual time=0.127..0.127 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_207.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_207.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_207.processed)
         Rows Removed by Filter: 223
         Buffers: shared hit=170
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6909_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6909 p_ci_finished_pipeline_ch_sync_events_208  (cost=0.42..723.36 rows=1063 width=25) (actual time=0.415..0.415 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_208.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_208.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_208.processed)
         Rows Removed by Filter: 1099
         Buffers: shared hit=719
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6910_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6910 p_ci_finished_pipeline_ch_sync_events_209  (cost=0.29..111.15 rows=113 width=25) (actual time=0.098..0.099 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_209.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_209.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_209.processed)
         Rows Removed by Filter: 110
         Buffers: shared hit=75
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6911_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6911 p_ci_finished_pipeline_ch_sync_events_210  (cost=0.29..730.62 rows=1160 width=25) (actual time=0.513..0.513 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_210.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_210.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_210.processed)
         Rows Removed by Filter: 1192
         Buffers: shared hit=653
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6912_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6912 p_ci_finished_pipeline_ch_sync_events_211  (cost=0.42..2686.07 rows=4267 width=25) (actual time=2.264..2.264 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_211.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_211.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_211.processed)
         Rows Removed by Filter: 4568
         Buffers: shared hit=2560
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6913_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6913 p_ci_finished_pipeline_ch_sync_events_212  (cost=0.29..491.49 rows=605 width=25) (actual time=0.443..0.443 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_212.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_212.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_212.processed)
         Rows Removed by Filter: 633
         Buffers: shared hit=541
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6914_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6914 p_ci_finished_pipeline_ch_sync_events_213  (cost=0.42..1994.56 rows=3080 width=25) (actual time=1.716..1.716 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_213.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_213.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_213.processed)
         Rows Removed by Filter: 3172
         Buffers: shared hit=2950
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6915_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6915 p_ci_finished_pipeline_ch_sync_events_214  (cost=0.42..569.49 rows=755 width=25) (actual time=0.595..0.595 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_214.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_214.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_214.processed)
         Rows Removed by Filter: 770
         Buffers: shared hit=694
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6916_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6916 p_ci_finished_pipeline_ch_sync_events_215  (cost=0.42..621.30 rows=903 width=25) (actual time=0.645..0.646 rows=1 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_215.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_215.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_215.processed)
         Rows Removed by Filter: 904
         Buffers: shared hit=793
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6917_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6917 p_ci_finished_pipeline_ch_sync_events_216  (cost=0.42..1580.38 rows=2759 width=25) (actual time=1.969..1.969 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_216.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_216.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_216.processed)
         Rows Removed by Filter: 2768
         Buffers: shared hit=2594
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6918_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6918 p_ci_finished_pipeline_ch_sync_events_217  (cost=0.29..222.42 rows=268 width=25) (actual time=0.137..0.137 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_217.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_217.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_217.processed)
         Rows Removed by Filter: 267
         Buffers: shared hit=189
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6919_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6919 p_ci_finished_pipeline_ch_sync_events_218  (cost=0.42..1209.31 rows=1942 width=25) (actual time=0.976..0.976 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_218.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_218.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_218.processed)
         Rows Removed by Filter: 2003
         Buffers: shared hit=1891
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6920_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6920 p_ci_finished_pipeline_ch_sync_events_219  (cost=0.42..1521.51 rows=2739 width=25) (actual time=1.358..1.358 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_219.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_219.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_219.processed)
         Rows Removed by Filter: 2834
         Buffers: shared hit=2677
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6921_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6921 p_ci_finished_pipeline_ch_sync_events_220  (cost=0.29..304.61 rows=389 width=25) (actual time=0.237..0.237 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_220.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_220.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_220.processed)
         Rows Removed by Filter: 403
         Buffers: shared hit=347
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6922_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6922 p_ci_finished_pipeline_ch_sync_events_221  (cost=0.42..779.92 rows=1180 width=25) (actual time=0.587..0.587 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_221.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_221.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_221.processed)
         Rows Removed by Filter: 1200
         Buffers: shared hit=1112
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6923_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6923 p_ci_finished_pipeline_ch_sync_events_222  (cost=0.29..405.37 rows=641 width=25) (actual time=0.274..0.274 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_222.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_222.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_222.processed)
         Rows Removed by Filter: 659
         Buffers: shared hit=559
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6924_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6924 p_ci_finished_pipeline_ch_sync_events_223  (cost=0.29..100.51 rows=102 width=25) (actual time=0.069..0.069 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_223.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_223.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_223.processed)
         Rows Removed by Filter: 104
         Buffers: shared hit=69
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6925_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6925 p_ci_finished_pipeline_ch_sync_events_224  (cost=0.42..1028.10 rows=1629 width=25) (actual time=0.961..0.961 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_224.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_224.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_224.processed)
         Rows Removed by Filter: 1677
         Buffers: shared hit=1575
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6926_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6926 p_ci_finished_pipeline_ch_sync_events_225  (cost=0.29..247.71 rows=296 width=25) (actual time=0.147..0.147 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_225.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_225.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_225.processed)
         Rows Removed by Filter: 299
         Buffers: shared hit=230
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6927_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6927 p_ci_finished_pipeline_ch_sync_events_226  (cost=0.42..843.51 rows=1118 width=25) (actual time=0.585..0.585 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_226.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_226.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_226.processed)
         Rows Removed by Filter: 1167
         Buffers: shared hit=1024
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6928_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6928 p_ci_finished_pipeline_ch_sync_events_227  (cost=0.42..609.47 rows=763 width=25) (actual time=0.368..0.368 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_227.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_227.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_227.processed)
         Rows Removed by Filter: 814
         Buffers: shared hit=645
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6929_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6929 p_ci_finished_pipeline_ch_sync_events_228  (cost=0.29..437.08 rows=499 width=25) (actual time=0.261..0.261 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_228.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_228.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_228.processed)
         Rows Removed by Filter: 522
         Buffers: shared hit=425
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6930_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6930 p_ci_finished_pipeline_ch_sync_events_229  (cost=0.42..499.37 rows=621 width=25) (actual time=0.299..0.299 rows=0 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_229.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_229.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_229.processed)
         Rows Removed by Filter: 642
         Buffers: shared hit=585
   ->  Index Scan using p_ci_finished_pipeline_ch_sync_events_6931_pkey on gitlab_partitions_dynamic.p_ci_finished_pipeline_ch_sync_events_6931 p_ci_finished_pipeline_ch_sync_events_230  (cost=0.29..328.70 rows=378 width=25) (actual time=0.018..0.154 rows=78 loops=1)
         Index Cond: ((p_ci_finished_pipeline_ch_sync_events_230.pipeline_id >= 738072341) AND (p_ci_finished_pipeline_ch_sync_events_230.pipeline_id < 2138905647))
         Filter: (NOT p_ci_finished_pipeline_ch_sync_events_230.processed)
         Rows Removed by Filter: 301
         Buffers: shared hit=280
Settings: jit = 'off', seq_page_cost = '4', work_mem = '100MB', effective_cache_size = '338688MB', random_page_cost = '1.5'

MR acceptance checklist

Evaluate this MR against the MR acceptance checklist. It helps you analyze changes to reduce risks in quality, performance, reliability, security, and maintainability.

Edited by Pedro Pombeiro

Merge request reports

Loading