diff --git a/java/yb-pgsql/src/test/java/org/yb/pgsql/TestPgCostModelSeekNextEstimation.java b/java/yb-pgsql/src/test/java/org/yb/pgsql/TestPgCostModelSeekNextEstimation.java index 84828b7f912b..d8bd7674d4b0 100644 --- a/java/yb-pgsql/src/test/java/org/yb/pgsql/TestPgCostModelSeekNextEstimation.java +++ b/java/yb-pgsql/src/test/java/org/yb/pgsql/TestPgCostModelSeekNextEstimation.java @@ -97,6 +97,16 @@ private void testSeekAndNextEstimationIndexScanHelper( NODE_INDEX_SCAN, expected_seeks, expected_nexts, expected_docdb_result_width); } + private void testSeekAndNextEstimationIndexScanHelper_IgnoreActualResults( + Statement stmt, String query, + String table_name, String index_name, + double expected_seeks, + double expected_nexts, + Integer expected_docdb_result_width) throws Exception { + testSeekAndNextEstimationIndexScanHelper_IgnoreActualResults(stmt, query, table_name, index_name, + NODE_INDEX_SCAN, expected_seeks, expected_nexts, expected_docdb_result_width); +} + private void testSeekAndNextEstimationIndexOnlyScanHelper( Statement stmt, String query, String table_name, String index_name, @@ -107,6 +117,16 @@ private void testSeekAndNextEstimationIndexOnlyScanHelper( NODE_INDEX_ONLY_SCAN, expected_seeks, expected_nexts, expected_docdb_result_width); } + private void testSeekAndNextEstimationIndexOnlyScanHelper_IgnoreActualResults( + Statement stmt, String query, + String table_name, String index_name, + double expected_seeks, + double expected_nexts, + Integer expected_docdb_result_width) throws Exception { + testSeekAndNextEstimationIndexScanHelper_IgnoreActualResults(stmt, query, table_name, index_name, + NODE_INDEX_ONLY_SCAN, expected_seeks, expected_nexts, expected_docdb_result_width); +} + private void testSeekAndNextEstimationIndexScanHelper( Statement stmt, String query, String table_name, String index_name, @@ -221,6 +241,7 @@ private void testSeekAndNextEstimationBitmapScanHelper_IgnoreActualResults( private void testSeekAndNextEstimationIndexScanHelper_IgnoreActualResults( Statement stmt, String query, String table_name, String index_name, + String node_type, double expected_seeks, double expected_nexts, Integer expected_docdb_result_width) throws Exception { @@ -228,7 +249,7 @@ private void testSeekAndNextEstimationIndexScanHelper_IgnoreActualResults( testExplainDebug(stmt, query, makeTopLevelBuilder() .plan(makePlanBuilder() - .nodeType(NODE_INDEX_SCAN) + .nodeType(node_type) .relationName(table_name) .indexName(index_name) .estimatedSeeks(expectedSeeksRange(expected_seeks)) @@ -270,6 +291,30 @@ private void testSeekAndNextEstimationSeqScanHelper( } } + private void testSeekAndNextEstimationSeqScanHelper_IgnoreActualResults( + Statement stmt, String query, + String table_name, double expected_seeks, + double expected_nexts, + long expected_docdb_result_width) throws Exception { + try { + testExplainDebug(stmt, query, + makeTopLevelBuilder() + .plan(makePlanBuilder() + .nodeType(NODE_SEQ_SCAN) + .relationName(table_name) + .estimatedSeeks(expectedSeeksRange(expected_seeks)) + .estimatedNexts(expectedNextsRange(expected_nexts)) + .estimatedDocdbResultWidth(Checkers.equal(expected_docdb_result_width)) + .build()) + .build()); + } + catch (AssertionError e) { + LOG.info("Failed Query: " + query); + LOG.info(e.toString()); + throw e; + } + } + @Before public void setUp() throws Exception { try (Statement stmt = connection.createStatement()) { @@ -777,8 +822,8 @@ public void testSeekNextEstimationBitmapScanWithAnd() throws Exception { testSeekAndNextEstimationBitmapScanHelper(stmt, String.format(query, T_NO_PKEY_NAME, "k1 <= 40 AND k2 <= 40"), - T_NO_PKEY_NAME, 4000, 12000, 10, - makePlanBuilder().nodeType(NODE_BITMAP_INDEX_SCAN).build()); + T_NO_PKEY_NAME, 1600, 4800, 10, + makePlanBuilder().nodeType(NODE_BITMAP_AND).build()); testSeekAndNextEstimationBitmapScanHelper(stmt, String.format(query, T_NO_PKEY_NAME, "k1 <= 80 AND k2 <= 80"), @@ -1004,11 +1049,11 @@ public void testSeekNextEstimationSeekForwardOptimization() throws Exception { "/*+IndexScan(t4)*/ SELECT * FROM t4 WHERE k4 IN (4, 5, 6, 7)", T4_NAME, T4_INDEX_NAME, 40031, 80000, 20); - testSeekAndNextEstimationIndexScanHelper_IgnoreActualResults(stmt, + testSeekAndNextEstimationIndexScanHelper_IgnoreActualResults(stmt, "/*+IndexScan(t4)*/ SELECT * FROM t4 WHERE k4 IN (4, 6, 8, 10)", T4_NAME, T4_INDEX_NAME, 40031, 80000, 20); - testSeekAndNextEstimationIndexScanHelper_IgnoreActualResults(stmt, + testSeekAndNextEstimationIndexScanHelper_IgnoreActualResults(stmt, "/*+IndexScan(t4)*/ SELECT * FROM t4 WHERE k4 IN (4, 7, 10, 13)", T4_NAME, T4_INDEX_NAME, 40031, 80000, 20); @@ -1017,4 +1062,39 @@ public void testSeekNextEstimationSeekForwardOptimization() throws Exception { T4_NAME, T4_INDEX_NAME, 40031, 80000, 20); } } + + @Test + public void testSeekNextEstimation25862IntegerOverflow() throws Exception { + /* + * #25862 : Estimated seeks and nexts value can overflow in a large table + * + * This test case checks that estimated seeks and nexts values do not overflow + * when the table has a large number of rows. + */ + try (Statement stmt = this.connection2.createStatement()) { + stmt.execute("CREATE TABLE t_25862 (k1 INT, v1 INT, PRIMARY KEY (k1 ASC))"); + stmt.execute("CREATE INDEX t_25862_idx on t_25862 (v1 ASC)"); + /* Simluate a large table by setting reltuples in pg_class to 4B rows. */ + stmt.execute("SET yb_non_ddl_txn_for_sys_tables_allowed = ON"); + stmt.execute("UPDATE pg_class SET reltuples=4000000000 WHERE relname LIKE '%t_25862%'"); + stmt.execute("UPDATE pg_yb_catalog_version SET current_version=current_version+1 " + + "WHERE db_oid=1"); + stmt.execute("SET yb_non_ddl_txn_for_sys_tables_allowed = OFF"); + + stmt.execute("SET yb_enable_base_scans_cost_model = ON"); + + testSeekAndNextEstimationSeqScanHelper_IgnoreActualResults(stmt, + "/*+ SeqScan(t_25862) */ SELECT * FROM t_25862 WHERE k1 > 0", + "t_25862", 1302084.0, 4001302082.0, 2); + testSeekAndNextEstimationIndexScanHelper_IgnoreActualResults(stmt, + "/*+ IndexScan(t_25862 t_25862_pkey) */ SELECT * FROM t_25862 WHERE k1 > 0", + "t_25862", "t_25862_pkey", 1302084.0, 1333333334.0, 2); + testSeekAndNextEstimationIndexScanHelper_IgnoreActualResults(stmt, + "/*+ IndexScan(t_25862 t_25862_idx) */ SELECT * FROM t_25862 WHERE v1 > 0", + "t_25862", "t_25862_idx", 1334635417.0, 1333333334.0, 2); + testSeekAndNextEstimationIndexOnlyScanHelper_IgnoreActualResults(stmt, + "/*+ IndexOnlyScan(t_25862 t_25862_idx) */ SELECT v1 FROM t_25862 WHERE v1 > 0", + "t_25862", "t_25862_idx", 1302084.0, 1333333334.0, 1); + } + } } diff --git a/src/postgres/src/include/optimizer/cost.h b/src/postgres/src/include/optimizer/cost.h index 6dc9d4291524..f25fe5f013c5 100644 --- a/src/postgres/src/include/optimizer/cost.h +++ b/src/postgres/src/include/optimizer/cost.h @@ -46,9 +46,9 @@ #define YB_DEFAULT_DOCDB_BLOCK_SIZE 32768 /* LSM Lookup costs */ -#define YB_DEFAULT_DOCDB_NEXT_CPU_CYCLES 50 -#define YB_DEFAULT_SEEK_COST_FACTOR 50 -#define YB_DEFAULT_BACKWARD_SEEK_COST_FACTOR 10 +#define YB_DEFAULT_DOCDB_NEXT_CPU_CYCLES 5 +#define YB_DEFAULT_SEEK_COST_FACTOR 0.4 +#define YB_DEFAULT_BACKWARD_SEEK_COST_FACTOR 1 /* * The value for the fast backward scan seek cost factor has been selected based on the smallest @@ -59,14 +59,14 @@ #define YB_DEFAULT_FAST_BACKWARD_SEEK_COST_FACTOR (YB_DEFAULT_BACKWARD_SEEK_COST_FACTOR / 3.0) /* DocDB row decode and process cost */ -#define YB_DEFAULT_DOCDB_MERGE_CPU_CYCLES 50 +#define YB_DEFAULT_DOCDB_MERGE_CPU_CYCLES 5 /* DocDB storage filter cost */ -#define YB_DEFAULT_DOCDB_REMOTE_FILTER_OVERHEAD_CYCLES 20 +#define YB_DEFAULT_DOCDB_REMOTE_FILTER_OVERHEAD_CYCLES 3 /* Network transfer cost */ -#define YB_DEFAULT_LOCAL_LATENCY_COST 180.0 -#define YB_DEFAULT_LOCAL_THROUGHPUT_COST 80000.0 +#define YB_DEFAULT_LOCAL_LATENCY_COST 10.0 +#define YB_DEFAULT_LOCAL_THROUGHPUT_COST 800.0 /* * TODO : Since we cannot currently estimate the number of key value pairs per diff --git a/src/postgres/src/test/regress/expected/yb.orig.bitmap_scans.out b/src/postgres/src/test/regress/expected/yb.orig.bitmap_scans.out index 49222e8ddbd7..187c2075da5b 100644 --- a/src/postgres/src/test/regress/expected/yb.orig.bitmap_scans.out +++ b/src/postgres/src/test/regress/expected/yb.orig.bitmap_scans.out @@ -1818,40 +1818,49 @@ ANALYZE test_and; (7 rows) /*+ BitmapScan(t) */ EXPLAIN (ANALYZE, SUMMARY OFF, COSTS OFF) SELECT * FROM test_and t WHERE a < 10 AND b < 10; - QUERY PLAN ----------------------------------------------------------------------- + QUERY PLAN +---------------------------------------------------------------------------- YB Bitmap Table Scan on test_and t (actual rows=1620 loops=1) - Storage Filter: (a < 10) - -> Bitmap Index Scan on test_and_b_idx (actual rows=3600 loops=1) - Index Cond: (b < 10) -(4 rows) + -> BitmapAnd (actual rows=1620 loops=1) + -> Bitmap Index Scan on test_and_b_idx (actual rows=3600 loops=1) + Index Cond: (b < 10) + -> Bitmap Index Scan on test_and_a_idx (actual rows=3600 loops=1) + Index Cond: (a < 10) +(6 rows) /*+ BitmapScan(t) */ EXPLAIN (ANALYZE, SUMMARY OFF, COSTS OFF) SELECT * FROM test_and t WHERE a < 10 AND c < 10; - QUERY PLAN ----------------------------------------------------------------------- + QUERY PLAN +---------------------------------------------------------------------------- YB Bitmap Table Scan on test_and t (actual rows=1620 loops=1) - Storage Filter: (a < 10) - -> Bitmap Index Scan on test_and_c_idx (actual rows=3600 loops=1) - Index Cond: (c < 10) -(4 rows) + -> BitmapAnd (actual rows=1620 loops=1) + -> Bitmap Index Scan on test_and_c_idx (actual rows=3600 loops=1) + Index Cond: (c < 10) + -> Bitmap Index Scan on test_and_a_idx (actual rows=3600 loops=1) + Index Cond: (a < 10) +(6 rows) /*+ BitmapScan(t) */ EXPLAIN (ANALYZE, SUMMARY OFF, COSTS OFF) SELECT * FROM test_and t WHERE b < 10 AND c < 10; - QUERY PLAN ----------------------------------------------------------------------- + QUERY PLAN +---------------------------------------------------------------------------- YB Bitmap Table Scan on test_and t (actual rows=1620 loops=1) - Storage Filter: (b < 10) - -> Bitmap Index Scan on test_and_c_idx (actual rows=3600 loops=1) - Index Cond: (c < 10) -(4 rows) + -> BitmapAnd (actual rows=1620 loops=1) + -> Bitmap Index Scan on test_and_c_idx (actual rows=3600 loops=1) + Index Cond: (c < 10) + -> Bitmap Index Scan on test_and_b_idx (actual rows=3600 loops=1) + Index Cond: (b < 10) +(6 rows) /*+ BitmapScan(t) */ EXPLAIN (ANALYZE, SUMMARY OFF, COSTS OFF) SELECT * FROM test_and t WHERE a < 10 AND b < 10 AND c < 10; - QUERY PLAN ----------------------------------------------------------------------- + QUERY PLAN +---------------------------------------------------------------------------- YB Bitmap Table Scan on test_and t (actual rows=729 loops=1) - Storage Filter: ((a < 10) AND (b < 10)) - -> Bitmap Index Scan on test_and_c_idx (actual rows=3600 loops=1) - Index Cond: (c < 10) -(4 rows) + Storage Filter: (a < 10) + -> BitmapAnd (actual rows=1620 loops=1) + -> Bitmap Index Scan on test_and_c_idx (actual rows=3600 loops=1) + Index Cond: (c < 10) + -> Bitmap Index Scan on test_and_b_idx (actual rows=3600 loops=1) + Index Cond: (b < 10) +(7 rows) -- complex nested queries /*+ BitmapScan(t) */ EXPLAIN (ANALYZE, SUMMARY OFF, COSTS OFF) SELECT * FROM test_and t WHERE a < 5 AND (b < 3 OR b > 16); @@ -1859,13 +1868,13 @@ ANALYZE test_and; ---------------------------------------------------------------------------------- YB Bitmap Table Scan on test_and t (actual rows=480 loops=1) -> BitmapAnd (actual rows=480 loops=1) + -> Bitmap Index Scan on test_and_a_idx (actual rows=1600 loops=1) + Index Cond: (a < 5) -> BitmapOr (actual rows=2400 loops=1) -> Bitmap Index Scan on test_and_b_idx (actual rows=800 loops=1) Index Cond: (b < 3) -> Bitmap Index Scan on test_and_b_idx (actual rows=1600 loops=1) Index Cond: (b > 16) - -> Bitmap Index Scan on test_and_a_idx (actual rows=1600 loops=1) - Index Cond: (a < 5) (9 rows) /*+ BitmapScan(t) */ EXPLAIN (ANALYZE, SUMMARY OFF, COSTS OFF) SELECT * FROM test_and t WHERE (b < 3 AND a < 5) OR (b > 16 AND a < 5); @@ -1873,26 +1882,29 @@ ANALYZE test_and; ---------------------------------------------------------------------------------- YB Bitmap Table Scan on test_and t (actual rows=480 loops=1) -> BitmapAnd (actual rows=480 loops=1) + -> Bitmap Index Scan on test_and_a_idx (actual rows=1600 loops=1) + Index Cond: (a < 5) -> BitmapOr (actual rows=2400 loops=1) -> Bitmap Index Scan on test_and_b_idx (actual rows=800 loops=1) Index Cond: (b < 3) -> Bitmap Index Scan on test_and_b_idx (actual rows=1600 loops=1) Index Cond: (b > 16) - -> Bitmap Index Scan on test_and_a_idx (actual rows=1600 loops=1) - Index Cond: (a < 5) (9 rows) /*+ BitmapScan(t) */ EXPLAIN (ANALYZE, SUMMARY OFF, COSTS OFF) SELECT * FROM test_and t WHERE (b < 3 AND a < 5) OR (b > 16 AND a < 6); - QUERY PLAN ----------------------------------------------------------------------------- + QUERY PLAN +---------------------------------------------------------------------------------- YB Bitmap Table Scan on test_and t (actual rows=560 loops=1) Storage Filter: (((b < 3) AND (a < 5)) OR ((b > 16) AND (a < 6))) - -> BitmapOr (actual rows=2400 loops=1) + -> BitmapOr (actual rows=1200 loops=1) -> Bitmap Index Scan on test_and_b_idx (actual rows=800 loops=1) Index Cond: (b < 3) - -> Bitmap Index Scan on test_and_b_idx (actual rows=1600 loops=1) - Index Cond: (b > 16) -(7 rows) + -> BitmapAnd (actual rows=400 loops=1) + -> Bitmap Index Scan on test_and_b_idx (actual rows=1600 loops=1) + Index Cond: (b > 16) + -> Bitmap Index Scan on test_and_a_idx (actual rows=2000 loops=1) + Index Cond: (a < 6) +(10 rows) RESET yb_enable_base_scans_cost_model; RESET yb_explain_hide_non_deterministic_fields; diff --git a/src/postgres/src/test/regress/expected/yb.orig.bitmap_scans_colo.out b/src/postgres/src/test/regress/expected/yb.orig.bitmap_scans_colo.out index 43624cf159b6..8671c2b119fb 100644 --- a/src/postgres/src/test/regress/expected/yb.orig.bitmap_scans_colo.out +++ b/src/postgres/src/test/regress/expected/yb.orig.bitmap_scans_colo.out @@ -1874,40 +1874,49 @@ ANALYZE test_and; (7 rows) /*+ BitmapScan(t) */ EXPLAIN (ANALYZE, SUMMARY OFF, COSTS OFF) SELECT * FROM test_and t WHERE a < 10 AND b < 10; - QUERY PLAN ----------------------------------------------------------------------- + QUERY PLAN +---------------------------------------------------------------------------- YB Bitmap Table Scan on test_and t (actual rows=1620 loops=1) - Storage Filter: (a < 10) - -> Bitmap Index Scan on test_and_b_idx (actual rows=3600 loops=1) - Index Cond: (b < 10) -(4 rows) + -> BitmapAnd (actual rows=1620 loops=1) + -> Bitmap Index Scan on test_and_b_idx (actual rows=3600 loops=1) + Index Cond: (b < 10) + -> Bitmap Index Scan on test_and_a_idx (actual rows=3600 loops=1) + Index Cond: (a < 10) +(6 rows) /*+ BitmapScan(t) */ EXPLAIN (ANALYZE, SUMMARY OFF, COSTS OFF) SELECT * FROM test_and t WHERE a < 10 AND c < 10; - QUERY PLAN ----------------------------------------------------------------------- + QUERY PLAN +---------------------------------------------------------------------------- YB Bitmap Table Scan on test_and t (actual rows=1620 loops=1) - Storage Filter: (a < 10) - -> Bitmap Index Scan on test_and_c_idx (actual rows=3600 loops=1) - Index Cond: (c < 10) -(4 rows) + -> BitmapAnd (actual rows=1620 loops=1) + -> Bitmap Index Scan on test_and_c_idx (actual rows=3600 loops=1) + Index Cond: (c < 10) + -> Bitmap Index Scan on test_and_a_idx (actual rows=3600 loops=1) + Index Cond: (a < 10) +(6 rows) /*+ BitmapScan(t) */ EXPLAIN (ANALYZE, SUMMARY OFF, COSTS OFF) SELECT * FROM test_and t WHERE b < 10 AND c < 10; - QUERY PLAN ----------------------------------------------------------------------- + QUERY PLAN +---------------------------------------------------------------------------- YB Bitmap Table Scan on test_and t (actual rows=1620 loops=1) - Storage Filter: (b < 10) - -> Bitmap Index Scan on test_and_c_idx (actual rows=3600 loops=1) - Index Cond: (c < 10) -(4 rows) + -> BitmapAnd (actual rows=1620 loops=1) + -> Bitmap Index Scan on test_and_c_idx (actual rows=3600 loops=1) + Index Cond: (c < 10) + -> Bitmap Index Scan on test_and_b_idx (actual rows=3600 loops=1) + Index Cond: (b < 10) +(6 rows) /*+ BitmapScan(t) */ EXPLAIN (ANALYZE, SUMMARY OFF, COSTS OFF) SELECT * FROM test_and t WHERE a < 10 AND b < 10 AND c < 10; - QUERY PLAN ----------------------------------------------------------------------- + QUERY PLAN +---------------------------------------------------------------------------- YB Bitmap Table Scan on test_and t (actual rows=729 loops=1) - Storage Filter: ((a < 10) AND (b < 10)) - -> Bitmap Index Scan on test_and_c_idx (actual rows=3600 loops=1) - Index Cond: (c < 10) -(4 rows) + Storage Filter: (a < 10) + -> BitmapAnd (actual rows=1620 loops=1) + -> Bitmap Index Scan on test_and_c_idx (actual rows=3600 loops=1) + Index Cond: (c < 10) + -> Bitmap Index Scan on test_and_b_idx (actual rows=3600 loops=1) + Index Cond: (b < 10) +(7 rows) -- complex nested queries /*+ BitmapScan(t) */ EXPLAIN (ANALYZE, SUMMARY OFF, COSTS OFF) SELECT * FROM test_and t WHERE a < 5 AND (b < 3 OR b > 16); @@ -1915,13 +1924,13 @@ ANALYZE test_and; ---------------------------------------------------------------------------------- YB Bitmap Table Scan on test_and t (actual rows=480 loops=1) -> BitmapAnd (actual rows=480 loops=1) + -> Bitmap Index Scan on test_and_a_idx (actual rows=1600 loops=1) + Index Cond: (a < 5) -> BitmapOr (actual rows=2400 loops=1) -> Bitmap Index Scan on test_and_b_idx (actual rows=800 loops=1) Index Cond: (b < 3) -> Bitmap Index Scan on test_and_b_idx (actual rows=1600 loops=1) Index Cond: (b > 16) - -> Bitmap Index Scan on test_and_a_idx (actual rows=1600 loops=1) - Index Cond: (a < 5) (9 rows) /*+ BitmapScan(t) */ EXPLAIN (ANALYZE, SUMMARY OFF, COSTS OFF) SELECT * FROM test_and t WHERE (b < 3 AND a < 5) OR (b > 16 AND a < 5); @@ -1929,26 +1938,29 @@ ANALYZE test_and; ---------------------------------------------------------------------------------- YB Bitmap Table Scan on test_and t (actual rows=480 loops=1) -> BitmapAnd (actual rows=480 loops=1) + -> Bitmap Index Scan on test_and_a_idx (actual rows=1600 loops=1) + Index Cond: (a < 5) -> BitmapOr (actual rows=2400 loops=1) -> Bitmap Index Scan on test_and_b_idx (actual rows=800 loops=1) Index Cond: (b < 3) -> Bitmap Index Scan on test_and_b_idx (actual rows=1600 loops=1) Index Cond: (b > 16) - -> Bitmap Index Scan on test_and_a_idx (actual rows=1600 loops=1) - Index Cond: (a < 5) (9 rows) /*+ BitmapScan(t) */ EXPLAIN (ANALYZE, SUMMARY OFF, COSTS OFF) SELECT * FROM test_and t WHERE (b < 3 AND a < 5) OR (b > 16 AND a < 6); - QUERY PLAN ----------------------------------------------------------------------------- + QUERY PLAN +---------------------------------------------------------------------------------- YB Bitmap Table Scan on test_and t (actual rows=560 loops=1) Storage Filter: (((b < 3) AND (a < 5)) OR ((b > 16) AND (a < 6))) - -> BitmapOr (actual rows=2400 loops=1) + -> BitmapOr (actual rows=1200 loops=1) -> Bitmap Index Scan on test_and_b_idx (actual rows=800 loops=1) Index Cond: (b < 3) - -> Bitmap Index Scan on test_and_b_idx (actual rows=1600 loops=1) - Index Cond: (b > 16) -(7 rows) + -> BitmapAnd (actual rows=400 loops=1) + -> Bitmap Index Scan on test_and_b_idx (actual rows=1600 loops=1) + Index Cond: (b > 16) + -> Bitmap Index Scan on test_and_a_idx (actual rows=2000 loops=1) + Index Cond: (a < 6) +(10 rows) RESET yb_enable_base_scans_cost_model; RESET yb_explain_hide_non_deterministic_fields; diff --git a/src/postgres/src/test/regress/expected/yb.orig.join_batching_plans.out b/src/postgres/src/test/regress/expected/yb.orig.join_batching_plans.out index 818cb1e06bda..ae93eb067d73 100644 --- a/src/postgres/src/test/regress/expected/yb.orig.join_batching_plans.out +++ b/src/postgres/src/test/regress/expected/yb.orig.join_batching_plans.out @@ -218,8 +218,8 @@ EXPLAIN (COSTS OFF) SELECT * FROM p3 t3 RIGHT OUTER JOIN (SELECT t1.a as a FROM Join Filter: (t3.a = t1.a) -> YB Batched Nested Loop Join Join Filter: (t1.a = t2.b) - -> Seq Scan on p2 t2 - Storage Filter: (b <= 15) + -> Index Scan using p2_pkey on p2 t2 + Index Cond: (b <= 15) -> Index Scan using p1_pkey on p1 t1 Index Cond: ((a = ANY (ARRAY[t2.b, $1, $2, ..., $1023])) AND (b <= 10)) -> Index Scan using p3_pkey on p3 t3 @@ -233,8 +233,8 @@ EXPLAIN (COSTS OFF) SELECT * FROM p3 t3 RIGHT OUTER JOIN (SELECT t1.a as a FROM Join Filter: (t3.a = t1.a) -> YB Batched Nested Loop Join Join Filter: (t1.a = t2.b) - -> Seq Scan on p1 t1 - Storage Filter: (b <= 10) + -> Index Scan using p1_pkey on p1 t1 + Index Cond: (b <= 10) -> Index Scan using p2_pkey on p2 t2 Index Cond: ((b = ANY (ARRAY[t1.a, $1, $2, ..., $1023])) AND (b <= 15)) -> Index Scan using p3_pkey on p3 t3 @@ -433,17 +433,17 @@ insert into s3 select generate_series(1,10); ANALYZE; explain (costs off) /*+Leading(( ( s1 s2 ) s3 )) MergeJoin(s1 s2)*/select * from s1 left outer join s2 on s1.a = s2.a left outer join s3 on s2.a = s3.a where s1.a < 5; - QUERY PLAN --------------------------------------------- - Nested Loop Left Join + QUERY PLAN +----------------------------------------------------------------- + YB Batched Nested Loop Left Join Join Filter: (s2.a = s3.a) -> Merge Left Join Merge Cond: (s1.a = s2.a) -> Index Scan using s1_pkey on s1 Index Cond: (a < 5) -> Index Scan using s2_pkey on s2 - -> Materialize - -> Index Scan using s3_pkey on s3 + -> Index Scan using s3_pkey on s3 + Index Cond: (a = ANY (ARRAY[s2.a, $1, $2, ..., $1023])) (9 rows) drop table s1; diff --git a/src/postgres/src/test/regress/expected/yb.orig.parallel_colocated.out b/src/postgres/src/test/regress/expected/yb.orig.parallel_colocated.out index 63ad3984a25a..b5897a609021 100644 --- a/src/postgres/src/test/regress/expected/yb.orig.parallel_colocated.out +++ b/src/postgres/src/test/regress/expected/yb.orig.parallel_colocated.out @@ -23,6 +23,10 @@ set yb_parallel_range_rows to 1; set yb_enable_base_scans_cost_model to true; -- parallel bitmap scan not supported yet set enable_bitmapscan = false; +-- encourage use of parallel plans for the remaining tests by gucs +-- since the "hard" option of Parallel hint is broken. (#26181) +set parallel_setup_cost=0; +set parallel_tuple_cost=0; -- Parallel sequential scan /*+ Parallel(pctest1 2 hard) */ EXPLAIN (costs off) @@ -54,16 +58,14 @@ SELECT * FROM pctest1 WHERE d LIKE 'Value_9'; /*+ Parallel(pctest1 2 hard) */ EXPLAIN (costs off) SELECT count(*) FROM pctest1 WHERE d LIKE 'Value_9'; - QUERY PLAN ------------------------------------------------------------- - Finalize Aggregate + QUERY PLAN +------------------------------------------------------ + Aggregate -> Gather Workers Planned: 2 - -> Noop Aggregate - -> Parallel Seq Scan on pctest1 - Storage Filter: (d ~~ 'Value_9'::text) - Partial Aggregate: true -(7 rows) + -> Parallel Seq Scan on pctest1 + Storage Filter: (d ~~ 'Value_9'::text) +(5 rows) /*+ Parallel(pctest1 2 hard) */ SELECT count(*) FROM pctest1 WHERE d LIKE 'Value_9'; @@ -105,69 +107,61 @@ SELECT * FROM pctest1 WHERE d LIKE 'Value_9' ORDER BY b DESC; /*+ Parallel(pctest1 2 hard) */ EXPLAIN (costs off) SELECT b, count(*) FROM pctest1 WHERE d LIKE 'Value9%' GROUP BY b; - QUERY PLAN ------------------------------------------------------------------- - Finalize GroupAggregate + QUERY PLAN +------------------------------------------------------ + HashAggregate Group Key: b - -> Gather Merge + -> Gather Workers Planned: 2 - -> Partial GroupAggregate - Group Key: b - -> Sort - Sort Key: b - -> Parallel Seq Scan on pctest1 - Storage Filter: (d ~~ 'Value9%'::text) -(10 rows) + -> Parallel Seq Scan on pctest1 + Storage Filter: (d ~~ 'Value9%'::text) +(6 rows) /*+ Parallel(pctest1 2 hard) */ SELECT b, count(*) FROM pctest1 WHERE d LIKE 'Value9%' GROUP BY b; b | count -----+------- - 3 | 1 - 30 | 3 + 305 | 3 + 321 | 3 + 304 | 3 + 303 | 3 + 333 | 1 + 325 | 3 + 314 | 3 + 322 | 3 + 330 | 3 + 309 | 3 31 | 3 - 32 | 3 - 33 | 1 + 323 | 3 + 327 | 3 + 320 | 3 + 312 | 3 300 | 3 - 301 | 3 - 302 | 3 - 303 | 3 - 304 | 3 - 305 | 3 + 317 | 3 + 329 | 3 + 326 | 3 + 311 | 3 306 | 3 - 307 | 3 + 328 | 3 + 32 | 3 + 318 | 3 + 301 | 3 308 | 3 - 309 | 3 - 310 | 3 - 311 | 3 - 312 | 3 313 | 3 - 314 | 3 - 315 | 3 + 302 | 3 + 30 | 3 316 | 3 - 317 | 3 - 318 | 3 - 319 | 3 - 320 | 3 - 321 | 3 - 322 | 3 - 323 | 3 + 3 | 1 324 | 3 - 325 | 3 - 326 | 3 - 327 | 3 - 328 | 3 - 329 | 3 - 330 | 3 - 331 | 3 + 310 | 3 332 | 3 - 333 | 1 + 319 | 3 + 331 | 3 + 33 | 1 + 315 | 3 + 307 | 3 (39 rows) --- encourage use of parallel plans for the remaining tests by gucs --- since the "hard" option of Parallel hint is broken. (#26181) -set parallel_setup_cost=0; -set parallel_tuple_cost=0; -- Parallel index scan EXPLAIN (costs off) SELECT * FROM pctest1 WHERE k < 10; @@ -328,30 +322,28 @@ SELECT a FROM pctest1 WHERE a < 10; -- with grouping EXPLAIN (costs off) SELECT c, count(*) FROM pctest1 WHERE c > 40 GROUP BY c; - QUERY PLAN ---------------------------------------------------------------------------- - Finalize GroupAggregate + QUERY PLAN +--------------------------------------------------------------------- + HashAggregate Group Key: c - -> Gather Merge + -> Gather Workers Planned: 2 - -> Partial GroupAggregate - Group Key: c - -> Parallel Index Only Scan using pctest1_c_idx on pctest1 - Index Cond: (c > 40) -(8 rows) + -> Parallel Index Only Scan using pctest1_c_idx on pctest1 + Index Cond: (c > 40) +(6 rows) SELECT c, count(*) FROM pctest1 WHERE c > 40 GROUP BY c; c | count ----+------- - 41 | 20 42 | 20 + 41 | 20 + 46 | 20 43 | 20 - 44 | 20 45 | 20 - 46 | 20 - 47 | 20 48 | 20 49 | 20 + 47 | 20 + 44 | 20 (9 rows) -- Joins @@ -407,20 +399,19 @@ SELECT pctest1.* FROM pctest1, pctest2 EXPLAIN (costs off) /*+YbBatchedNL(pctest1 pctest2)*/ SELECT pctest1.*, pctest2.k FROM pctest1, pctest2 WHERE pctest1.c = 42 AND pctest1.k = pctest2.k ORDER BY pctest1.k; - QUERY PLAN ----------------------------------------------------------------------- - YB Batched Nested Loop Join - Join Filter: (pctest1.k = pctest2.k) - Sort Keys: pctest1.k - -> Gather Merge + QUERY PLAN +---------------------------------------------------------------------------------- + Sort + Sort Key: pctest1.k + -> Gather Workers Planned: 2 - -> Sort - Sort Key: pctest1.k + -> YB Batched Nested Loop Join + Join Filter: (pctest1.k = pctest2.k) -> Parallel Index Scan using pctest1_c_idx on pctest1 Index Cond: (c = 42) - -> Index Scan using pctest2_pkey on pctest2 - Index Cond: (k = ANY (ARRAY[pctest1.k, $2, $3, ..., $1024])) -(11 rows) + -> Index Scan using pctest2_pkey on pctest2 + Index Cond: (k = ANY (ARRAY[pctest1.k, $1, $2, ..., $1023])) +(10 rows) /*+YbBatchedNL(pctest1 pctest2)*/ SELECT pctest1.*, pctest2.k FROM pctest1, pctest2 WHERE pctest1.c = 42 AND pctest1.k = pctest2.k ORDER BY pctest1.k; @@ -537,31 +528,33 @@ SELECT * FROM WHERE pctest1.k = pctest2.k AND pctest1.c = pctest2.c) s1 JOIN (SELECT pctest2.* FROM pctest1, pctest2 WHERE pctest1.k = pctest2.k AND pctest1.b = pctest2.b) s2 ON s1.b = s2.c; - QUERY PLAN -------------------------------------------------------------------------------------- - Nested Loop - Join Filter: (pctest1.b = pctest2_1.c) - -> Merge Join - Merge Cond: (pctest1_1.k = pctest2_1.k) - Join Filter: (pctest1_1.b = pctest2_1.b) - -> Gather Merge - Workers Planned: 2 - -> Parallel Index Scan using pctest1_pkey on pctest1 pctest1_1 - -> Materialize - -> Gather Merge + QUERY PLAN +--------------------------------------------------------------------------------------------- + Merge Join + Merge Cond: (pctest1_1.k = pctest2_1.k) + Join Filter: (pctest2_1.b = pctest1_1.b) + -> Gather Merge + Workers Planned: 2 + -> Parallel Index Scan using pctest1_pkey on pctest1 pctest1_1 + -> Sort + Sort Key: pctest2_1.k + -> Hash Join + Hash Cond: (pctest2_1.c = pctest1.b) + -> Gather Workers Planned: 2 -> Parallel Index Scan using pctest2_pkey on pctest2 pctest2_1 - -> Merge Join - Merge Cond: (pctest1.k = pctest2.k) - Join Filter: (pctest1.c = pctest2.c) - -> Gather Merge - Workers Planned: 2 - -> Parallel Index Scan using pctest1_pkey on pctest1 - -> Materialize - -> Gather Merge - Workers Planned: 2 - -> Parallel Index Scan using pctest2_pkey on pctest2 -(22 rows) + -> Hash + -> Merge Join + Merge Cond: (pctest1.k = pctest2.k) + Join Filter: (pctest1.c = pctest2.c) + -> Gather Merge + Workers Planned: 2 + -> Parallel Index Scan using pctest1_pkey on pctest1 + -> Materialize + -> Gather Merge + Workers Planned: 2 + -> Parallel Index Scan using pctest2_pkey on pctest2 +(24 rows) SELECT * FROM (SELECT pctest1.* FROM pctest1, pctest2 @@ -570,12 +563,12 @@ SELECT * FROM WHERE pctest1.k = pctest2.k AND pctest1.b = pctest2.b) s2 ON s1.b = s2.c; k | a | b | c | d | k | a | b | c | d ---+-----+---+---+--------+---+-----+---+---+--------------- - 3 | 997 | 1 | 3 | Value3 | 1 | 201 | 0 | 1 | Other value 1 - 4 | 996 | 1 | 4 | Value4 | 1 | 201 | 0 | 1 | Other value 1 5 | 995 | 1 | 5 | Value5 | 1 | 201 | 0 | 1 | Other value 1 - 6 | 994 | 2 | 6 | Value6 | 2 | 202 | 0 | 2 | Other value 2 - 7 | 993 | 2 | 7 | Value7 | 2 | 202 | 0 | 2 | Other value 2 + 4 | 996 | 1 | 4 | Value4 | 1 | 201 | 0 | 1 | Other value 1 + 3 | 997 | 1 | 3 | Value3 | 1 | 201 | 0 | 1 | Other value 1 8 | 992 | 2 | 8 | Value8 | 2 | 202 | 0 | 2 | Other value 2 + 7 | 993 | 2 | 7 | Value7 | 2 | 202 | 0 | 2 | Other value 2 + 6 | 994 | 2 | 6 | Value6 | 2 | 202 | 0 | 2 | Other value 2 (6 rows) -- no parallelism @@ -646,25 +639,23 @@ SELECT * from pctest2 AND b < (SELECT avg(b) FROM pctest1 WHERE d LIKE 'Value_9'); QUERY PLAN -------------------------------------------------------------- - Nested Loop Semi Join - Join Filter: (pctest2.c = pctest1.b) + Gather + Workers Planned: 2 + Params Evaluated: $1 InitPlan 1 (returns $1) -> Aggregate -> Gather Workers Planned: 2 -> Parallel Seq Scan on pctest1 pctest1_1 Storage Filter: (d ~~ 'Value_9'::text) - -> Gather - Workers Planned: 2 - Params Evaluated: $1 + -> Parallel Hash Semi Join + Hash Cond: (pctest2.c = pctest1.b) -> Parallel Seq Scan on pctest2 Storage Filter: ((b)::numeric < $1) - -> Materialize - -> Gather - Workers Planned: 2 + -> Parallel Hash -> Parallel Seq Scan on pctest1 Storage Filter: (d ~~ 'Value_9'::text) -(18 rows) +(16 rows) SELECT * from pctest2 WHERE c IN (SELECT b FROM pctest1 WHERE d LIKE 'Value_9') diff --git a/src/postgres/src/test/regress/expected/yb.orig.planner_base_scans_cost_model.out b/src/postgres/src/test/regress/expected/yb.orig.planner_base_scans_cost_model.out index 540bcc03ed99..7879570e38b0 100644 --- a/src/postgres/src/test/regress/expected/yb.orig.planner_base_scans_cost_model.out +++ b/src/postgres/src/test/regress/expected/yb.orig.planner_base_scans_cost_model.out @@ -97,56 +97,48 @@ EXPLAIN (COSTS OFF) SELECT * FROM t_24916 WHERE v1 = 1 AND v2 < 5; (2 rows) -------------------------------------------------------------------------------- --- #25682 : Estimated seeks and nexts value can overflow in a large table +-- #23709 : YB vs. PG operator cost disparity causing optimizer to choose +-- slower disk sort plan over ordered index without explicit sort -------------------------------------------------------------------------------- -CREATE TABLE t_25682 (k1 INT, v1 INT, PRIMARY KEY (k1 ASC)); -CREATE INDEX t_25682_idx on t_25682 (v1 ASC); --- Simluate a large table by setting reltuples in pg_class to 4B row +CREATE TABLE t_23709 (a int, b int, c int, d char(512), g int, t timestamp, primary key (a ASC)); +CREATE INDEX idx_t_23709_g_t_a ON t_23709 (g ASC, t DESC, a DESC); +CREATE INDEX idx_t_23709_t_g_a ON t_23709 (t DESC, g ASC, a DESC); +-- Simulating statatistics instead of adding 4M rows, to make test run faster +-- and to avoid flakiness. SET yb_non_ddl_txn_for_sys_tables_allowed = ON; -UPDATE pg_class SET reltuples=4000000000 WHERE relname LIKE '%t_25682%'; -UPDATE pg_yb_catalog_version SET current_version=current_version+1 WHERE db_oid=1; +UPDATE pg_class SET reltuples = 4000000.0, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't_23709' OR relname = 't_23709_pkey'); +UPDATE pg_class SET reltuples = 4000000.0, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't_23709_pkey' OR relname = 't_23709_pkey_pkey'); +UPDATE pg_class SET reltuples = 4000000.0, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 'idx_t_23709_g_t_a' OR relname = 'idx_t_23709_g_t_a_pkey'); +UPDATE pg_class SET reltuples = 4000000.0, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 'idx_t_23709_t_g_a' OR relname = 'idx_t_23709_t_g_a_pkey'); +DELETE FROM pg_statistic WHERE starelid = 'public.t_23709'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t_23709'::regclass and a.attname = 'a'); +INSERT INTO pg_statistic VALUES ('public.t_23709'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t_23709'::regclass and a.attname = 'a'), False::boolean, 0::real, 4::integer, -1::real, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 97::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, NULL::real[], '{0.0012466755}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{38, 42048, 81030, 120971, 161377, 198497, 237264, 278640, 318384, 358048, 395704, 435410, 474581, 515079, 553855, 595183, 633155, 670749, 713409, 755043, 797430, 837684, 879094, 923587, 963310, 1007316, 1046548, 1086825, 1128777, 1168887, 1208482, 1249097, 1289714, 1330255, 1372393, 1410885, 1451233, 1488918, 1528422, 1569157, 1608540, 1644234, 1682107, 1719635, 1758212, 1797026, 1839579, 1883798, 1923662, 1963896, 2000589, 2040171, 2084192, 2124639, 2162946, 2199029, 2242735, 2285812, 2330026, 2369318, 2408734, 2450429, 2490533, 2528832, 2566602, 2608123, 2648280, 2689266, 2731865, 2769815, 2810569, 2851840, 2888430, 2922850, 2963154, 2999105, 3037417, 3076571, 3114611, 3153881, 3194706, 3228791, 3266011, 3304785, 3343986, 3385912, 3428375, 3472589, 3516122, 3556998, 3595811, 3634195, 3675248, 3714389, 3756138, 3795568, 3837211, 3878330, 3918931, 3959480, 3999979}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.t_23709'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t_23709'::regclass and a.attname = 'b'); +INSERT INTO pg_statistic VALUES ('public.t_23709'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t_23709'::regclass and a.attname = 'b'), False::boolean, 0::real, 4::integer, -0.20015675::real, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 97::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, NULL::real[], '{-0.0027559977}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{38, 7739, 15336, 23350, 30685, 38354, 46075, 54400, 62194, 69870, 77506, 85736, 93782, 101635, 109027, 117334, 125644, 132661, 140716, 148665, 157135, 164881, 173173, 180968, 189040, 197776, 205804, 214177, 222135, 230329, 238083, 246638, 256057, 263936, 272210, 280502, 288276, 296161, 304858, 313355, 321602, 329881, 337441, 345818, 353430, 361680, 369551, 378196, 385826, 392486, 400190, 408168, 416335, 424445, 432504, 440766, 448629, 455445, 463183, 471705, 480099, 488591, 497126, 504552, 512105, 519894, 527503, 535118, 543299, 552734, 560343, 567753, 575626, 582638, 589793, 598024, 605760, 613188, 620890, 629354, 638527, 646786, 654883, 662297, 670157, 678307, 686414, 694652, 703195, 711046, 718938, 726963, 735214, 743405, 750743, 759359, 768206, 776302, 784058, 792127, 799979}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.t_23709'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t_23709'::regclass and a.attname = 'c'); +INSERT INTO pg_statistic VALUES ('public.t_23709'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t_23709'::regclass and a.attname = 'c'), False::boolean, 0::real, 4::integer, -0.138014::real, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 97::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, NULL::real[], '{-0.011019879}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{30, 5823, 11256, 17596, 23326, 29385, 34942, 40945, 46608, 52937, 57858, 62943, 68351, 74251, 80349, 85469, 91213, 97384, 103292, 108680, 115083, 120390, 125774, 131403, 137561, 143659, 149269, 155254, 160847, 166335, 172551, 178222, 183992, 189727, 195519, 200805, 206744, 212116, 218417, 223904, 229120, 234377, 239941, 245931, 251227, 257087, 262732, 268535, 273666, 279756, 285148, 290744, 296649, 302737, 308762, 314831, 319930, 325804, 331157, 336619, 342524, 348934, 354355, 360011, 365816, 371670, 377459, 383210, 388602, 394189, 399880, 405685, 411543, 417095, 422656, 429027, 434465, 440666, 446032, 451517, 457254, 462642, 468217, 473541, 479415, 484920, 490533, 496466, 501592, 506789, 512873, 518930, 525055, 530902, 536870, 542749, 549144, 554935, 560704, 565852, 571414}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.t_23709'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t_23709'::regclass and a.attname = 'g'); +INSERT INTO pg_statistic VALUES ('public.t_23709'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t_23709'::regclass and a.attname = 'g'), False::boolean, 0::real, 4::integer, -0.1243445::real, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 97::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, NULL::real[], '{-0.00023303942}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{39, 5016, 9982, 15144, 19706, 24891, 29596, 34775, 39660, 44457, 49977, 54778, 59643, 64636, 69725, 75269, 80442, 84942, 89715, 94915, 100124, 104709, 109450, 114893, 119837, 124732, 129182, 133879, 138808, 143923, 148774, 153753, 159053, 163900, 168466, 173677, 178629, 183544, 187906, 192973, 198249, 202955, 207523, 212397, 217580, 222477, 227484, 231992, 237107, 242257, 247625, 252424, 257507, 262377, 267987, 272740, 277757, 282761, 287905, 292969, 298056, 303362, 308523, 313913, 318707, 323936, 329477, 334592, 339684, 344867, 349915, 354823, 359751, 364710, 369330, 374909, 379826, 384962, 389762, 394977, 399783, 404915, 409735, 414590, 419736, 424649, 429572, 434522, 439886, 445171, 450336, 456068, 460832, 465540, 470434, 475175, 480306, 485356, 490126, 495412, 499993}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.t_23709'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t_23709'::regclass and a.attname = 'd'); +INSERT INTO pg_statistic VALUES ('public.t_23709'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t_23709'::regclass and a.attname = 'd'), False::boolean, 0::real, 516::integer, -1::real, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 1058::oid, 1058::oid, 0::oid, 0::oid, 0::oid, 100::oid, 100::oid, 0::oid, 0::oid, 0::oid, NULL::real[], '{-0.012379769}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1000055-1000056", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1039938-1039939", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1079009-1079010", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1121403-1121404", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1161169-1161170", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1201985-1201986", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1241351-1241352", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1280869-1280870", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1323327-1323328", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1366390-1366391", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1403896-1403897", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1442894-1442895", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1480181-1480182", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1520854-1520855", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1561171-1561172", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1601424-1601425", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1638367-1638368", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1675369-1675370", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1712883-1712884", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1750382-1750383", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1789491-1789492", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1832670-1832671", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1875843-1875844", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1916071-1916072", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1957080-1957081", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1994218-1994219", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2032373-2032374", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2076341-2076342", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2116900-2116901", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2156687-2156688", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2190546-2190547", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2234754-2234755", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2277930-2277931", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2321538-2321539", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2361455-2361456", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2402352-2402353", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2442055-2442056", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2484034-2484035", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2522025-2522026", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2558095-2558096", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2601527-2601528", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2640213-2640214", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2680977-2680978", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2724149-2724150", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2762350-2762351", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2800646-2800647", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2845294-2845295", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2881583-2881584", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2917451-2917452", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2956886-2956887", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2991924-2991925", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3030003-3030004", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3069028-3069029", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3106523-3106524", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3146288-3146289", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3187820-3187821", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3222363-3222364", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3258110-3258111", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3297416-3297417", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3337454-3337455", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3377102-3377103", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3421496-3421497", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3464953-3464954", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3507221-3507222", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3550305-3550306", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3589452-3589453", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3628016-3628017", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3666894-3666895", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3707698-3707699", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3748300-3748301", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3788417-3788418", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3827335-3827336", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3871275-3871276", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3911157-3911158", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3950783-3950784", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3992127-3992128", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx130634-130635", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx171211-171212", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx209534-209535", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx249222-249223", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx290371-290372", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx329771-329772", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx368614-368615", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx407680-407681", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx447321-447322", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx485195-485196", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx526616-526617", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx564912-564913", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx606052-606053", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx645311-645312", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx684504-684505", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx724798-724799", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx768473-768474", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx809308-809309", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx849006-849007", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx892251-892252", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx933676-933677", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx978369-978370", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx29536-29537", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx68001-68002", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx38-39"}', 'pg_catalog.bpchar'::regtype, -1)::anyarray, NULL, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.t_23709'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t_23709'::regclass and a.attname = 't'); +INSERT INTO pg_statistic VALUES ('public.t_23709'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t_23709'::regclass and a.attname = 't'), False::boolean, 0::real, 8::integer, -0.25548226::real, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 2062::oid, 2062::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, NULL::real[], '{0.004064531}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{"2022-11-08T13:28:00", "2022-11-15T00:08:00", "2022-11-21T15:01:00", "2022-11-28T18:36:00", "2022-12-05T08:22:00", "2022-12-12T12:13:00", "2022-12-19T12:43:00", "2022-12-26T16:51:00", "2023-01-02T15:51:00", "2023-01-09T12:58:00", "2023-01-16T07:25:00", "2023-01-23T00:18:00", "2023-01-30T03:14:00", "2023-02-06T06:38:00", "2023-02-13T13:44:00", "2023-02-20T02:18:00", "2023-02-27T06:56:00", "2023-03-06T10:53:00", "2023-03-14T05:59:00", "2023-03-21T15:19:00", "2023-03-28T18:38:00", "2023-04-04T15:46:00", "2023-04-11T04:23:00", "2023-04-18T04:58:00", "2023-04-25T13:33:00", "2023-05-02T11:24:00", "2023-05-09T19:18:00", "2023-05-16T04:52:00", "2023-05-23T08:30:00", "2023-05-30T08:23:00", "2023-06-05T22:20:00", "2023-06-13T06:03:00", "2023-06-20T02:28:00", "2023-06-27T13:46:00", "2023-07-03T20:27:00", "2023-07-10T13:16:00", "2023-07-17T11:02:00", "2023-07-24T03:21:00", "2023-07-30T14:29:00", "2023-08-06T15:20:00", "2023-08-13T02:21:00", "2023-08-20T04:22:00", "2023-08-26T19:43:00", "2023-09-02T18:03:00", "2023-09-10T11:21:00", "2023-09-17T01:35:00", "2023-09-24T06:05:00", "2023-09-30T21:26:00", "2023-10-07T14:49:00", "2023-10-14T17:06:00", "2023-10-21T06:29:00", "2023-10-28T17:32:00", "2023-11-04T13:07:00", "2023-11-11T02:39:00", "2023-11-18T00:37:00", "2023-11-25T10:50:00", "2023-12-02T23:11:00", "2023-12-10T07:07:00", "2023-12-16T15:01:00", "2023-12-23T20:00:00", "2023-12-30T18:55:00", "2024-01-06T21:46:00", "2024-01-13T11:17:00", "2024-01-20T18:21:00", "2024-01-27T06:02:00", "2024-02-03T07:32:00", "2024-02-10T05:17:00", "2024-02-17T08:02:00", "2024-02-24T12:20:00", "2024-03-02T11:16:00", "2024-03-09T12:18:00", "2024-03-16T20:18:00", "2024-03-24T10:38:00", "2024-03-31T02:55:00", "2024-04-07T06:15:00", "2024-04-13T23:40:00", "2024-04-21T06:58:00", "2024-04-28T05:04:00", "2024-05-05T01:14:00", "2024-05-11T17:18:00", "2024-05-18T03:29:00", "2024-05-25T03:01:00", "2024-05-31T04:19:00", "2024-06-06T23:21:00", "2024-06-13T12:49:00", "2024-06-21T03:19:00", "2024-06-27T23:55:00", "2024-07-04T21:08:00", "2024-07-11T03:22:00", "2024-07-18T13:12:00", "2024-07-25T05:24:00", "2024-08-01T16:05:00", "2024-08-07T23:46:00", "2024-08-15T17:58:00", "2024-08-21T22:54:00", "2024-08-28T19:33:00", "2024-09-05T01:36:00", "2024-09-12T07:31:00", "2024-09-19T07:48:00", "2024-09-25T20:50:00", "2024-10-02T23:22:00"}', 'pg_catalog.timestamp'::regtype, -1)::anyarray, NULL, NULL, NULL); +update pg_yb_catalog_version set current_version=current_version+1 where db_oid=1; SET yb_non_ddl_txn_for_sys_tables_allowed = OFF; -SET yb_enable_base_scans_cost_model = ON; -/*+ SeqScan(t_25682) */ EXPLAIN (DEBUG, COSTS OFF) SELECT * FROM t_25682 WHERE k1 > 0; - QUERY PLAN ------------------------------------ - Seq Scan on t_25682 - Storage Filter: (k1 > 0) - Estimated Seeks: 1302084 - Estimated Nexts: 4001302082 - Estimated Docdb Result Width: 2 -(5 rows) - -/*+ IndexScan(t_25682 t_25682_pkey) */EXPLAIN (DEBUG, COSTS OFF) SELECT * FROM t_25682 WHERE k1 > 0; - QUERY PLAN ------------------------------------------- - Index Scan using t_25682_pkey on t_25682 - Index Cond: (k1 > 0) - Estimated Seeks: 1302084 - Estimated Nexts: 1333333334 - Estimated Docdb Result Width: 2 -(5 rows) - -/*+ IndexScan(t_25682 t_25682_idx) */EXPLAIN (DEBUG, COSTS OFF) SELECT * FROM t_25682 WHERE v1 > 0; - QUERY PLAN ------------------------------------ - Seq Scan on t_25682 - Storage Filter: (v1 > 0) - Estimated Seeks: 1302084 - Estimated Nexts: 4001302082 - Estimated Docdb Result Width: 2 -(5 rows) - -/*+ IndexOnlyScan(t_25682 t_25682_idx) */EXPLAIN (DEBUG, COSTS OFF) SELECT v1 FROM t_25682 WHERE v1 > 0; - QUERY PLAN ----------------------------------------------- - Index Only Scan using t_25682_idx on t_25682 - Index Cond: (v1 > 0) - Estimated Seeks: 1302084 - Estimated Nexts: 1333333334 - Estimated Docdb Result Width: 1 -(5 rows) - +-- Before fixing the issue, the optimizer would pick Index Scan of +-- `idx_t_23709_t_g_a` followed by Sort to perform the GROUP BY operation. +-- Sorting is expensive and this is a suboptimal plan. +-- After this fix, the optimizer should pick Index Only Scan of +-- `idx_t_23709_g_t_a` even if it involves skip-scan. +EXPLAIN (COSTS OFF) SELECT g, max(a) FROM t_23709 WHERE t <= '2024-09-30 00:00:00 +0000' GROUP BY g; + QUERY PLAN +------------------------------------------------------------------------------------ + GroupAggregate + Group Key: g + -> Index Only Scan using idx_t_23709_g_t_a on t_23709 + Index Cond: (t <= 'Mon Sep 30 00:00:00 2024'::timestamp without time zone) +(4 rows) + +DROP TABLE t_23709; -------------------------------------------------------------------------------- -- #26235 : Primary Index scan cost higher than Sequential cost in small tables -------------------------------------------------------------------------------- diff --git a/src/postgres/src/test/regress/expected/yb.orig.planner_taqo_basic.out b/src/postgres/src/test/regress/expected/yb.orig.planner_taqo_basic.out index dcf98dd1b46c..97ab1fea775e 100644 --- a/src/postgres/src/test/regress/expected/yb.orig.planner_taqo_basic.out +++ b/src/postgres/src/test/regress/expected/yb.orig.planner_taqo_basic.out @@ -73,30 +73,30 @@ SET pg_hint_plan.message_level = debug; SET temp_file_limit="8182MB"; set yb_bnl_batch_size = 1024; set yb_enable_base_scans_cost_model = true; SET yb_enable_optimizer_statistics = true; --- Query Hash: 4a5906c534d0263f3485b086c801ee16 +-- Query Hash: 4a5906c534d0263f3485b086c801ee16 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT count(*) from t1; - QUERY PLAN ------------------------------------------------- + QUERY PLAN +--------------------------------- Finalize Aggregate - -> Index Only Scan using t1_v1_k2_idx on t1 + -> Seq Scan on t1 Partial Aggregate: true (3 rows) -- Query Hash: 6112acf82b05dfa95b3ea6f68b13656c EXPLAIN (COSTS OFF) SELECT sum(v1) from t1; - QUERY PLAN ------------------------------------------------- + QUERY PLAN +--------------------------------- Finalize Aggregate - -> Index Only Scan using t1_v1_k2_idx on t1 + -> Seq Scan on t1 Partial Aggregate: true (3 rows) -- Query Hash: a0dc787d836a7ce894503b2002842f5f EXPLAIN (COSTS OFF) SELECT avg(v1) from t1; - QUERY PLAN ------------------------------------------------- + QUERY PLAN +--------------------------------- Finalize Aggregate - -> Index Only Scan using t1_v1_k2_idx on t1 + -> Seq Scan on t1 Partial Aggregate: true (3 rows) @@ -271,22 +271,24 @@ EXPLAIN (COSTS OFF) SELECT t1.k1, t1.k2, t2.v1, t2.v2 FROM t1 JOIN t2 ON t1.v1 = Index Cond: ((k1 >= 8180) AND (k1 < 8190)) (11 rows) --- Query Hash: 6b3227d85138adae74589ec93fc2cec0 +-- Query Hash: 6b3227d85138adae74589ec93fc2cec0 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT t1.k1, t1.k2, t2.v1, t2.v2 FROM t1 JOIN t2 ON t1.v1 = t2.v1 WHERE t1.k1 >= 8100 AND t1.k1 < 8190 AND t2.k1 >= 8180 AND t2.k1 < 8400 GROUP BY t1.k1, t1.k2, t2.v1, t2.v2; - QUERY PLAN ----------------------------------------------------------------------- + QUERY PLAN +------------------------------------------------------------------------------- Group Group Key: t1.k1, t1.k2, t2.v1, t2.v2 - -> Sort + -> Incremental Sort Sort Key: t1.k1, t1.k2, t2.v1, t2.v2 - -> Hash Join - Hash Cond: (t2.v1 = t1.v1) - -> Index Scan using t2_pkey on t2 - Index Cond: ((k1 >= 8180) AND (k1 < 8400)) - -> Hash - -> Index Scan using t1_pkey on t1 - Index Cond: ((k1 >= 8100) AND (k1 < 8190)) -(11 rows) + Presorted Key: t1.k1, t1.k2 + -> YB Batched Nested Loop Join + Join Filter: (t1.v1 = t2.v1) + Sort Keys: t1.k1, t1.k2 + -> Index Scan using t1_pkey on t1 + Index Cond: ((k1 >= 8100) AND (k1 < 8190)) + -> Index Scan using t2_v1_k2_idx on t2 + Index Cond: (v1 = ANY (ARRAY[t1.v1, $1, $2, ..., $1023])) + Storage Filter: ((k1 >= 8180) AND (k1 < 8400)) +(13 rows) -- Query Hash: ad263ed3286b608f8d74dd1f9467b5b9 EXPLAIN (COSTS OFF) SELECT ts2.k1, ts2.k2, ts3.v1, ts3.v2 FROM ts2 JOIN ts3 ON ts2.v1 = ts3.v1 WHERE ts2.k1 >= 17180 AND ts2.k1 < 17190 AND ts3.k1 >= 2180 AND ts3.k1 < 2190 GROUP BY ts2.k1, ts2.k2, ts3.v1, ts3.v2; @@ -322,22 +324,20 @@ EXPLAIN (COSTS OFF) SELECT ts2.k1, ts2.k2, ts3.v1, ts3.v2 FROM ts2 JOIN ts3 ON t Index Cond: ((k1 >= 17100) AND (k1 < 17190)) (11 rows) --- Query Hash: 003c6b48b04c7bbba054d136373d2af5 +-- Query Hash: 003c6b48b04c7bbba054d136373d2af5 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT t1.k1, t1.k2, t2.v1, t2.v2 FROM t1 JOIN t2 on t1.k1 = t2.k1 WHERE t1.k1 >= 2500 AND t1.k1 < 25100 AND t2.k1 >= 2500 AND t2.k1 < 25100 GROUP BY t1.k1, t1.k2, t2.v1, t2.v2; - QUERY PLAN ------------------------------------------------------------------------ - Group + QUERY PLAN +------------------------------------------------------------------------------------------------------------- + HashAggregate Group Key: t1.k1, t1.k2, t2.v1, t2.v2 - -> Sort - Sort Key: t1.k1, t1.k2, t2.v1, t2.v2 - -> Merge Join - Merge Cond: (t1.k1 = t2.k1) - -> Index Scan using t1_pkey on t1 - Index Cond: ((k1 >= 2500) AND (k1 < 25100)) - -> Materialize - -> Index Scan using t2_pkey on t2 - Index Cond: ((k1 >= 2500) AND (k1 < 25100)) -(11 rows) + -> YB Batched Nested Loop Join + Join Filter: (t1.k1 = t2.k1) + Sort Keys: t1.k1, t1.k2 + -> Index Scan using t1_pkey on t1 + Index Cond: ((k1 >= 2500) AND (k1 < 25100)) + -> Index Scan using t2_pkey on t2 + Index Cond: ((k1 = ANY (ARRAY[t1.k1, $1, $2, ..., $1023])) AND (k1 >= 2500) AND (k1 < 25100)) +(9 rows) -- Query Hash: f4c3ae5936d8b44d6edb8f71bdce9a6a EXPLAIN (COSTS OFF) SELECT t1.k1, t1.k2, t2.v1, t2.v2 FROM t1 JOIN t2 on t1.k1 = t2.k1 WHERE t1.k1 >= 24800 AND t1.k1 < 25100 AND t2.k1 >= 2500 AND t2.k1 < 25300 GROUP BY t1.k1, t1.k2, t2.v1, t2.v2; @@ -345,77 +345,88 @@ EXPLAIN (COSTS OFF) SELECT t1.k1, t1.k2, t2.v1, t2.v2 FROM t1 JOIN t2 on t1.k1 = ------------------------------------------------------------------------------------------------------------------- Group Group Key: t1.k1, t1.k2, t2.v1, t2.v2 - -> Sort + -> Incremental Sort Sort Key: t1.k1, t1.k2, t2.v1, t2.v2 + Presorted Key: t1.k1, t1.k2 -> YB Batched Nested Loop Join Join Filter: (t1.k1 = t2.k1) + Sort Keys: t1.k1, t1.k2 -> Index Scan using t1_pkey on t1 Index Cond: ((k1 >= 24800) AND (k1 < 25100)) -> Index Scan using t2_pkey on t2 Index Cond: ((k1 = ANY (ARRAY[t1.k1, $1, $2, ..., $1023])) AND (k1 >= 2500) AND (k1 < 25300)) -(10 rows) +(12 rows) --- Query Hash: c30abbe30bbcbde00c04cbb9db1ef7b3 +-- Query Hash: c30abbe30bbcbde00c04cbb9db1ef7b3 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT ts2.k1, ts2.k2, ts3.v1, ts3.v2 FROM ts2 JOIN ts3 on ts2.k1 = ts3.k1 WHERE ts2.k1 >= 300 AND ts2.k1 < 3100 AND ts3.k1 >= 300 AND ts3.k1 < 3100 GROUP BY ts2.k1, ts2.k2, ts3.v1, ts3.v2; QUERY PLAN --------------------------------------------------------------- Group Group Key: ts2.k1, ts2.k2, ts3.v1, ts3.v2 - -> Sort + -> Incremental Sort Sort Key: ts2.k1, ts2.k2, ts3.v1, ts3.v2 + Presorted Key: ts2.k1, ts2.k2 -> Merge Join Merge Cond: (ts2.k1 = ts3.k1) -> Index Scan using ts2_pkey on ts2 Index Cond: ((k1 >= 300) AND (k1 < 3100)) -> Index Scan using ts3_pkey on ts3 Index Cond: ((k1 >= 300) AND (k1 < 3100)) -(10 rows) +(11 rows) --- Query Hash: c6a0f9c3bd5faca02ba41d3bf617ac9c +-- Query Hash: c6a0f9c3bd5faca02ba41d3bf617ac9c , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT ts2.k1, ts2.k2, ts3.v1, ts3.v2 FROM ts2 JOIN ts3 on ts2.k1 = ts3.k1 WHERE ts2.k1 >= 2800 AND ts2.k1 < 3100 AND ts3.k1 >= 300 AND ts3.k1 < 3300 GROUP BY ts2.k1, ts2.k2, ts3.v1, ts3.v2; - QUERY PLAN ----------------------------------------------------------------- + QUERY PLAN +------------------------------------------------------------------------------------------------------------------ Group Group Key: ts2.k1, ts2.k2, ts3.v1, ts3.v2 - -> Sort + -> Incremental Sort Sort Key: ts2.k1, ts2.k2, ts3.v1, ts3.v2 - -> Merge Join - Merge Cond: (ts2.k1 = ts3.k1) + Presorted Key: ts2.k1, ts2.k2 + -> YB Batched Nested Loop Join + Join Filter: (ts2.k1 = ts3.k1) + Sort Keys: ts2.k1, ts2.k2 -> Index Scan using ts2_pkey on ts2 Index Cond: ((k1 >= 2800) AND (k1 < 3100)) -> Index Scan using ts3_pkey on ts3 - Index Cond: ((k1 >= 300) AND (k1 < 3300)) -(10 rows) + Index Cond: ((k1 = ANY (ARRAY[ts2.k1, $1, $2, ..., $1023])) AND (k1 >= 300) AND (k1 < 3300)) +(12 rows) --- Query Hash: dc3c2df1562817b1fafc0a7cc376fcf6 , !BEST_PLAN_FOUND +-- Query Hash: dc3c2df1562817b1fafc0a7cc376fcf6 EXPLAIN (COSTS OFF) SELECT t1.k1, t1.k2, t2.v1, t2.v2 FROM t1 JOIN t2 ON t1.k1 = t2.k1 AND t1.k2 = t2.k2 WHERE t1.k1 > 1200 AND t1.k1 <= 1300 GROUP BY t1.k1, t1.k2, t2.v1, t2.v2; - QUERY PLAN ------------------------------------------------------------------ + QUERY PLAN +---------------------------------------------------------------------------------------------------------------------------------------- Group Group Key: t1.k1, t1.k2, t2.v1, t2.v2 - -> Sort + -> Incremental Sort Sort Key: t1.k1, t1.k2, t2.v1, t2.v2 - -> Nested Loop + Presorted Key: t1.k1, t1.k2 + -> YB Batched Nested Loop Join + Join Filter: ((t1.k1 = t2.k1) AND (t1.k2 = t2.k2)) + Sort Keys: t1.k1, t1.k2 -> Index Scan using t1_pkey on t1 Index Cond: ((k1 > 1200) AND (k1 <= 1300)) -> Index Scan using t2_pkey on t2 - Index Cond: ((k1 = t1.k1) AND (k2 = t1.k2)) -(9 rows) + Index Cond: (ROW(k1, k2) = ANY (ARRAY[ROW(t1.k1, t1.k2), ROW($1, $1025), ROW($2, $1026), ..., ROW($1023, $2047)])) +(12 rows) -- Query Hash: bc879331c1ee03f256aafc652c14f30e , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT t1.k1, t1.k2, t2.v1, t2.v2 FROM t1 JOIN t2 ON t1.k1 = t2.k1 AND t1.k2 = t2.k2 WHERE t1.k1 > 1200 AND t1.k1 <= 1500 GROUP BY t1.k1, t1.k2, t2.v1, t2.v2; - QUERY PLAN ------------------------------------------------------------------ + QUERY PLAN +---------------------------------------------------------------------------------------------------------------------------------------- Group Group Key: t1.k1, t1.k2, t2.v1, t2.v2 - -> Sort + -> Incremental Sort Sort Key: t1.k1, t1.k2, t2.v1, t2.v2 - -> Nested Loop + Presorted Key: t1.k1, t1.k2 + -> YB Batched Nested Loop Join + Join Filter: ((t1.k1 = t2.k1) AND (t1.k2 = t2.k2)) + Sort Keys: t1.k1, t1.k2 -> Index Scan using t1_pkey on t1 Index Cond: ((k1 > 1200) AND (k1 <= 1500)) -> Index Scan using t2_pkey on t2 - Index Cond: ((k1 = t1.k1) AND (k2 = t1.k2)) -(9 rows) + Index Cond: (ROW(k1, k2) = ANY (ARRAY[ROW(t1.k1, t1.k2), ROW($1, $1025), ROW($2, $1026), ..., ROW($1023, $2047)])) +(12 rows) -- Query Hash: 367e0329c7727d2ee80f971d494e55a0 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT ts2.k1, ts2.k2, ts3.v1, ts3.v2 FROM ts2 JOIN ts3 ON ts2.k1 = ts3.k1 AND ts2.k2 = ts3.k2 WHERE ts2.k1 > 1200 AND ts2.k1 <= 1300 GROUP BY ts2.k1, ts2.k2, ts3.v1, ts3.v2; @@ -423,30 +434,31 @@ EXPLAIN (COSTS OFF) SELECT ts2.k1, ts2.k2, ts3.v1, ts3.v2 FROM ts2 JOIN ts3 ON t ---------------------------------------------------------------- Group Group Key: ts2.k1, ts2.k2, ts3.v1, ts3.v2 - -> Sort + -> Incremental Sort Sort Key: ts2.k1, ts2.k2, ts3.v1, ts3.v2 + Presorted Key: ts2.k1, ts2.k2 -> Nested Loop -> Index Scan using ts2_pkey on ts2 Index Cond: ((k1 > 1200) AND (k1 <= 1300)) -> Index Scan using ts3_pkey on ts3 Index Cond: (k1 = ts2.k1) Filter: (ts2.k2 = k2) -(10 rows) +(11 rows) -- Query Hash: 683dc9814885f4a372d11b3dfb03e24a , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT ts2.k1, ts2.k2, ts3.v1, ts3.v2 FROM ts2 JOIN ts3 ON ts2.k1 = ts3.k1 AND ts2.k2 = ts3.k2 WHERE ts2.k1 > 1200 AND ts2.k1 <= 1400 GROUP BY ts2.k1, ts2.k2, ts3.v1, ts3.v2; - QUERY PLAN ----------------------------------------------------------------- + QUERY PLAN +---------------------------------------------------------------------- Group Group Key: ts2.k1, ts2.k2, ts3.v1, ts3.v2 -> Sort Sort Key: ts2.k1, ts2.k2, ts3.v1, ts3.v2 - -> Nested Loop - -> Index Scan using ts2_pkey on ts2 - Index Cond: ((k1 > 1200) AND (k1 <= 1400)) - -> Index Scan using ts3_pkey on ts3 - Index Cond: (k1 = ts2.k1) - Filter: (ts2.k2 = k2) + -> Hash Join + Hash Cond: ((ts3.k1 = ts2.k1) AND (ts3.k2 = ts2.k2)) + -> Seq Scan on ts3 + -> Hash + -> Index Scan using ts2_pkey on ts2 + Index Cond: ((k1 > 1200) AND (k1 <= 1400)) (10 rows) -- Query Hash: d39c18d49b1c5c1c4d6fcce572ffd3bd @@ -541,52 +553,44 @@ EXPLAIN (COSTS OFF) SELECT * FROM ts3 WHERE k1 > 3000 ORDER BY k1 ASC LIMIT 1000 -- Query Hash: 81b97b96b163d22e1bdac55ef7c12f99 EXPLAIN (COSTS OFF) SELECT v1,k2 FROM t1 WHERE v1 <= 3500 ORDER BY v1 DESC LIMIT 100000; - QUERY PLAN ------------------------------------------------------- + QUERY PLAN +--------------------------------------------------------- Limit - -> Sort - Sort Key: v1 DESC - -> Index Only Scan using t1_v1_k2_idx on t1 - Index Cond: (v1 <= 3500) -(5 rows) + -> Index Only Scan Backward using t1_v1_k2_idx on t1 + Index Cond: (v1 <= 3500) +(3 rows) -- Query Hash: 52623faae1159230583eeb7976a50d6f EXPLAIN (COSTS OFF) SELECT v1,k2 FROM t1 WHERE v1 <= 3500 ORDER BY v1 DESC LIMIT 1000000; - QUERY PLAN ------------------------------------------------------- + QUERY PLAN +--------------------------------------------------------- Limit - -> Sort - Sort Key: v1 DESC - -> Index Only Scan using t1_v1_k2_idx on t1 - Index Cond: (v1 <= 3500) -(5 rows) + -> Index Only Scan Backward using t1_v1_k2_idx on t1 + Index Cond: (v1 <= 3500) +(3 rows) -- Query Hash: 7a976d90f7986c76a836a53cd3f481a4 EXPLAIN (COSTS OFF) SELECT v1,k2 FROM t2 WHERE v1 <= 3500 ORDER BY v1 DESC LIMIT 100000; - QUERY PLAN ------------------------------------------------------- + QUERY PLAN +--------------------------------------------------------- Limit - -> Sort - Sort Key: v1 DESC - -> Index Only Scan using t2_v1_k2_idx on t2 - Index Cond: (v1 <= 3500) -(5 rows) + -> Index Only Scan Backward using t2_v1_k2_idx on t2 + Index Cond: (v1 <= 3500) +(3 rows) -- Query Hash: b301100377d1be5a47d992b8ed8814d2 EXPLAIN (COSTS OFF) SELECT v1,k2 FROM t2 WHERE v1 <= 3500 ORDER BY v1 DESC LIMIT 1000000; - QUERY PLAN ------------------------------------------------------- + QUERY PLAN +--------------------------------------------------------- Limit - -> Sort - Sort Key: v1 DESC - -> Index Only Scan using t2_v1_k2_idx on t2 - Index Cond: (v1 <= 3500) -(5 rows) + -> Index Only Scan Backward using t2_v1_k2_idx on t2 + Index Cond: (v1 <= 3500) +(3 rows) -- Query Hash: 7e441de94ee0a5964f47d1eb6848ceed EXPLAIN (COSTS OFF) SELECT v1,k2 FROM ts2 WHERE v1 <= 3500 ORDER BY v1 DESC LIMIT 100000; - QUERY PLAN -------------------------------------------- + QUERY PLAN +-------------------------------------------- Limit -> Sort Sort Key: v1 DESC @@ -596,8 +600,8 @@ EXPLAIN (COSTS OFF) SELECT v1,k2 FROM ts2 WHERE v1 <= 3500 ORDER BY v1 DESC LIMI -- Query Hash: dfc8d19fba8ce1c2a633dc7b9b04aa53 EXPLAIN (COSTS OFF) SELECT v1,k2 FROM ts2 WHERE v1 <= 3500 ORDER BY v1 DESC LIMIT 1000000; - QUERY PLAN -------------------------------------------- + QUERY PLAN +-------------------------------------------- Limit -> Sort Sort Key: v1 DESC @@ -607,8 +611,8 @@ EXPLAIN (COSTS OFF) SELECT v1,k2 FROM ts2 WHERE v1 <= 3500 ORDER BY v1 DESC LIMI -- Query Hash: cd8713c2b96c824e12fad567b743df19 EXPLAIN (COSTS OFF) SELECT v1,k2 FROM ts3 WHERE v1 <= 3500 ORDER BY v1 DESC LIMIT 100000; - QUERY PLAN -------------------------------------------- + QUERY PLAN +-------------------------------------------- Limit -> Sort Sort Key: v1 DESC @@ -618,8 +622,8 @@ EXPLAIN (COSTS OFF) SELECT v1,k2 FROM ts3 WHERE v1 <= 3500 ORDER BY v1 DESC LIMI -- Query Hash: a53e46e8c2bebddc3f66505ef0fa0772 EXPLAIN (COSTS OFF) SELECT v1,k2 FROM ts3 WHERE v1 <= 3500 ORDER BY v1 DESC LIMIT 1000000; - QUERY PLAN -------------------------------------------- + QUERY PLAN +-------------------------------------------- Limit -> Sort Sort Key: v1 DESC @@ -629,8 +633,8 @@ EXPLAIN (COSTS OFF) SELECT v1,k2 FROM ts3 WHERE v1 <= 3500 ORDER BY v1 DESC LIMI -- Query Hash: 8c7db34f0f1ab387f6a467cb3e05ddc8 EXPLAIN (COSTS OFF) SELECT * FROM t1 WHERE v1 IS NOT NULL ORDER BY k1 ASC LIMIT 100000; - QUERY PLAN ------------------------------------------ + QUERY PLAN +------------------------------------------ Limit -> Index Scan using t1_pkey on t1 Storage Filter: (v1 IS NOT NULL) @@ -638,8 +642,8 @@ EXPLAIN (COSTS OFF) SELECT * FROM t1 WHERE v1 IS NOT NULL ORDER BY k1 ASC LIMIT -- Query Hash: d6becef8d1d6fff246dab709c776a43c EXPLAIN (COSTS OFF) SELECT * FROM t1 WHERE v1 IS NOT NULL ORDER BY k1 ASC LIMIT 1000000; - QUERY PLAN ------------------------------------------ + QUERY PLAN +------------------------------------------ Limit -> Index Scan using t1_pkey on t1 Storage Filter: (v1 IS NOT NULL) @@ -647,8 +651,8 @@ EXPLAIN (COSTS OFF) SELECT * FROM t1 WHERE v1 IS NOT NULL ORDER BY k1 ASC LIMIT -- Query Hash: 037bfe342e9a36d6e78fdc6193b2cd7d EXPLAIN (COSTS OFF) SELECT * FROM t2 WHERE v1 IS NOT NULL ORDER BY k1 ASC LIMIT 100000; - QUERY PLAN ------------------------------------------ + QUERY PLAN +------------------------------------------ Limit -> Index Scan using t2_pkey on t2 Storage Filter: (v1 IS NOT NULL) @@ -656,8 +660,8 @@ EXPLAIN (COSTS OFF) SELECT * FROM t2 WHERE v1 IS NOT NULL ORDER BY k1 ASC LIMIT -- Query Hash: f4448e3c7a70d66028288e6f6e3f0078 EXPLAIN (COSTS OFF) SELECT * FROM t2 WHERE v1 IS NOT NULL ORDER BY k1 ASC LIMIT 1000000; - QUERY PLAN ------------------------------------------ + QUERY PLAN +------------------------------------------ Limit -> Index Scan using t2_pkey on t2 Storage Filter: (v1 IS NOT NULL) @@ -665,17 +669,17 @@ EXPLAIN (COSTS OFF) SELECT * FROM t2 WHERE v1 IS NOT NULL ORDER BY k1 ASC LIMIT -- Query Hash: 412d5b94165936cf16bbce483cd9fa4e EXPLAIN (COSTS OFF) SELECT * FROM t3 WHERE v1 IS NOT NULL ORDER BY k1 ASC LIMIT 100000; - QUERY PLAN ------------------------------------------ + QUERY PLAN +------------------------------------------ Limit -> Index Scan using t3_pkey on t3 Storage Filter: (v1 IS NOT NULL) (3 rows) --- Query Hash: e1f0758a638322dc28632de93745f51b , !BEST_PLAN_FOUND +-- Query Hash: e1f0758a638322dc28632de93745f51b EXPLAIN (COSTS OFF) SELECT * FROM t3 WHERE v1 IS NOT NULL ORDER BY k1 ASC LIMIT 1000000; - QUERY PLAN ------------------------------------------ + QUERY PLAN +------------------------------------------ Limit -> Index Scan using t3_pkey on t3 Storage Filter: (v1 IS NOT NULL) @@ -683,8 +687,8 @@ EXPLAIN (COSTS OFF) SELECT * FROM t3 WHERE v1 IS NOT NULL ORDER BY k1 ASC LIMIT -- Query Hash: e29f8f19d78b4f70f162d5553fa8ba49 EXPLAIN (COSTS OFF) SELECT * FROM ts2 WHERE v1 IS NOT NULL ORDER BY k1 ASC LIMIT 100000; - QUERY PLAN ------------------------------------------ + QUERY PLAN +------------------------------------------ Limit -> Index Scan using ts2_pkey on ts2 Storage Filter: (v1 IS NOT NULL) @@ -692,8 +696,8 @@ EXPLAIN (COSTS OFF) SELECT * FROM ts2 WHERE v1 IS NOT NULL ORDER BY k1 ASC LIMIT -- Query Hash: 9588b7dca850aced58785e8d67f24cc4 EXPLAIN (COSTS OFF) SELECT * FROM ts2 WHERE v1 IS NOT NULL ORDER BY k1 ASC LIMIT 1000000; - QUERY PLAN ------------------------------------------ + QUERY PLAN +------------------------------------------ Limit -> Index Scan using ts2_pkey on ts2 Storage Filter: (v1 IS NOT NULL) @@ -701,8 +705,8 @@ EXPLAIN (COSTS OFF) SELECT * FROM ts2 WHERE v1 IS NOT NULL ORDER BY k1 ASC LIMIT -- Query Hash: 3dc708fc9d1a0ed2da91efc48f9786d0 EXPLAIN (COSTS OFF) SELECT * FROM ts3 WHERE v1 IS NOT NULL ORDER BY k1 ASC LIMIT 100000; - QUERY PLAN ------------------------------------------ + QUERY PLAN +------------------------------------------ Limit -> Index Scan using ts3_pkey on ts3 Storage Filter: (v1 IS NOT NULL) @@ -710,8 +714,8 @@ EXPLAIN (COSTS OFF) SELECT * FROM ts3 WHERE v1 IS NOT NULL ORDER BY k1 ASC LIMIT -- Query Hash: 6e2dfb787296b406aea09f8042bfce4c EXPLAIN (COSTS OFF) SELECT * FROM ts3 WHERE v1 IS NOT NULL ORDER BY k1 ASC LIMIT 1000000; - QUERY PLAN ------------------------------------------ + QUERY PLAN +------------------------------------------ Limit -> Index Scan using ts3_pkey on ts3 Storage Filter: (v1 IS NOT NULL) @@ -719,8 +723,8 @@ EXPLAIN (COSTS OFF) SELECT * FROM ts3 WHERE v1 IS NOT NULL ORDER BY k1 ASC LIMIT -- Query Hash: e3b0e01c35cc884a1ac724c10757559d EXPLAIN (COSTS OFF) SELECT * FROM t1 WHERE v1 IS NOT NULL AND k1 >= 5500 ORDER BY k1 ASC LIMIT 10000; - QUERY PLAN ------------------------------------------ + QUERY PLAN +------------------------------------------ Limit -> Index Scan using t1_pkey on t1 Index Cond: (k1 >= 5500) @@ -729,8 +733,8 @@ EXPLAIN (COSTS OFF) SELECT * FROM t1 WHERE v1 IS NOT NULL AND k1 >= 5500 ORDER B -- Query Hash: 24e4eac69f2d69337d45c64fc1dce2b1 EXPLAIN (COSTS OFF) SELECT * FROM t1 WHERE v1 IS NOT NULL AND k1 >= 5500 ORDER BY k1 ASC LIMIT 100000; - QUERY PLAN ------------------------------------------ + QUERY PLAN +------------------------------------------ Limit -> Index Scan using t1_pkey on t1 Index Cond: (k1 >= 5500) @@ -739,8 +743,8 @@ EXPLAIN (COSTS OFF) SELECT * FROM t1 WHERE v1 IS NOT NULL AND k1 >= 5500 ORDER B -- Query Hash: 9bf335ab1c1b49d8424d831ceb1e1a4a EXPLAIN (COSTS OFF) SELECT * FROM t2 WHERE v1 IS NOT NULL AND k1 >= 5500 ORDER BY k1 ASC LIMIT 10000; - QUERY PLAN ------------------------------------------ + QUERY PLAN +------------------------------------------ Limit -> Index Scan using t2_pkey on t2 Index Cond: (k1 >= 5500) @@ -749,8 +753,8 @@ EXPLAIN (COSTS OFF) SELECT * FROM t2 WHERE v1 IS NOT NULL AND k1 >= 5500 ORDER B -- Query Hash: 4df77b96b30cdf5649b598e873fc4692 EXPLAIN (COSTS OFF) SELECT * FROM t2 WHERE v1 IS NOT NULL AND k1 >= 5500 ORDER BY k1 ASC LIMIT 100000; - QUERY PLAN ------------------------------------------ + QUERY PLAN +------------------------------------------ Limit -> Index Scan using t2_pkey on t2 Index Cond: (k1 >= 5500) @@ -759,8 +763,8 @@ EXPLAIN (COSTS OFF) SELECT * FROM t2 WHERE v1 IS NOT NULL AND k1 >= 5500 ORDER B -- Query Hash: 279dbb8f084e7a20225a538742d4f019 EXPLAIN (COSTS OFF) SELECT * FROM t3 WHERE v1 IS NOT NULL AND k1 >= 5500 ORDER BY k1 ASC LIMIT 10000; - QUERY PLAN ------------------------------------------ + QUERY PLAN +------------------------------------------ Limit -> Index Scan using t3_pkey on t3 Index Cond: (k1 >= 5500) @@ -769,8 +773,8 @@ EXPLAIN (COSTS OFF) SELECT * FROM t3 WHERE v1 IS NOT NULL AND k1 >= 5500 ORDER B -- Query Hash: f6cb277d6981446aee92ea4c5ee49f9e EXPLAIN (COSTS OFF) SELECT * FROM t3 WHERE v1 IS NOT NULL AND k1 >= 5500 ORDER BY k1 ASC LIMIT 100000; - QUERY PLAN ------------------------------------------ + QUERY PLAN +------------------------------------------ Limit -> Index Scan using t3_pkey on t3 Index Cond: (k1 >= 5500) @@ -779,8 +783,8 @@ EXPLAIN (COSTS OFF) SELECT * FROM t3 WHERE v1 IS NOT NULL AND k1 >= 5500 ORDER B -- Query Hash: 09415831b703b660d9149fe296810637 EXPLAIN (COSTS OFF) SELECT * FROM ts2 WHERE v1 IS NOT NULL AND k1 >= 5500 ORDER BY k1 ASC LIMIT 10000; - QUERY PLAN ------------------------------------------ + QUERY PLAN +------------------------------------------ Limit -> Index Scan using ts2_pkey on ts2 Index Cond: (k1 >= 5500) @@ -789,8 +793,8 @@ EXPLAIN (COSTS OFF) SELECT * FROM ts2 WHERE v1 IS NOT NULL AND k1 >= 5500 ORDER -- Query Hash: c30740c81d5508b13e89df15fdb15350 EXPLAIN (COSTS OFF) SELECT * FROM ts2 WHERE v1 IS NOT NULL AND k1 >= 5500 ORDER BY k1 ASC LIMIT 100000; - QUERY PLAN ------------------------------------------ + QUERY PLAN +------------------------------------------ Limit -> Index Scan using ts2_pkey on ts2 Index Cond: (k1 >= 5500) @@ -799,8 +803,8 @@ EXPLAIN (COSTS OFF) SELECT * FROM ts2 WHERE v1 IS NOT NULL AND k1 >= 5500 ORDER -- Query Hash: b810961ef96b98093a82e76f29a2988a EXPLAIN (COSTS OFF) SELECT * FROM ts3 WHERE v1 IS NOT NULL AND k1 >= 5500 ORDER BY k1 ASC LIMIT 10000; - QUERY PLAN ------------------------------------------ + QUERY PLAN +------------------------------------------ Limit -> Index Scan using ts3_pkey on ts3 Index Cond: (k1 >= 5500) @@ -809,8 +813,8 @@ EXPLAIN (COSTS OFF) SELECT * FROM ts3 WHERE v1 IS NOT NULL AND k1 >= 5500 ORDER -- Query Hash: 97be296075a63ead79f8932f44676451 EXPLAIN (COSTS OFF) SELECT * FROM ts3 WHERE v1 IS NOT NULL AND k1 >= 5500 ORDER BY k1 ASC LIMIT 100000; - QUERY PLAN ------------------------------------------ + QUERY PLAN +------------------------------------------ Limit -> Index Scan using ts3_pkey on ts3 Index Cond: (k1 >= 5500) @@ -943,7 +947,7 @@ EXPLAIN (COSTS OFF) SELECT * FROM t1 WHERE v1 IS NULL AND k1 >= 5500 ORDER BY k1 Storage Filter: (k1 >= 5500) (6 rows) --- Query Hash: 034e10caeafa420f62d5945808a6c2d6 , !BEST_PLAN_FOUND +-- Query Hash: 034e10caeafa420f62d5945808a6c2d6 EXPLAIN (COSTS OFF) SELECT * FROM t2 WHERE v1 IS NULL AND k1 >= 5500 ORDER BY k1 ASC LIMIT 10000; QUERY PLAN ------------------------------------------------- @@ -1044,30 +1048,30 @@ EXPLAIN (COSTS OFF) SELECT * FROM t1 JOIN t2 ON t1.v1 = t2.v1 WHERE t1.k1 >= 818 Index Cond: ((k1 >= 8180) AND (k1 < 8190)) (7 rows) --- Query Hash: 015d08a75cfa11b27675cd3a2cadd29f +-- Query Hash: 015d08a75cfa11b27675cd3a2cadd29f , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM t1 JOIN t2 ON t1.v1 = t2.v1 WHERE t1.k1 >= 8100 AND t1.k1 < 8190 AND t2.k1 >= 8180 AND t2.k1 < 8400; - QUERY PLAN ----------------------------------------------------------- - Hash Join - Hash Cond: (t2.v1 = t1.v1) - -> Index Scan using t2_pkey on t2 - Index Cond: ((k1 >= 8180) AND (k1 < 8400)) - -> Hash - -> Index Scan using t1_pkey on t1 - Index Cond: ((k1 >= 8100) AND (k1 < 8190)) + QUERY PLAN +------------------------------------------------------------------- + YB Batched Nested Loop Join + Join Filter: (t1.v1 = t2.v1) + -> Index Scan using t1_pkey on t1 + Index Cond: ((k1 >= 8100) AND (k1 < 8190)) + -> Index Scan using t2_v1_k2_idx on t2 + Index Cond: (v1 = ANY (ARRAY[t1.v1, $1, $2, ..., $1023])) + Storage Filter: ((k1 >= 8180) AND (k1 < 8400)) (7 rows) -- Query Hash: c482874e326ef98bec47d576e455a79a EXPLAIN (COSTS OFF) SELECT * FROM t2 JOIN ts2 ON t2.v1 = ts2.v1 WHERE t2.k1 >= 17180 AND t2.k1 < 17190 AND ts2.k1 >= 2180 AND ts2.k1 < 2190; - QUERY PLAN ------------------------------------------------------------- + QUERY PLAN +---------------------------------------------------------- Hash Join - Hash Cond: (ts2.v1 = t2.v1) - -> Index Scan using ts2_pkey on ts2 - Index Cond: ((k1 >= 2180) AND (k1 < 2190)) + Hash Cond: (t2.v1 = ts2.v1) + -> Index Scan using t2_pkey on t2 + Index Cond: ((k1 >= 17180) AND (k1 < 17190)) -> Hash - -> Index Scan using t2_pkey on t2 - Index Cond: ((k1 >= 17180) AND (k1 < 17190)) + -> Index Scan using ts2_pkey on ts2 + Index Cond: ((k1 >= 2180) AND (k1 < 2190)) (7 rows) -- Query Hash: 66a36eb29f98792f2f8da81c854acf70 @@ -1085,15 +1089,15 @@ EXPLAIN (COSTS OFF) SELECT * FROM t2 JOIN ts2 ON t2.v1 = ts2.v1 WHERE t2.k1 >= 1 -- Query Hash: d42e62f13cecefe8f84b385f54d996d1 EXPLAIN (COSTS OFF) SELECT * FROM t2 JOIN ts3 ON t2.v1 = ts3.v1 WHERE t2.k1 >= 17180 AND t2.k1 < 17190 AND ts3.k1 >= 2180 AND ts3.k1 < 2190; - QUERY PLAN ------------------------------------------------------------- + QUERY PLAN +---------------------------------------------------------- Hash Join - Hash Cond: (ts3.v1 = t2.v1) - -> Index Scan using ts3_pkey on ts3 - Index Cond: ((k1 >= 2180) AND (k1 < 2190)) + Hash Cond: (t2.v1 = ts3.v1) + -> Index Scan using t2_pkey on t2 + Index Cond: ((k1 >= 17180) AND (k1 < 17190)) -> Hash - -> Index Scan using t2_pkey on t2 - Index Cond: ((k1 >= 17180) AND (k1 < 17190)) + -> Index Scan using ts3_pkey on ts3 + Index Cond: ((k1 >= 2180) AND (k1 < 2190)) (7 rows) -- Query Hash: bb497bb136e46ac7baa17aea71ef02e2 @@ -1135,31 +1139,29 @@ EXPLAIN (COSTS OFF) SELECT * FROM ts2 JOIN ts3 ON ts2.v1 = ts3.v1 WHERE ts2.k1 > Index Cond: ((k1 >= 17100) AND (k1 < 17190)) (7 rows) --- Query Hash: 67a398d13515828ca75aafd9ef4f0cd6 +-- Query Hash: 67a398d13515828ca75aafd9ef4f0cd6 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM t1 JOIN t2 ON t1.k1 = t2.k1 WHERE t1.k1 >= 8180 AND t1.k1 < 8190 AND t2.k1 >= 8180 AND t2.k1 < 8190; - QUERY PLAN ----------------------------------------------------------- - Merge Join - Merge Cond: (t1.k1 = t2.k1) + QUERY PLAN +------------------------------------------------------------------------------------------------------ + YB Batched Nested Loop Join + Join Filter: (t1.k1 = t2.k1) -> Index Scan using t1_pkey on t1 Index Cond: ((k1 >= 8180) AND (k1 < 8190)) - -> Materialize - -> Index Scan using t2_pkey on t2 - Index Cond: ((k1 >= 8180) AND (k1 < 8190)) -(7 rows) + -> Index Scan using t2_pkey on t2 + Index Cond: ((k1 = ANY (ARRAY[t1.k1, $1, $2, ..., $1023])) AND (k1 >= 8180) AND (k1 < 8190)) +(6 rows) --- Query Hash: a5d05b739f8b208c1acd623e5b1007a0 +-- Query Hash: a5d05b739f8b208c1acd623e5b1007a0 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM t1 JOIN t2 ON t1.k1 = t2.k1 WHERE t1.k1 >= 8100 AND t1.k1 < 8190 AND t2.k1 >= 8180 AND t2.k1 < 8400; - QUERY PLAN ----------------------------------------------------------- - Merge Join - Merge Cond: (t2.k1 = t1.k1) - -> Index Scan using t2_pkey on t2 - Index Cond: ((k1 >= 8180) AND (k1 < 8400)) - -> Materialize - -> Index Scan using t1_pkey on t1 - Index Cond: ((k1 >= 8100) AND (k1 < 8190)) -(7 rows) + QUERY PLAN +------------------------------------------------------------------------------------------------------ + YB Batched Nested Loop Join + Join Filter: (t1.k1 = t2.k1) + -> Index Scan using t1_pkey on t1 + Index Cond: ((k1 >= 8100) AND (k1 < 8190)) + -> Index Scan using t2_pkey on t2 + Index Cond: ((k1 = ANY (ARRAY[t1.k1, $1, $2, ..., $1023])) AND (k1 >= 8180) AND (k1 < 8400)) +(6 rows) -- Query Hash: 6a06d52011db1ae005dedac6c865783e EXPLAIN (COSTS OFF) SELECT * FROM t2 JOIN ts2 ON t2.k1 = ts2.k1 WHERE t2.k1 >= 17180 AND t2.k1 < 17190 AND ts2.k1 >= 2180 AND ts2.k1 < 2190; @@ -1189,64 +1191,63 @@ EXPLAIN (COSTS OFF) SELECT * FROM t2 JOIN ts2 ON t2.k1 = ts2.k1 WHERE t2.k1 >= 1 -- Query Hash: af1b015a4028d88a05532292760e9eb0 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM t2 JOIN ts3 ON t2.k1 = ts3.k1 WHERE t2.k1 >= 17180 AND t2.k1 < 17190 AND ts3.k1 >= 2180 AND ts3.k1 < 2190; - QUERY PLAN ------------------------------------------------------------------------------------------------------- - YB Batched Nested Loop Join - Join Filter: (t2.k1 = ts3.k1) + QUERY PLAN +------------------------------------------------------ + Merge Join + Merge Cond: (t2.k1 = ts3.k1) -> Index Scan using t2_pkey on t2 Index Cond: ((k1 >= 17180) AND (k1 < 17190)) -> Index Scan using ts3_pkey on ts3 - Index Cond: ((k1 = ANY (ARRAY[t2.k1, $1, $2, ..., $1023])) AND (k1 >= 2180) AND (k1 < 2190)) + Index Cond: ((k1 >= 2180) AND (k1 < 2190)) (6 rows) --- Query Hash: bdda96c8e8353aea4e11dad3fe771ca5 , !BEST_PLAN_FOUND +-- Query Hash: bdda96c8e8353aea4e11dad3fe771ca5 EXPLAIN (COSTS OFF) SELECT * FROM t2 JOIN ts3 ON t2.k1 = ts3.k1 WHERE t2.k1 >= 17100 AND t2.k1 < 17190 AND ts3.k1 >= 2180 AND ts3.k1 < 2400; - QUERY PLAN ------------------------------------------------------------------------------------------------------- - YB Batched Nested Loop Join - Join Filter: (t2.k1 = ts3.k1) + QUERY PLAN +------------------------------------------------------ + Merge Join + Merge Cond: (t2.k1 = ts3.k1) -> Index Scan using t2_pkey on t2 Index Cond: ((k1 >= 17100) AND (k1 < 17190)) -> Index Scan using ts3_pkey on ts3 - Index Cond: ((k1 = ANY (ARRAY[t2.k1, $1, $2, ..., $1023])) AND (k1 >= 2180) AND (k1 < 2400)) + Index Cond: ((k1 >= 2180) AND (k1 < 2400)) (6 rows) --- Query Hash: 831826be5a1c72675d586f8c89d82a3e , !BEST_PLAN_FOUND +-- Query Hash: 831826be5a1c72675d586f8c89d82a3e EXPLAIN (COSTS OFF) SELECT * FROM ts2 JOIN ts3 ON ts2.k1 = ts3.k1 WHERE ts2.k1 >= 17180 AND ts2.k1 < 17190 AND ts3.k1 >= 2180 AND ts3.k1 < 2190; - QUERY PLAN -------------------------------------------------------------------------------------------------------- - YB Batched Nested Loop Join - Join Filter: (ts2.k1 = ts3.k1) + QUERY PLAN +------------------------------------------------------ + Merge Join + Merge Cond: (ts2.k1 = ts3.k1) -> Index Scan using ts2_pkey on ts2 Index Cond: ((k1 >= 17180) AND (k1 < 17190)) -> Index Scan using ts3_pkey on ts3 - Index Cond: ((k1 = ANY (ARRAY[ts2.k1, $1, $2, ..., $1023])) AND (k1 >= 2180) AND (k1 < 2190)) + Index Cond: ((k1 >= 2180) AND (k1 < 2190)) (6 rows) --- Query Hash: e96e59d0ba7e168043c8b85dc7a892bc , !BEST_PLAN_FOUND +-- Query Hash: e96e59d0ba7e168043c8b85dc7a892bc EXPLAIN (COSTS OFF) SELECT * FROM ts2 JOIN ts3 ON ts2.k1 = ts3.k1 WHERE ts2.k1 >= 17100 AND ts2.k1 < 17190 AND ts3.k1 >= 2180 AND ts3.k1 < 2400; - QUERY PLAN -------------------------------------------------------------------------------------------------------- - YB Batched Nested Loop Join - Join Filter: (ts2.k1 = ts3.k1) + QUERY PLAN +------------------------------------------------------ + Merge Join + Merge Cond: (ts2.k1 = ts3.k1) -> Index Scan using ts2_pkey on ts2 Index Cond: ((k1 >= 17100) AND (k1 < 17190)) -> Index Scan using ts3_pkey on ts3 - Index Cond: ((k1 = ANY (ARRAY[ts2.k1, $1, $2, ..., $1023])) AND (k1 >= 2180) AND (k1 < 2400)) + Index Cond: ((k1 >= 2180) AND (k1 < 2400)) (6 rows) --- Query Hash: 81773f0f120048d4f212f43388f5270b +-- Query Hash: 81773f0f120048d4f212f43388f5270b , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM t1 JOIN t2 on t1.k1 = t2.k1 WHERE t1.k1 >= 2500 AND t1.k1 < 25100 AND t2.k1 >= 2500 AND t2.k1 < 25100; - QUERY PLAN ------------------------------------------------------------ - Merge Join - Merge Cond: (t1.k1 = t2.k1) + QUERY PLAN +------------------------------------------------------------------------------------------------------- + YB Batched Nested Loop Join + Join Filter: (t1.k1 = t2.k1) -> Index Scan using t1_pkey on t1 Index Cond: ((k1 >= 2500) AND (k1 < 25100)) - -> Materialize - -> Index Scan using t2_pkey on t2 - Index Cond: ((k1 >= 2500) AND (k1 < 25100)) -(7 rows) + -> Index Scan using t2_pkey on t2 + Index Cond: ((k1 = ANY (ARRAY[t1.k1, $1, $2, ..., $1023])) AND (k1 >= 2500) AND (k1 < 25100)) +(6 rows) -- Query Hash: 0603d5bafa72561c9846b17453cc7632 EXPLAIN (COSTS OFF) SELECT * FROM t1 JOIN t2 on t1.k1 = t2.k1 WHERE t1.k1 >= 24800 AND t1.k1 < 25100 AND t2.k1 >= 2500 AND t2.k1 < 25300; @@ -1260,28 +1261,28 @@ EXPLAIN (COSTS OFF) SELECT * FROM t1 JOIN t2 on t1.k1 = t2.k1 WHERE t1.k1 >= 248 Index Cond: ((k1 = ANY (ARRAY[t1.k1, $1, $2, ..., $1023])) AND (k1 >= 2500) AND (k1 < 25300)) (6 rows) --- Query Hash: 2348afbf16c55deb01ddb021bfea1c58 +-- Query Hash: 2348afbf16c55deb01ddb021bfea1c58 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM ts2 JOIN ts3 on ts2.k1 = ts3.k1 WHERE ts2.k1 >= 300 AND ts2.k1 < 3100 AND ts3.k1 >= 300 AND ts3.k1 < 3100; - QUERY PLAN ---------------------------------------------------- - Merge Join - Merge Cond: (ts2.k1 = ts3.k1) - -> Index Scan using ts2_pkey on ts2 - Index Cond: ((k1 >= 300) AND (k1 < 3100)) + QUERY PLAN +------------------------------------------------------------------------------------------------------ + YB Batched Nested Loop Join + Join Filter: (ts2.k1 = ts3.k1) -> Index Scan using ts3_pkey on ts3 Index Cond: ((k1 >= 300) AND (k1 < 3100)) + -> Index Scan using ts2_pkey on ts2 + Index Cond: ((k1 = ANY (ARRAY[ts3.k1, $1, $2, ..., $1023])) AND (k1 >= 300) AND (k1 < 3100)) (6 rows) --- Query Hash: e398453804fdc748d347f1b45978cf28 +-- Query Hash: e398453804fdc748d347f1b45978cf28 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM ts2 JOIN ts3 on ts2.k1 = ts3.k1 WHERE ts2.k1 >= 2800 AND ts2.k1 < 3100 AND ts3.k1 >= 300 AND ts3.k1 < 3300; - QUERY PLAN ----------------------------------------------------- - Merge Join - Merge Cond: (ts2.k1 = ts3.k1) + QUERY PLAN +------------------------------------------------------------------------------------------------------ + YB Batched Nested Loop Join + Join Filter: (ts2.k1 = ts3.k1) -> Index Scan using ts2_pkey on ts2 Index Cond: ((k1 >= 2800) AND (k1 < 3100)) -> Index Scan using ts3_pkey on ts3 - Index Cond: ((k1 >= 300) AND (k1 < 3300)) + Index Cond: ((k1 = ANY (ARRAY[ts2.k1, $1, $2, ..., $1023])) AND (k1 >= 300) AND (k1 < 3300)) (6 rows) -- Query Hash: 74a078943d92682a90dfe344a6302d66 @@ -1860,27 +1861,29 @@ EXPLAIN (COSTS OFF) SELECT * FROM ts2 FULL JOIN ts3 ON ts2.k1 = ts3.k1 WHERE ts2 Index Cond: (k1 = ANY (ARRAY[ts2.k1, $1, $2, ..., $1023])) (6 rows) --- Query Hash: 4811fe69eff77a61861cf9f9eb8d3ea2 , !BEST_PLAN_FOUND +-- Query Hash: 4811fe69eff77a61861cf9f9eb8d3ea2 EXPLAIN (COSTS OFF) SELECT * FROM t1 JOIN t2 ON t1.k1 = t2.k1 AND t1.k2 = t2.k2 WHERE t1.k1 > 1200 AND t1.k1 <= 1300; - QUERY PLAN ------------------------------------------------------ - Nested Loop + QUERY PLAN +---------------------------------------------------------------------------------------------------------------------------- + YB Batched Nested Loop Join + Join Filter: ((t1.k1 = t2.k1) AND (t1.k2 = t2.k2)) -> Index Scan using t1_pkey on t1 Index Cond: ((k1 > 1200) AND (k1 <= 1300)) -> Index Scan using t2_pkey on t2 - Index Cond: ((k1 = t1.k1) AND (k2 = t1.k2)) -(5 rows) + Index Cond: (ROW(k1, k2) = ANY (ARRAY[ROW(t1.k1, t1.k2), ROW($1, $1025), ROW($2, $1026), ..., ROW($1023, $2047)])) +(6 rows) -- Query Hash: f06194cd76e3205918b30fb25f25c329 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM t1 JOIN t2 ON t1.k1 = t2.k1 AND t1.k2 = t2.k2 WHERE t1.k1 > 1200 AND t1.k1 <= 1500; - QUERY PLAN ------------------------------------------------------ - Nested Loop + QUERY PLAN +---------------------------------------------------------------------------------------------------------------------------- + YB Batched Nested Loop Join + Join Filter: ((t1.k1 = t2.k1) AND (t1.k2 = t2.k2)) -> Index Scan using t1_pkey on t1 Index Cond: ((k1 > 1200) AND (k1 <= 1500)) -> Index Scan using t2_pkey on t2 - Index Cond: ((k1 = t1.k1) AND (k2 = t1.k2)) -(5 rows) + Index Cond: (ROW(k1, k2) = ANY (ARRAY[ROW(t1.k1, t1.k2), ROW($1, $1025), ROW($2, $1026), ..., ROW($1023, $2047)])) +(6 rows) -- Query Hash: 3caedb16a67c51810f4fffa43b2af89e , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM ts2 JOIN ts3 ON ts2.k1 = ts3.k1 AND ts2.k2 = ts3.k2 WHERE ts2.k1 > 1200 AND ts2.k1 <= 1300; @@ -1896,37 +1899,39 @@ EXPLAIN (COSTS OFF) SELECT * FROM ts2 JOIN ts3 ON ts2.k1 = ts3.k1 AND ts2.k2 = t -- Query Hash: fbf32083154c72c473fa63d5682f1487 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM ts2 JOIN ts3 ON ts2.k1 = ts3.k1 AND ts2.k2 = ts3.k2 WHERE ts2.k1 > 1200 AND ts2.k1 <= 1400; - QUERY PLAN ----------------------------------------------------- - Nested Loop - -> Index Scan using ts2_pkey on ts2 - Index Cond: ((k1 > 1200) AND (k1 <= 1400)) - -> Index Scan using ts3_pkey on ts3 - Index Cond: (k1 = ts2.k1) - Filter: (ts2.k2 = k2) + QUERY PLAN +---------------------------------------------------------- + Hash Join + Hash Cond: ((ts3.k1 = ts2.k1) AND (ts3.k2 = ts2.k2)) + -> Seq Scan on ts3 + -> Hash + -> Index Scan using ts2_pkey on ts2 + Index Cond: ((k1 > 1200) AND (k1 <= 1400)) (6 rows) -- Query Hash: 1b6b8c0c5065d45901aec1603925d55c EXPLAIN (COSTS OFF) SELECT * FROM t1 JOIN t2 ON t1.v1 = t2.v1 WHERE t1.k1 = 8180; - QUERY PLAN -------------------------------------------- - Nested Loop + QUERY PLAN +------------------------------------------------------------------- + YB Batched Nested Loop Join + Join Filter: (t1.v1 = t2.v1) -> Index Scan using t1_pkey on t1 Index Cond: (k1 = 8180) -> Index Scan using t2_v1_k2_idx on t2 - Index Cond: (v1 = t1.v1) -(5 rows) + Index Cond: (v1 = ANY (ARRAY[t1.v1, $1, $2, ..., $1023])) +(6 rows) -- Query Hash: 059e6b9aaa0c6be34df2727629e23ed8 EXPLAIN (COSTS OFF) SELECT * FROM t1 JOIN t2 ON t1.v1 = t2.v1 WHERE t1.k1 = 8100; - QUERY PLAN -------------------------------------------- - Nested Loop + QUERY PLAN +------------------------------------------------------------------- + YB Batched Nested Loop Join + Join Filter: (t1.v1 = t2.v1) -> Index Scan using t1_pkey on t1 Index Cond: (k1 = 8100) -> Index Scan using t2_v1_k2_idx on t2 - Index Cond: (v1 = t1.v1) -(5 rows) + Index Cond: (v1 = ANY (ARRAY[t1.v1, $1, $2, ..., $1023])) +(6 rows) -- Query Hash: 848bfeca980b6a8bd379d3da0f5bb51c EXPLAIN (COSTS OFF) SELECT * FROM t2 JOIN ts3 ON t2.v1 = ts3.v1 WHERE t2.k1 = 17100; @@ -1978,25 +1983,27 @@ EXPLAIN (COSTS OFF) SELECT * FROM ts2 JOIN ts3 ON ts2.v1 = ts3.v1 WHERE ts2.k1 = -- Query Hash: 5e54c1a76b511cf2706bc372d5da03cd EXPLAIN (COSTS OFF) SELECT * FROM t1 LEFT JOIN t2 ON t1.v1 = t2.v1 WHERE t1.k1 = 8180; - QUERY PLAN -------------------------------------------- - Nested Loop Left Join + QUERY PLAN +------------------------------------------------------------------- + YB Batched Nested Loop Left Join + Join Filter: (t1.v1 = t2.v1) -> Index Scan using t1_pkey on t1 Index Cond: (k1 = 8180) -> Index Scan using t2_v1_k2_idx on t2 - Index Cond: (t1.v1 = v1) -(5 rows) + Index Cond: (v1 = ANY (ARRAY[t1.v1, $1, $2, ..., $1023])) +(6 rows) -- Query Hash: 6635511867fc479c40d46c069a67b614 EXPLAIN (COSTS OFF) SELECT * FROM t1 LEFT JOIN t2 ON t1.v1 = t2.v1 WHERE t1.k1 = 8100; - QUERY PLAN -------------------------------------------- - Nested Loop Left Join + QUERY PLAN +------------------------------------------------------------------- + YB Batched Nested Loop Left Join + Join Filter: (t1.v1 = t2.v1) -> Index Scan using t1_pkey on t1 Index Cond: (k1 = 8100) -> Index Scan using t2_v1_k2_idx on t2 - Index Cond: (t1.v1 = v1) -(5 rows) + Index Cond: (v1 = ANY (ARRAY[t1.v1, $1, $2, ..., $1023])) +(6 rows) -- Query Hash: f1d58feb349907f7217b0a9362d4f45d EXPLAIN (COSTS OFF) SELECT * FROM t2 LEFT JOIN ts3 ON t2.v1 = ts3.v1 WHERE t2.k1 = 17100; @@ -2048,25 +2055,27 @@ EXPLAIN (COSTS OFF) SELECT * FROM ts2 LEFT JOIN ts3 ON ts2.v1 = ts3.v1 WHERE ts2 -- Query Hash: 135fbc6de237d7311ffb15f85b2b307e EXPLAIN (COSTS OFF) SELECT * FROM t1 RIGHT JOIN t2 ON t1.v1 = t2.v1 WHERE t1.k1 = 8180; - QUERY PLAN -------------------------------------------- - Nested Loop + QUERY PLAN +------------------------------------------------------------------- + YB Batched Nested Loop Join + Join Filter: (t1.v1 = t2.v1) -> Index Scan using t1_pkey on t1 Index Cond: (k1 = 8180) -> Index Scan using t2_v1_k2_idx on t2 - Index Cond: (v1 = t1.v1) -(5 rows) + Index Cond: (v1 = ANY (ARRAY[t1.v1, $1, $2, ..., $1023])) +(6 rows) -- Query Hash: d250439f351d6e772ee98ca87ea7a85a EXPLAIN (COSTS OFF) SELECT * FROM t1 RIGHT JOIN t2 ON t1.v1 = t2.v1 WHERE t1.k1 = 8100; - QUERY PLAN -------------------------------------------- - Nested Loop + QUERY PLAN +------------------------------------------------------------------- + YB Batched Nested Loop Join + Join Filter: (t1.v1 = t2.v1) -> Index Scan using t1_pkey on t1 Index Cond: (k1 = 8100) -> Index Scan using t2_v1_k2_idx on t2 - Index Cond: (v1 = t1.v1) -(5 rows) + Index Cond: (v1 = ANY (ARRAY[t1.v1, $1, $2, ..., $1023])) +(6 rows) -- Query Hash: 17f44fabc85088993cc3e21f3dce3bf1 EXPLAIN (COSTS OFF) SELECT * FROM t2 RIGHT JOIN ts3 ON t2.v1 = ts3.v1 WHERE t2.k1 = 17100; @@ -2118,25 +2127,27 @@ EXPLAIN (COSTS OFF) SELECT * FROM ts2 RIGHT JOIN ts3 ON ts2.v1 = ts3.v1 WHERE ts -- Query Hash: 1cf9154be7e0318da7bc16e66a713bb3 EXPLAIN (COSTS OFF) SELECT * FROM t1 FULL JOIN t2 ON t1.v1 = t2.v1 WHERE t1.k1 = 8180; - QUERY PLAN -------------------------------------------- - Nested Loop Left Join + QUERY PLAN +------------------------------------------------------------------- + YB Batched Nested Loop Left Join + Join Filter: (t1.v1 = t2.v1) -> Index Scan using t1_pkey on t1 Index Cond: (k1 = 8180) -> Index Scan using t2_v1_k2_idx on t2 - Index Cond: (t1.v1 = v1) -(5 rows) + Index Cond: (v1 = ANY (ARRAY[t1.v1, $1, $2, ..., $1023])) +(6 rows) -- Query Hash: c44660cd5e4ea336ca45804c92a4fac0 EXPLAIN (COSTS OFF) SELECT * FROM t1 FULL JOIN t2 ON t1.v1 = t2.v1 WHERE t1.k1 = 810; - QUERY PLAN -------------------------------------------- - Nested Loop Left Join + QUERY PLAN +------------------------------------------------------------------- + YB Batched Nested Loop Left Join + Join Filter: (t1.v1 = t2.v1) -> Index Scan using t1_pkey on t1 Index Cond: (k1 = 810) -> Index Scan using t2_v1_k2_idx on t2 - Index Cond: (t1.v1 = v1) -(5 rows) + Index Cond: (v1 = ANY (ARRAY[t1.v1, $1, $2, ..., $1023])) +(6 rows) -- Query Hash: 6bfe2d4dca0bdf0f598fee4e73c410c7 EXPLAIN (COSTS OFF) SELECT * FROM t2 FULL JOIN ts3 ON t2.v1 = ts3.v1 WHERE t2.k1 = 17100; @@ -2230,7 +2241,7 @@ EXPLAIN (COSTS OFF) SELECT * FROM t2 JOIN ts3 ON t2.k1 = ts3.k1 WHERE t2.k1 = 17 Index Cond: (k1 = 17190) (5 rows) --- Query Hash: a2df06408c6693370e9496385d484e43 +-- Query Hash: a2df06408c6693370e9496385d484e43 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM ts2 JOIN ts3 ON ts2.k1 = ts3.k1 WHERE ts2.k1 = 17100; QUERY PLAN ---------------------------------------- @@ -2276,52 +2287,52 @@ EXPLAIN (COSTS OFF) SELECT * FROM t1 LEFT JOIN t2 ON t1.k1 = t2.k1 WHERE t1.k1 = Index Cond: ((k1 = ANY (ARRAY[t1.k1, $1, $2, ..., $1023])) AND (k1 = 8100)) (6 rows) --- Query Hash: 8796234e6953bb18190ccc4dce6cdaf4 , !BEST_PLAN_FOUND +-- Query Hash: 8796234e6953bb18190ccc4dce6cdaf4 EXPLAIN (COSTS OFF) SELECT * FROM t2 LEFT JOIN ts3 ON t2.k1 = ts3.k1 WHERE t2.k1 = 17100; - QUERY PLAN --------------------------------------------------------------------------------------- - YB Batched Nested Loop Left Join + QUERY PLAN +---------------------------------------- + Nested Loop Left Join Join Filter: (t2.k1 = ts3.k1) -> Index Scan using t2_pkey on t2 Index Cond: (k1 = 17100) -> Index Scan using ts3_pkey on ts3 - Index Cond: ((k1 = ANY (ARRAY[t2.k1, $1, $2, ..., $1023])) AND (k1 = 17100)) + Index Cond: (k1 = 17100) (6 rows) --- Query Hash: e81cec91a1a34edd7d8b00b63a514a80 , !BEST_PLAN_FOUND +-- Query Hash: e81cec91a1a34edd7d8b00b63a514a80 EXPLAIN (COSTS OFF) SELECT * FROM t2 LEFT JOIN ts3 ON t2.k1 = ts3.k1 WHERE t2.k1 = 17190; - QUERY PLAN --------------------------------------------------------------------------------------- - YB Batched Nested Loop Left Join + QUERY PLAN +---------------------------------------- + Nested Loop Left Join Join Filter: (t2.k1 = ts3.k1) -> Index Scan using t2_pkey on t2 Index Cond: (k1 = 17190) -> Index Scan using ts3_pkey on ts3 - Index Cond: ((k1 = ANY (ARRAY[t2.k1, $1, $2, ..., $1023])) AND (k1 = 17190)) + Index Cond: (k1 = 17190) (6 rows) --- Query Hash: eaaf59e47289b237352b7b5d95cce501 , !BEST_PLAN_FOUND +-- Query Hash: eaaf59e47289b237352b7b5d95cce501 EXPLAIN (COSTS OFF) SELECT * FROM ts2 LEFT JOIN ts3 ON ts2.k1 = ts3.k1 WHERE ts2.k1 = 17100; - QUERY PLAN ---------------------------------------------------------------------------------------- - YB Batched Nested Loop Left Join + QUERY PLAN +---------------------------------------- + Nested Loop Left Join Join Filter: (ts2.k1 = ts3.k1) -> Index Scan using ts2_pkey on ts2 Index Cond: (k1 = 17100) -> Index Scan using ts3_pkey on ts3 - Index Cond: ((k1 = ANY (ARRAY[ts2.k1, $1, $2, ..., $1023])) AND (k1 = 17100)) + Index Cond: (k1 = 17100) (6 rows) --- Query Hash: 008f41cdc4376563f66cf9396a182e59 , !BEST_PLAN_FOUND +-- Query Hash: 008f41cdc4376563f66cf9396a182e59 EXPLAIN (COSTS OFF) SELECT * FROM ts2 LEFT JOIN ts3 ON ts2.k1 = ts3.k1 WHERE ts2.k1 = 17190; - QUERY PLAN ---------------------------------------------------------------------------------------- - YB Batched Nested Loop Left Join + QUERY PLAN +---------------------------------------- + Nested Loop Left Join Join Filter: (ts2.k1 = ts3.k1) -> Index Scan using ts2_pkey on ts2 Index Cond: (k1 = 17190) -> Index Scan using ts3_pkey on ts3 - Index Cond: ((k1 = ANY (ARRAY[ts2.k1, $1, $2, ..., $1023])) AND (k1 = 17190)) + Index Cond: (k1 = 17190) (6 rows) -- Query Hash: 811818fbca78f78be2f3a5652a100e59 @@ -2414,253 +2425,273 @@ EXPLAIN (COSTS OFF) SELECT * FROM t1 FULL JOIN t2 ON t1.k1 = t2.k1 WHERE t1.k1 = Index Cond: ((k1 = ANY (ARRAY[t1.k1, $1, $2, ..., $1023])) AND (k1 = 8100)) (6 rows) --- Query Hash: 5d288c216cfdb064f2dc76c3e79294c8 , !BEST_PLAN_FOUND +-- Query Hash: 5d288c216cfdb064f2dc76c3e79294c8 EXPLAIN (COSTS OFF) SELECT * FROM t2 FULL JOIN ts3 ON t2.k1 = ts3.k1 WHERE t2.k1 = 17100; - QUERY PLAN --------------------------------------------------------------------------------------- - YB Batched Nested Loop Left Join + QUERY PLAN +---------------------------------------- + Nested Loop Left Join Join Filter: (t2.k1 = ts3.k1) -> Index Scan using t2_pkey on t2 Index Cond: (k1 = 17100) -> Index Scan using ts3_pkey on ts3 - Index Cond: ((k1 = ANY (ARRAY[t2.k1, $1, $2, ..., $1023])) AND (k1 = 17100)) + Index Cond: (k1 = 17100) (6 rows) --- Query Hash: 901bffa08215b84cea2c3bfa31ac8b87 , !BEST_PLAN_FOUND +-- Query Hash: 901bffa08215b84cea2c3bfa31ac8b87 EXPLAIN (COSTS OFF) SELECT * FROM t2 FULL JOIN ts3 ON t2.k1 = ts3.k1 WHERE t2.k1 = 17190; - QUERY PLAN --------------------------------------------------------------------------------------- - YB Batched Nested Loop Left Join + QUERY PLAN +---------------------------------------- + Nested Loop Left Join Join Filter: (t2.k1 = ts3.k1) -> Index Scan using t2_pkey on t2 Index Cond: (k1 = 17190) -> Index Scan using ts3_pkey on ts3 - Index Cond: ((k1 = ANY (ARRAY[t2.k1, $1, $2, ..., $1023])) AND (k1 = 17190)) + Index Cond: (k1 = 17190) (6 rows) --- Query Hash: fbfe3e52254ee6c2f4bd267ff86bfaba , !BEST_PLAN_FOUND +-- Query Hash: fbfe3e52254ee6c2f4bd267ff86bfaba EXPLAIN (COSTS OFF) SELECT * FROM ts2 FULL JOIN ts3 ON ts2.k1 = ts3.k1 WHERE ts2.k1 = 17100; - QUERY PLAN ---------------------------------------------------------------------------------------- - YB Batched Nested Loop Left Join + QUERY PLAN +---------------------------------------- + Nested Loop Left Join Join Filter: (ts2.k1 = ts3.k1) -> Index Scan using ts2_pkey on ts2 Index Cond: (k1 = 17100) -> Index Scan using ts3_pkey on ts3 - Index Cond: ((k1 = ANY (ARRAY[ts2.k1, $1, $2, ..., $1023])) AND (k1 = 17100)) + Index Cond: (k1 = 17100) (6 rows) --- Query Hash: 9bf2a9dbbeedc0548f40bd06a3692e67 , !BEST_PLAN_FOUND +-- Query Hash: 9bf2a9dbbeedc0548f40bd06a3692e67 EXPLAIN (COSTS OFF) SELECT * FROM ts2 FULL JOIN ts3 ON ts2.k1 = ts3.k1 WHERE ts2.k1 = 17190; - QUERY PLAN ---------------------------------------------------------------------------------------- - YB Batched Nested Loop Left Join + QUERY PLAN +---------------------------------------- + Nested Loop Left Join Join Filter: (ts2.k1 = ts3.k1) -> Index Scan using ts2_pkey on ts2 Index Cond: (k1 = 17190) -> Index Scan using ts3_pkey on ts3 - Index Cond: ((k1 = ANY (ARRAY[ts2.k1, $1, $2, ..., $1023])) AND (k1 = 17190)) + Index Cond: (k1 = 17190) (6 rows) -- Query Hash: a2e07bed780be8bac48f9fd4c6555748 EXPLAIN (COSTS OFF) SELECT t1.k1, t1.k2, t1.v1, t1.v2 FROM t1 ORDER BY t1.k1, t1.v1 LIMIT 100000; - QUERY PLAN ----------------------------- + QUERY PLAN +-------------------------------------------- Limit - -> Sort + -> Incremental Sort Sort Key: k1, v1 - -> Seq Scan on t1 -(4 rows) + Presorted Key: k1 + -> Index Scan using t1_pkey on t1 +(5 rows) -- Query Hash: 84acbeb7a13c5f1e35015643390f5a38 EXPLAIN (COSTS OFF) SELECT t1.k1, t1.k2, t1.v1, t1.v2 FROM t1 ORDER BY t1.k1, t1.v1 LIMIT 1000000; - QUERY PLAN ----------------------------- + QUERY PLAN +-------------------------------------------- Limit - -> Sort + -> Incremental Sort Sort Key: k1, v1 - -> Seq Scan on t1 -(4 rows) + Presorted Key: k1 + -> Index Scan using t1_pkey on t1 +(5 rows) -- Query Hash: bcb2bfdf0d4c06a119c75d7b2b2340cc EXPLAIN (COSTS OFF) SELECT t2.k1, t2.k2, t2.v1, t2.v2 FROM t2 ORDER BY t2.k1, t2.v1 LIMIT 100000; - QUERY PLAN ----------------------------- + QUERY PLAN +-------------------------------------------- Limit - -> Sort + -> Incremental Sort Sort Key: k1, v1 - -> Seq Scan on t2 -(4 rows) + Presorted Key: k1 + -> Index Scan using t2_pkey on t2 +(5 rows) -- Query Hash: baa81093b3a2f02c0232e76005265d4d EXPLAIN (COSTS OFF) SELECT t2.k1, t2.k2, t2.v1, t2.v2 FROM t2 ORDER BY t2.k1, t2.v1 LIMIT 1000000; - QUERY PLAN ----------------------------- + QUERY PLAN +-------------------------------------------- Limit - -> Sort + -> Incremental Sort Sort Key: k1, v1 - -> Seq Scan on t2 -(4 rows) + Presorted Key: k1 + -> Index Scan using t2_pkey on t2 +(5 rows) -- Query Hash: f0b489a94c8cfb0bb78bffd4574d7626 EXPLAIN (COSTS OFF) SELECT t3.k1, t3.k2, t3.v1, t3.v2 FROM t3 ORDER BY t3.k1, t3.v1 LIMIT 100000; - QUERY PLAN ----------------------------- + QUERY PLAN +-------------------------------------------- Limit - -> Sort + -> Incremental Sort Sort Key: k1, v1 - -> Seq Scan on t3 -(4 rows) + Presorted Key: k1 + -> Index Scan using t3_pkey on t3 +(5 rows) -- Query Hash: 1ad6fbf6842f34e01130ceca01460055 EXPLAIN (COSTS OFF) SELECT t3.k1, t3.k2, t3.v1, t3.v2 FROM t3 ORDER BY t3.k1, t3.v1 LIMIT 1000000; - QUERY PLAN ----------------------------- + QUERY PLAN +-------------------------------------------- Limit - -> Sort + -> Incremental Sort Sort Key: k1, v1 - -> Seq Scan on t3 -(4 rows) + Presorted Key: k1 + -> Index Scan using t3_pkey on t3 +(5 rows) -- Query Hash: fde5629fc0c578f5a233f9c5c3a45826 EXPLAIN (COSTS OFF) SELECT ts2.k1, ts2.k2, ts2.v1, ts2.v2 FROM ts2 ORDER BY ts2.k1, ts2.v1 LIMIT 100000; - QUERY PLAN ------------------------------ + QUERY PLAN +---------------------------------------------- Limit - -> Sort + -> Incremental Sort Sort Key: k1, v1 - -> Seq Scan on ts2 -(4 rows) + Presorted Key: k1 + -> Index Scan using ts2_pkey on ts2 +(5 rows) -- Query Hash: 62cc6e648ed30d0f06e081abf029e58d EXPLAIN (COSTS OFF) SELECT ts2.k1, ts2.k2, ts2.v1, ts2.v2 FROM ts2 ORDER BY ts2.k1, ts2.v1 LIMIT 1000000; - QUERY PLAN ------------------------------ + QUERY PLAN +---------------------------------------------- Limit - -> Sort + -> Incremental Sort Sort Key: k1, v1 - -> Seq Scan on ts2 -(4 rows) + Presorted Key: k1 + -> Index Scan using ts2_pkey on ts2 +(5 rows) -- Query Hash: 5505c9050a5c3641ad5eb7c05defc4b8 EXPLAIN (COSTS OFF) SELECT ts3.k1, ts3.k2, ts3.v1, ts3.v2 FROM ts3 ORDER BY ts3.k1, ts3.v1 LIMIT 100000; - QUERY PLAN ------------------------------ + QUERY PLAN +---------------------------------------------- Limit - -> Sort + -> Incremental Sort Sort Key: k1, v1 - -> Seq Scan on ts3 -(4 rows) + Presorted Key: k1 + -> Index Scan using ts3_pkey on ts3 +(5 rows) -- Query Hash: 32d1561cd9ca01b05b872d1a82d56081 EXPLAIN (COSTS OFF) SELECT ts3.k1, ts3.k2, ts3.v1, ts3.v2 FROM ts3 ORDER BY ts3.k1, ts3.v1 LIMIT 1000000; - QUERY PLAN ------------------------------ + QUERY PLAN +---------------------------------------------- Limit - -> Sort + -> Incremental Sort Sort Key: k1, v1 - -> Seq Scan on ts3 -(4 rows) + Presorted Key: k1 + -> Index Scan using ts3_pkey on ts3 +(5 rows) -- Query Hash: 8704f09be8413b3d369920b82ec3396c EXPLAIN (COSTS OFF) SELECT t1.k1, t1.k2, t1.v1, t1.v2 FROM t1 ORDER BY t1.k1, t1.v2 LIMIT 100000; - QUERY PLAN ----------------------------- + QUERY PLAN +-------------------------------------------- Limit - -> Sort + -> Incremental Sort Sort Key: k1, v2 - -> Seq Scan on t1 -(4 rows) + Presorted Key: k1 + -> Index Scan using t1_pkey on t1 +(5 rows) -- Query Hash: a08b799e4beb65abcdab5b4f4c939d3a EXPLAIN (COSTS OFF) SELECT t1.k1, t1.k2, t1.v1, t1.v2 FROM t1 ORDER BY t1.k1, t1.v2 LIMIT 1000000; - QUERY PLAN ----------------------------- + QUERY PLAN +-------------------------------------------- Limit - -> Sort + -> Incremental Sort Sort Key: k1, v2 - -> Seq Scan on t1 -(4 rows) + Presorted Key: k1 + -> Index Scan using t1_pkey on t1 +(5 rows) -- Query Hash: daef80a2f0bc075497471eaaf4142476 EXPLAIN (COSTS OFF) SELECT t2.k1, t2.k2, t2.v1, t2.v2 FROM t2 ORDER BY t2.k1, t2.v2 LIMIT 100000; - QUERY PLAN ----------------------------- + QUERY PLAN +-------------------------------------------- Limit - -> Sort + -> Incremental Sort Sort Key: k1, v2 - -> Seq Scan on t2 -(4 rows) + Presorted Key: k1 + -> Index Scan using t2_pkey on t2 +(5 rows) -- Query Hash: 3676b698dd18210e86d0f37fe80f01eb EXPLAIN (COSTS OFF) SELECT t2.k1, t2.k2, t2.v1, t2.v2 FROM t2 ORDER BY t2.k1, t2.v2 LIMIT 1000000; - QUERY PLAN ----------------------------- + QUERY PLAN +-------------------------------------------- Limit - -> Sort + -> Incremental Sort Sort Key: k1, v2 - -> Seq Scan on t2 -(4 rows) + Presorted Key: k1 + -> Index Scan using t2_pkey on t2 +(5 rows) -- Query Hash: 0e0af8e3fcf1ec9cc7d9ae9bc60f652c EXPLAIN (COSTS OFF) SELECT t3.k1, t3.k2, t3.v1, t3.v2 FROM t3 ORDER BY t3.k1, t3.v2 LIMIT 100000; - QUERY PLAN ----------------------------- + QUERY PLAN +-------------------------------------------- Limit - -> Sort + -> Incremental Sort Sort Key: k1, v2 - -> Seq Scan on t3 -(4 rows) + Presorted Key: k1 + -> Index Scan using t3_pkey on t3 +(5 rows) -- Query Hash: bd793d4acdd79d2ca93de6a3a2ccd239 EXPLAIN (COSTS OFF) SELECT t3.k1, t3.k2, t3.v1, t3.v2 FROM t3 ORDER BY t3.k1, t3.v2 LIMIT 1000000; - QUERY PLAN ----------------------------- + QUERY PLAN +-------------------------------------------- Limit - -> Sort + -> Incremental Sort Sort Key: k1, v2 - -> Seq Scan on t3 -(4 rows) + Presorted Key: k1 + -> Index Scan using t3_pkey on t3 +(5 rows) -- Query Hash: bcfe4c1f58e67e0d2279d4671a3f0bb0 EXPLAIN (COSTS OFF) SELECT ts2.k1, ts2.k2, ts2.v1, ts2.v2 FROM ts2 ORDER BY ts2.k1, ts2.v2 LIMIT 100000; - QUERY PLAN ------------------------------ + QUERY PLAN +---------------------------------------------- Limit - -> Sort + -> Incremental Sort Sort Key: k1, v2 - -> Seq Scan on ts2 -(4 rows) + Presorted Key: k1 + -> Index Scan using ts2_pkey on ts2 +(5 rows) -- Query Hash: c24615893b439a3554d8d40d6b752250 EXPLAIN (COSTS OFF) SELECT ts2.k1, ts2.k2, ts2.v1, ts2.v2 FROM ts2 ORDER BY ts2.k1, ts2.v2 LIMIT 1000000; - QUERY PLAN ------------------------------ + QUERY PLAN +---------------------------------------------- Limit - -> Sort + -> Incremental Sort Sort Key: k1, v2 - -> Seq Scan on ts2 -(4 rows) + Presorted Key: k1 + -> Index Scan using ts2_pkey on ts2 +(5 rows) -- Query Hash: 7c56cfcafcb7bc2b1ae8c85ab8cbf1ce EXPLAIN (COSTS OFF) SELECT ts3.k1, ts3.k2, ts3.v1, ts3.v2 FROM ts3 ORDER BY ts3.k1, ts3.v2 LIMIT 100000; - QUERY PLAN ------------------------------ + QUERY PLAN +---------------------------------------------- Limit - -> Sort + -> Incremental Sort Sort Key: k1, v2 - -> Seq Scan on ts3 -(4 rows) + Presorted Key: k1 + -> Index Scan using ts3_pkey on ts3 +(5 rows) -- Query Hash: 5a19db389122b4d9e268170a1d6f3b5d EXPLAIN (COSTS OFF) SELECT ts3.k1, ts3.k2, ts3.v1, ts3.v2 FROM ts3 ORDER BY ts3.k1, ts3.v2 LIMIT 1000000; - QUERY PLAN ------------------------------ + QUERY PLAN +---------------------------------------------- Limit - -> Sort + -> Incremental Sort Sort Key: k1, v2 - -> Seq Scan on ts3 -(4 rows) + Presorted Key: k1 + -> Index Scan using ts3_pkey on ts3 +(5 rows) -- Query Hash: 8d57f403cc2930d7992d727668152c3b EXPLAIN (COSTS OFF) SELECT t / 100 FROM generate_series(1, 1000000) AS t ORDER BY t % 100; @@ -2686,54 +2717,46 @@ EXPLAIN (COSTS OFF) SELECT |/ t, 'foo ' || t, now() FROM generate_series(1, 1000 Function Scan on generate_series t (1 row) --- Query Hash: 01edcc6ec683ece25b885d57c339cd39 , !BEST_PLAN_FOUND +-- Query Hash: 01edcc6ec683ece25b885d57c339cd39 EXPLAIN (COSTS OFF) SELECT * FROM t1 WHERE v1 > 20000 ORDER BY v1 ASC LIMIT 100000; QUERY PLAN ------------------------------------------- Limit - -> Sort - Sort Key: v1 - -> Seq Scan on t1 - Storage Filter: (v1 > 20000) -(5 rows) + -> Index Scan using t1_v1_k2_idx on t1 + Index Cond: (v1 > 20000) +(3 rows) --- Query Hash: 6704caccd64f9bb3e810f632c9316173 +-- Query Hash: 6704caccd64f9bb3e810f632c9316173 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM t1 WHERE v1 > 20000 ORDER BY v1 ASC LIMIT 1000000; QUERY PLAN ------------------------------------------- Limit - -> Sort - Sort Key: v1 - -> Seq Scan on t1 - Storage Filter: (v1 > 20000) -(5 rows) + -> Index Scan using t1_v1_k2_idx on t1 + Index Cond: (v1 > 20000) +(3 rows) --- Query Hash: cb5b7bd89976d810fb85e3d66c41d063 , !BEST_PLAN_FOUND +-- Query Hash: cb5b7bd89976d810fb85e3d66c41d063 EXPLAIN (COSTS OFF) SELECT * FROM t2 WHERE v1 > 20000 ORDER BY v1 ASC LIMIT 100000; QUERY PLAN ------------------------------------------- Limit - -> Sort - Sort Key: v1 - -> Seq Scan on t2 - Storage Filter: (v1 > 20000) -(5 rows) + -> Index Scan using t2_v1_k2_idx on t2 + Index Cond: (v1 > 20000) +(3 rows) --- Query Hash: 1262567af96df3c19c65ce883b2adad9 +-- Query Hash: 1262567af96df3c19c65ce883b2adad9 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM t2 WHERE v1 > 20000 ORDER BY v1 ASC LIMIT 1000000; QUERY PLAN ------------------------------------------- Limit - -> Sort - Sort Key: v1 - -> Seq Scan on t2 - Storage Filter: (v1 > 20000) -(5 rows) + -> Index Scan using t2_v1_k2_idx on t2 + Index Cond: (v1 > 20000) +(3 rows) -- Query Hash: f62c7ba49634af52f3014a3ee936a2ce EXPLAIN (COSTS OFF) SELECT * FROM ts2 WHERE v1 > 20000 ORDER BY v1 ASC LIMIT 100000; - QUERY PLAN -------------------------------------------- + QUERY PLAN +-------------------------------------------- Limit -> Sort Sort Key: v1 @@ -2743,8 +2766,8 @@ EXPLAIN (COSTS OFF) SELECT * FROM ts2 WHERE v1 > 20000 ORDER BY v1 ASC LIMIT 100 -- Query Hash: 54b5d1b16cf580191b24ccaa81077df3 EXPLAIN (COSTS OFF) SELECT * FROM ts2 WHERE v1 > 20000 ORDER BY v1 ASC LIMIT 1000000; - QUERY PLAN -------------------------------------------- + QUERY PLAN +-------------------------------------------- Limit -> Sort Sort Key: v1 @@ -2754,8 +2777,8 @@ EXPLAIN (COSTS OFF) SELECT * FROM ts2 WHERE v1 > 20000 ORDER BY v1 ASC LIMIT 100 -- Query Hash: 1153a8cb67ed0459e4549f2369f9cd98 EXPLAIN (COSTS OFF) SELECT * FROM ts3 WHERE v1 > 20000 ORDER BY v1 ASC LIMIT 100000; - QUERY PLAN -------------------------------------------- + QUERY PLAN +-------------------------------------------- Limit -> Sort Sort Key: v1 @@ -2765,8 +2788,8 @@ EXPLAIN (COSTS OFF) SELECT * FROM ts3 WHERE v1 > 20000 ORDER BY v1 ASC LIMIT 100 -- Query Hash: 48b9419316384834e29ee9ebb8e18d0b EXPLAIN (COSTS OFF) SELECT * FROM ts3 WHERE v1 > 20000 ORDER BY v1 ASC LIMIT 1000000; - QUERY PLAN -------------------------------------------- + QUERY PLAN +-------------------------------------------- Limit -> Sort Sort Key: v1 @@ -2812,8 +2835,8 @@ EXPLAIN (COSTS OFF) SELECT v1,k2 FROM t2 WHERE v1 > 20000 ORDER BY v1 ASC LIMIT -- Query Hash: 10315870433affc0b2381550bce1579d EXPLAIN (COSTS OFF) SELECT v1,k2 FROM ts2 WHERE v1 > 20000 ORDER BY v1 ASC LIMIT 100000; - QUERY PLAN -------------------------------------------- + QUERY PLAN +-------------------------------------------- Limit -> Sort Sort Key: v1 @@ -2823,8 +2846,8 @@ EXPLAIN (COSTS OFF) SELECT v1,k2 FROM ts2 WHERE v1 > 20000 ORDER BY v1 ASC LIMIT -- Query Hash: 9460e9485046094d5cdb86cb01d66aa0 EXPLAIN (COSTS OFF) SELECT v1,k2 FROM ts2 WHERE v1 > 20000 ORDER BY v1 ASC LIMIT 1000000; - QUERY PLAN -------------------------------------------- + QUERY PLAN +-------------------------------------------- Limit -> Sort Sort Key: v1 @@ -2834,8 +2857,8 @@ EXPLAIN (COSTS OFF) SELECT v1,k2 FROM ts2 WHERE v1 > 20000 ORDER BY v1 ASC LIMIT -- Query Hash: c25491960a5e5f56f9e3d0b06259d82d EXPLAIN (COSTS OFF) SELECT v1,k2 FROM ts3 WHERE v1 > 20000 ORDER BY v1 ASC LIMIT 100000; - QUERY PLAN -------------------------------------------- + QUERY PLAN +-------------------------------------------- Limit -> Sort Sort Key: v1 @@ -2845,8 +2868,8 @@ EXPLAIN (COSTS OFF) SELECT v1,k2 FROM ts3 WHERE v1 > 20000 ORDER BY v1 ASC LIMIT -- Query Hash: e13c0cdc238cfc314c1beb13e6d53a03 EXPLAIN (COSTS OFF) SELECT v1,k2 FROM ts3 WHERE v1 > 20000 ORDER BY v1 ASC LIMIT 1000000; - QUERY PLAN -------------------------------------------- + QUERY PLAN +-------------------------------------------- Limit -> Sort Sort Key: v1 @@ -2894,7 +2917,7 @@ EXPLAIN (COSTS OFF) SELECT * FROM t3 LIMIT 100000; -> Seq Scan on t3 (2 rows) --- Query Hash: dcc81c5d4a9389796fbe4288511d92f6 , !BEST_PLAN_FOUND +-- Query Hash: dcc81c5d4a9389796fbe4288511d92f6 EXPLAIN (COSTS OFF) SELECT * FROM t3 LIMIT 1000000; QUERY PLAN ---------------------- @@ -2993,7 +3016,7 @@ EXPLAIN (COSTS OFF) SELECT k1,k2 FROM ts2 WHERE k1 = 4231 AND k2 = 'k2-042'; -- Query Hash: e5acd8a0a32d7ece1b8b9cd6b0182bbf EXPLAIN (COSTS OFF) SELECT * FROM ts2 WHERE v1 = 4231 AND k2 = 'k2-042'; QUERY PLAN ----------------------------------------------------------- +----------------------------------------------------------- Seq Scan on ts2 Storage Filter: ((v1 = 4231) AND (k2 = 'k2-042'::text)) (2 rows) @@ -3001,7 +3024,7 @@ EXPLAIN (COSTS OFF) SELECT * FROM ts2 WHERE v1 = 4231 AND k2 = 'k2-042'; -- Query Hash: 039dbc1361cf4c8531378ec6d1acd6c6 EXPLAIN (COSTS OFF) SELECT k1,k2 FROM ts3 WHERE k1 = 4231 AND k2 = 'k2-042'; QUERY PLAN ----------------------------------------- +----------------------------------------- Index Scan using ts3_pkey on ts3 Index Cond: (k1 = 4231) Storage Filter: (k2 = 'k2-042'::text) @@ -3010,7 +3033,7 @@ EXPLAIN (COSTS OFF) SELECT k1,k2 FROM ts3 WHERE k1 = 4231 AND k2 = 'k2-042'; -- Query Hash: 3dd03b51847c025f75ea2fe2f92072e0 EXPLAIN (COSTS OFF) SELECT * FROM ts3 WHERE v1 = 4231 AND k2 = 'k2-042'; QUERY PLAN ----------------------------------------------------------- +----------------------------------------------------------- Seq Scan on ts3 Storage Filter: ((v1 = 4231) AND (k2 = 'k2-042'::text)) (2 rows) diff --git a/src/postgres/src/test/regress/expected/yb.orig.planner_taqo_seek_next_estimation.out b/src/postgres/src/test/regress/expected/yb.orig.planner_taqo_seek_next_estimation.out index ffc7f61f3a88..0cf0713a2b2a 100644 --- a/src/postgres/src/test/regress/expected/yb.orig.planner_taqo_seek_next_estimation.out +++ b/src/postgres/src/test/regress/expected/yb.orig.planner_taqo_seek_next_estimation.out @@ -1,54 +1,90 @@ CREATE DATABASE taqo_seek_next_estimation with colocation = true; \c taqo_seek_next_estimation SET statement_timeout = '7200s'; -SET enable_bitmapscan = false; -- TODO(#20573): update bitmap scan cost model -- CREATE QUERIES create table t1 (k1 int, PRIMARY KEY (k1 asc)); create table t2 (k1 int, k2 int, PRIMARY KEY (k1 asc, k2 asc)); create table t3 (k1 int, k2 int, k3 int, PRIMARY KEY (k1 asc, k2 asc, k3 asc)); create table t4 (k1 int, k2 int, k3 int, k4 int, PRIMARY KEY (k1 asc, k2 asc, k3 asc, k4 asc)); create table t5 (k1 int, k2 int, k3 int, k4 int, k5 int, PRIMARY KEY (k1 asc, k2 asc, k3 asc, k4 asc, k5 asc)); +create table tcor_1 (k1 int, k2 int, k3 int, k4 int); +create index tcor_1_idx on tcor_1 (k1 asc, k2 asc, k3 asc, k4 asc); +create statistics stx_tcor_1 on k1, k2, k3, k4 FROM tcor_1; +create table tcor_2 (k1 int, k2 int, k3 int, k4 int); +create index tcor_2_idx on tcor_2 (k1 asc, k2 asc, k3 asc, k4 asc); +create statistics stx_tcor_2 on k1, k2, k3, k4 FROM tcor_2; +CREATE TABLE tcor_3 (k1 INT, k2 INT, k3 INT); +CREATE INDEX tcor_3_idx on tcor_3 (k1 ASC, k2 ASC, k3 ASC); +CREATE STATISTICS stx_tcor_3 on k1, k2, k3 FROM tcor_3; SET yb_non_ddl_txn_for_sys_tables_allowed = ON; -UPDATE pg_class SET reltuples = 20, relpages = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't1' OR relname = 't1_pkey'); -UPDATE pg_class SET reltuples = 20, relpages = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't1_pkey' OR relname = 't1_pkey_pkey'); -UPDATE pg_class SET reltuples = 400, relpages = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't2' OR relname = 't2_pkey'); -UPDATE pg_class SET reltuples = 400, relpages = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't2_pkey' OR relname = 't2_pkey_pkey'); -UPDATE pg_class SET reltuples = 8000, relpages = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't3' OR relname = 't3_pkey'); -UPDATE pg_class SET reltuples = 8000, relpages = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't3_pkey' OR relname = 't3_pkey_pkey'); -UPDATE pg_class SET reltuples = 160000, relpages = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't4' OR relname = 't4_pkey'); -UPDATE pg_class SET reltuples = 160000, relpages = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't4_pkey' OR relname = 't4_pkey_pkey'); -UPDATE pg_class SET reltuples = 3200000, relpages = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't5' OR relname = 't5_pkey'); -UPDATE pg_class SET reltuples = 3200000, relpages = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't5_pkey' OR relname = 't5_pkey_pkey'); +UPDATE pg_class SET reltuples = 20, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't1' OR relname = 't1_pkey'); +UPDATE pg_class SET reltuples = 20, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't1_pkey' OR relname = 't1_pkey_pkey'); +UPDATE pg_class SET reltuples = 400, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't2' OR relname = 't2_pkey'); +UPDATE pg_class SET reltuples = 400, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't2_pkey' OR relname = 't2_pkey_pkey'); +UPDATE pg_class SET reltuples = 8000, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't3' OR relname = 't3_pkey'); +UPDATE pg_class SET reltuples = 8000, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't3_pkey' OR relname = 't3_pkey_pkey'); +UPDATE pg_class SET reltuples = 160000, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't4' OR relname = 't4_pkey'); +UPDATE pg_class SET reltuples = 160000, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't4_pkey' OR relname = 't4_pkey_pkey'); +UPDATE pg_class SET reltuples = 3200000.0, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't5' OR relname = 't5_pkey'); +UPDATE pg_class SET reltuples = 3200000.0, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't5_pkey' OR relname = 't5_pkey_pkey'); +UPDATE pg_class SET reltuples = 12500, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 'tcor_1' OR relname = 'tcor_1_pkey'); +UPDATE pg_class SET reltuples = 12500, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 'tcor_1_idx' OR relname = 'tcor_1_idx_pkey'); +UPDATE pg_class SET reltuples = 100000, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 'tcor_2' OR relname = 'tcor_2_pkey'); +UPDATE pg_class SET reltuples = 100000, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 'tcor_2_idx' OR relname = 'tcor_2_idx_pkey'); +UPDATE pg_class SET reltuples = 171700, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 'tcor_3' OR relname = 'tcor_3_pkey'); +UPDATE pg_class SET reltuples = 171700, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 'tcor_3_idx' OR relname = 'tcor_3_idx_pkey'); DELETE FROM pg_statistic WHERE starelid = 'public.t1'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t1'::regclass and a.attname = 'k1'); -INSERT INTO pg_statistic VALUES ('public.t1'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t1'::regclass and a.attname = 'k1'), False::boolean, 0::real, 4::integer, -1::real, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 97::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, NULL::real[], '{1}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t1'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t1'::regclass and a.attname = 'k1'), False::boolean, 0::real, 4::integer, -1::real, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 97::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, NULL::real[], '{1}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t2'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t2'::regclass and a.attname = 'k1'); -INSERT INTO pg_statistic VALUES ('public.t2'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t2'::regclass and a.attname = 'k1'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007}'::real[], '{1}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t2'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t2'::regclass and a.attname = 'k1'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05}'::real[], '{1}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t2'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t2'::regclass and a.attname = 'k2'); -INSERT INTO pg_statistic VALUES ('public.t2'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t2'::regclass and a.attname = 'k2'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007}'::real[], '{0.0997506231}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t2'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t2'::regclass and a.attname = 'k2'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05}'::real[], '{0.09975062}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t3'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t3'::regclass and a.attname = 'k1'); -INSERT INTO pg_statistic VALUES ('public.t3'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t3'::regclass and a.attname = 'k1'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007}'::real[], '{1}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t3'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t3'::regclass and a.attname = 'k1'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05}'::real[], '{1}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t3'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t3'::regclass and a.attname = 'k2'); -INSERT INTO pg_statistic VALUES ('public.t3'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t3'::regclass and a.attname = 'k2'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007}'::real[], '{0.0997562334}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t3'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t3'::regclass and a.attname = 'k2'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05}'::real[], '{0.09975623}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t3'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t3'::regclass and a.attname = 'k3'); -INSERT INTO pg_statistic VALUES ('public.t3'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t3'::regclass and a.attname = 'k3'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007}'::real[], '{0.0524934381}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t3'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t3'::regclass and a.attname = 'k3'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05}'::real[], '{0.052493438}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t4'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t4'::regclass and a.attname = 'k1'); -INSERT INTO pg_statistic VALUES ('public.t4'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t4'::regclass and a.attname = 'k1'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0522999987, 0.0517666675, 0.0517333336, 0.0517333336, 0.0507999994, 0.0504666679, 0.0503666662, 0.0503333323, 0.0502333343, 0.0501333326, 0.0501333326, 0.0499333329, 0.0496666655, 0.0495666675, 0.0494999997, 0.0493666679, 0.0482000001, 0.0481333323, 0.0479666665, 0.0476666652}'::real[], '{0.074490793}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{6, 5, 2, 12, 11, 17, 4, 10, 16, 8, 18, 7, 9, 13, 19, 3, 20, 14, 15, 1}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t4'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t4'::regclass and a.attname = 'k1'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.051733334, 0.051533334, 0.051333334, 0.051266667, 0.050933335, 0.0508, 0.050533332, 0.050533332, 0.050466668, 0.050433334, 0.0502, 0.0502, 0.049933333, 0.0498, 0.049266666, 0.0488, 0.048733335, 0.048333332, 0.048033334, 0.047133334}'::real[], '{1}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{8, 13, 19, 3, 1, 10, 5, 11, 16, 18, 6, 20, 4, 9, 14, 7, 17, 12, 15, 2}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t4'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t4'::regclass and a.attname = 'k2'); -INSERT INTO pg_statistic VALUES ('public.t4'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t4'::regclass and a.attname = 'k2'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0514666662, 0.0512333326, 0.0510333329, 0.0508666672, 0.0508333333, 0.0507999994, 0.0507666655, 0.0505666658, 0.0505000018, 0.0500999987, 0.0500333346, 0.0500000007, 0.0500000007, 0.0498000011, 0.0494666658, 0.0492333323, 0.0491666682, 0.0485000014, 0.0482666679, 0.0473666675}'::real[], '{0.0732290298}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{5, 18, 8, 1, 3, 7, 11, 13, 9, 2, 20, 4, 10, 14, 16, 12, 17, 19, 6, 15}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t4'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t4'::regclass and a.attname = 'k2'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.051933333, 0.0519, 0.0516, 0.051533334, 0.050766665, 0.050766665, 0.050333332, 0.0503, 0.0501, 0.0501, 0.049966667, 0.0499, 0.049733333, 0.049233332, 0.049133334, 0.049133334, 0.0488, 0.048566666, 0.048466668, 0.047733333}'::real[], '{0.10424456}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{16, 14, 6, 15, 2, 17, 4, 19, 1, 5, 20, 13, 12, 18, 3, 9, 7, 8, 10, 11}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t4'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t4'::regclass and a.attname = 'k3'); -INSERT INTO pg_statistic VALUES ('public.t4'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t4'::regclass and a.attname = 'k3'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0518999994, 0.0513666682, 0.0511666648, 0.0509666651, 0.0507333316, 0.0505999997, 0.0505000018, 0.0500666648, 0.0500000007, 0.0499666668, 0.0498666652, 0.0498666652, 0.049833335, 0.0498000011, 0.0496999994, 0.0496333316, 0.0495333336, 0.0491666682, 0.0480000004, 0.0473333336}'::real[], '{0.0539749861}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{5, 4, 16, 3, 20, 14, 11, 12, 7, 8, 15, 19, 2, 9, 13, 17, 10, 18, 1, 6}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t4'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t4'::regclass and a.attname = 'k3'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0528, 0.051633332, 0.0516, 0.051033333, 0.051, 0.0508, 0.050366666, 0.0503, 0.0501, 0.050066665, 0.049866665, 0.0497, 0.04963333, 0.0496, 0.0491, 0.0489, 0.0488, 0.048733335, 0.048133332, 0.047833335}'::real[], '{0.05457672}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{13, 6, 4, 15, 1, 16, 17, 20, 11, 9, 19, 18, 14, 8, 7, 5, 10, 3, 2, 12}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t4'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t4'::regclass and a.attname = 'k4'); -INSERT INTO pg_statistic VALUES ('public.t4'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t4'::regclass and a.attname = 'k4'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0513999984, 0.0511999987, 0.0510666668, 0.050999999, 0.0505000018, 0.0503333323, 0.0502999984, 0.0502666682, 0.0502000004, 0.0499666668, 0.0498999991, 0.0496999994, 0.0496000014, 0.0496000014, 0.0494999997, 0.0493666679, 0.0493000001, 0.0491000004, 0.0489333346, 0.0487666652}'::real[], '{0.0537266955}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{9, 17, 3, 8, 20, 15, 1, 18, 10, 2, 4, 19, 5, 16, 12, 11, 13, 14, 6, 7}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t4'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t4'::regclass and a.attname = 'k4'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.052633334, 0.051633332, 0.051066667, 0.050766665, 0.050633334, 0.050633334, 0.050533332, 0.050466668, 0.050466668, 0.0503, 0.050166667, 0.0499, 0.0498, 0.049733333, 0.0496, 0.0493, 0.0489, 0.0488, 0.047733333, 0.046933334}'::real[], '{0.047732644}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 8, 13, 2, 4, 5, 20, 3, 14, 16, 18, 15, 7, 17, 6, 10, 9, 19, 12, 11}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t5'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k1'); -INSERT INTO pg_statistic VALUES ('public.t5'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k1'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0527000017, 0.0525666662, 0.0516333319, 0.0515000001, 0.0513999984, 0.0513999984, 0.0513000004, 0.050433334, 0.0504000001, 0.0502333343, 0.0501666665, 0.0496999994, 0.0495333336, 0.0492666662, 0.0491999984, 0.0489999987, 0.0487000011, 0.0472999997, 0.0468333326, 0.0467333347}'::real[], '{0.0426800177}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{18, 4, 3, 2, 1, 17, 9, 8, 12, 7, 10, 6, 19, 15, 11, 16, 5, 20, 13, 14}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t5'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k1'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.052233335, 0.0516, 0.051433332, 0.0514, 0.0508, 0.0508, 0.05073333, 0.050633334, 0.050633334, 0.050633334, 0.050333332, 0.050166667, 0.049866665, 0.049833335, 0.049766667, 0.048566666, 0.0485, 0.047733333, 0.047666665, 0.046666667}'::real[], '{1}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{10, 4, 2, 5, 13, 15, 19, 7, 14, 16, 3, 11, 9, 12, 17, 1, 18, 20, 8, 6}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t5'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k2'); -INSERT INTO pg_statistic VALUES ('public.t5'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k2'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0526666678, 0.0524000004, 0.0513666682, 0.0510333329, 0.0509666651, 0.050433334, 0.0504000001, 0.0502666682, 0.0502666682, 0.0502333343, 0.0499333329, 0.0496666655, 0.0494333319, 0.049333334, 0.049333334, 0.0492666662, 0.0486666672, 0.0485333316, 0.0481333323, 0.0476666652}'::real[], '{0.0537041165}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{17, 7, 15, 20, 16, 6, 2, 4, 11, 3, 10, 5, 14, 8, 18, 12, 9, 13, 19, 1}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t5'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k2'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.051966667, 0.051933333, 0.0518, 0.050966665, 0.050933335, 0.0507, 0.0507, 0.050366666, 0.050133333, 0.049866665, 0.0498, 0.049533334, 0.0495, 0.049433332, 0.049266666, 0.049233332, 0.0492, 0.049133334, 0.047966667, 0.047566667}'::real[], '{0.11118402}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{16, 18, 13, 5, 14, 6, 10, 19, 8, 7, 17, 2, 9, 20, 12, 4, 1, 11, 15, 3}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t5'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k3'); -INSERT INTO pg_statistic VALUES ('public.t5'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k3'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0528333336, 0.0521666668, 0.0510666668, 0.050933335, 0.0508666672, 0.0508333333, 0.0507333316, 0.0507000014, 0.0506666675, 0.0499333329, 0.0499333329, 0.0498000011, 0.0496666655, 0.0494666658, 0.0489000008, 0.0489000008, 0.0487999991, 0.0483999997, 0.0478666648, 0.0475333333}'::real[], '{0.0434316583}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{7, 17, 18, 10, 9, 1, 5, 6, 13, 3, 4, 16, 19, 11, 15, 20, 8, 14, 2, 12}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t5'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k3'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0528, 0.0521, 0.052, 0.0515, 0.050866667, 0.050633334, 0.0503, 0.050233334, 0.050166667, 0.0501, 0.049966667, 0.0495, 0.0494, 0.0493, 0.0492, 0.048933335, 0.048766665, 0.0484, 0.048333332, 0.0475}'::real[], '{0.04169254}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{6, 20, 8, 10, 19, 17, 13, 9, 7, 12, 1, 2, 14, 11, 16, 18, 3, 5, 15, 4}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t5'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k4'); -INSERT INTO pg_statistic VALUES ('public.t5'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k4'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0527000017, 0.0526000001, 0.0513000004, 0.0512333326, 0.0510666668, 0.050999999, 0.0509000011, 0.0508333333, 0.0507000014, 0.0506666675, 0.0501666665, 0.0499666668, 0.0496000014, 0.0494666658, 0.0493000001, 0.0489666648, 0.0483666658, 0.0481333323, 0.0478000008, 0.0452333316}'::real[], '{0.0467358306}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{18, 10, 15, 14, 2, 3, 4, 12, 7, 16, 19, 5, 20, 17, 13, 1, 9, 11, 8, 6}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t5'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k4'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.052366666, 0.051733334, 0.051666666, 0.051133335, 0.0507, 0.0503, 0.05026667, 0.050133333, 0.050033335, 0.05, 0.05, 0.049666665, 0.049566668, 0.049533334, 0.049466666, 0.0493, 0.048633333, 0.048566666, 0.0485, 0.048433334}'::real[], '{0.05410762}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{20, 2, 19, 7, 11, 14, 13, 17, 5, 1, 16, 15, 8, 18, 12, 3, 10, 6, 4, 9}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t5'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k5'); -INSERT INTO pg_statistic VALUES ('public.t5'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k5'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0513000004, 0.0509000011, 0.0509000011, 0.0507333316, 0.0504000001, 0.0502666682, 0.0502666682, 0.0500666648, 0.0500333346, 0.0500333346, 0.0500333346, 0.0499666668, 0.0499666668, 0.0496333316, 0.0495666675, 0.0494333319, 0.0494333319, 0.0493000001, 0.0489666648, 0.0487999991}'::real[], '{0.06026062}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{14, 5, 9, 18, 6, 1, 20, 15, 11, 16, 19, 3, 12, 13, 4, 8, 17, 10, 7, 2}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t5'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k5'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.051466666, 0.051233333, 0.051166665, 0.050833333, 0.050766665, 0.05073333, 0.05073333, 0.050633334, 0.050566666, 0.050166667, 0.0501, 0.050033335, 0.04963333, 0.049566668, 0.0494, 0.0493, 0.048933335, 0.0489, 0.0489, 0.046933334}'::real[], '{0.040591933}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{15, 6, 9, 2, 19, 4, 13, 16, 1, 12, 14, 3, 11, 10, 20, 5, 8, 7, 17, 18}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.tcor_1'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_1'::regclass and a.attname = 'k1'); +INSERT INTO pg_statistic VALUES ('public.tcor_1'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_1'::regclass and a.attname = 'k1'), False::boolean, 0::real, 4::integer, 11::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.09992}'::real[], '{0.08880379}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 0}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.tcor_1'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_1'::regclass and a.attname = 'k2'); +INSERT INTO pg_statistic VALUES ('public.tcor_1'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_1'::regclass and a.attname = 'k2'), False::boolean, 0::real, 4::integer, 51::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.01992}'::real[], '{0.008795089}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 0}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.tcor_1'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_1'::regclass and a.attname = 'k3'); +INSERT INTO pg_statistic VALUES ('public.tcor_1'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_1'::regclass and a.attname = 'k3'), False::boolean, 0::real, 4::integer, 251::real, 1::smallint, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004}'::real[], NULL::real[], '{-0.0074793934}'::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100}', 'pg_catalog.int4'::regtype, -1)::anyarray, array_in('{0, 101, 103, 104, 106, 107, 109, 110, 112, 113, 115, 116, 118, 119, 121, 122, 124, 125, 127, 128, 130, 131, 133, 134, 136, 137, 139, 140, 142, 143, 145, 146, 148, 149, 151, 152, 154, 155, 157, 158, 160, 161, 163, 164, 166, 167, 169, 170, 172, 173, 175, 176, 178, 179, 181, 182, 184, 185, 187, 188, 190, 191, 193, 194, 196, 197, 199, 200, 202, 203, 205, 206, 208, 209, 211, 212, 214, 215, 217, 218, 220, 221, 223, 224, 226, 227, 229, 230, 232, 233, 235, 236, 238, 239, 241, 242, 244, 245, 247, 248, 250}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.tcor_1'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_1'::regclass and a.attname = 'k4'); +INSERT INTO pg_statistic VALUES ('public.tcor_1'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_1'::regclass and a.attname = 'k4'), False::boolean, 0::real, 4::integer, 50::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02}'::real[], '{0.021729141}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.tcor_2'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_2'::regclass and a.attname = 'k1'); +INSERT INTO pg_statistic VALUES ('public.tcor_2'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_2'::regclass and a.attname = 'k1'), False::boolean, 0::real, 4::integer, 18::real, 1::smallint, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.18936667, 0.18833333, 0.15046667, 0.1499, 0.09246667, 0.09243333, 0.045433335, 0.0443, 0.017966667, 0.017866667, 0.0046, 0.004166667, 0.0012, 0.0009666667}'::real[], NULL::real[], '{0.14629024}'::real[], NULL::real[], NULL::real[], array_in('{0, -1, 1, -2, 2, -3, -4, 3, -5, 4, -6, 5, -7, 6}', 'pg_catalog.int4'::regtype, -1)::anyarray, array_in('{-9, -8, 7, 8}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.tcor_2'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_2'::regclass and a.attname = 'k2'); +INSERT INTO pg_statistic VALUES ('public.tcor_2'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_2'::regclass and a.attname = 'k2'), False::boolean, 0::real, 4::integer, 17::real, 1::smallint, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.1924, 0.19173333, 0.15066667, 0.14873333, 0.09173334, 0.0902, 0.045633335, 0.044233333, 0.0161, 0.015466667, 0.0054, 0.0051, 0.0012666667, 0.001}'::real[], NULL::real[], '{0.14077911}'::real[], NULL::real[], NULL::real[], array_in('{-1, 0, 1, -2, 2, -3, -4, 3, -5, 4, 5, -6, -7, 6}', 'pg_catalog.int4'::regtype, -1)::anyarray, array_in('{-8, 7, 8}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.tcor_2'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_2'::regclass and a.attname = 'k3'); +INSERT INTO pg_statistic VALUES ('public.tcor_2'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_2'::regclass and a.attname = 'k3'), False::boolean, 0::real, 4::integer, 18::real, 1::smallint, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.19436666, 0.1893, 0.14933333, 0.14896667, 0.0927, 0.091133334, 0.045466665, 0.0434, 0.016366666, 0.0161, 0.0050333333, 0.005, 0.0012666667, 0.0010333334}'::real[], NULL::real[], '{0.14582634}'::real[], NULL::real[], NULL::real[], array_in('{0, -1, 1, -2, -3, 2, -4, 3, -5, 4, -6, 5, 6, -7}', 'pg_catalog.int4'::regtype, -1)::anyarray, array_in('{-9, -8, 7, 8}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.tcor_2'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_2'::regclass and a.attname = 'k4'); +INSERT INTO pg_statistic VALUES ('public.tcor_2'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_2'::regclass and a.attname = 'k4'), False::boolean, 0::real, 4::integer, 17::real, 1::smallint, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.1918, 0.18863334, 0.15426667, 0.14693333, 0.0936, 0.0908, 0.044466667, 0.044333335, 0.0168, 0.015133333, 0.0058333334, 0.005133333, 0.001, 0.00093333336}'::real[], NULL::real[], '{0.12975658}'::real[], NULL::real[], NULL::real[], array_in('{-1, 0, -2, 1, 2, -3, 3, -4, -5, 4, 5, -6, 6, -7}', 'pg_catalog.int4'::regtype, -1)::anyarray, array_in('{-9, 7, 7}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.tcor_3'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_3'::regclass and a.attname = 'k1'); +INSERT INTO pg_statistic VALUES ('public.tcor_3'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_3'::regclass and a.attname = 'k1'), False::boolean, 0::real, 4::integer, 98::real, 1::smallint, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0305, 0.029366666, 0.028533334, 0.027166666, 0.027033333, 0.026466666, 0.0262, 0.025466667, 0.025066666, 0.025, 0.023066666, 0.022766666, 0.0224, 0.0223, 0.022066666, 0.021333333, 0.0212, 0.020433333, 0.0201, 0.019233333, 0.0187, 0.018566666, 0.0178, 0.0174, 0.016666668, 0.016633334, 0.016366666, 0.015733333, 0.015533334, 0.014733333, 0.014433334, 0.013933334, 0.0139, 0.0134333335, 0.012633333, 0.012233334, 0.011666667, 0.011566667, 0.0112, 0.011033333, 0.010866666, 0.010566667, 0.0105, 0.009433334, 0.0091, 0.008933334, 0.0083, 0.0082, 0.008033333, 0.007866667, 0.0077333334, 0.0075333333, 0.007333333, 0.0063333334, 0.0058, 0.005633333, 0.0055333334, 0.0054, 0.005266667, 0.004766667, 0.0047, 0.0046666665, 0.0045333332, 0.004466667, 0.0038333333, 0.0035666667, 0.0034333332, 0.0034, 0.0029666666, 0.0029333334, 0.0028666668, 0.0022666666, 0.0021333334, 0.0020666667, 0.0019666667, 0.0018333333, 0.0017333333, 0.0017, 0.0015333333, 0.0015, 0.0012, 0.0010666667, 0.001, 0.0008, 0.00076666666, 0.00066666666, 0.00053333334, 0.00053333334}'::real[], NULL::real[], '{0.02486376}'::real[], NULL::real[], NULL::real[], array_in('{99, 100, 96, 97, 98, 93, 95, 94, 92, 91, 88, 89, 90, 87, 86, 84, 83, 85, 82, 81, 80, 79, 78, 77, 73, 76, 75, 70, 72, 74, 71, 69, 68, 67, 65, 66, 63, 61, 59, 62, 64, 58, 60, 56, 57, 55, 52, 50, 54, 49, 53, 51, 48, 47, 45, 46, 42, 43, 44, 41, 38, 40, 37, 39, 36, 33, 34, 32, 35, 30, 31, 27, 29, 26, 24, 25, 23, 28, 22, 21, 20, 18, 19, 16, 17, 14, 11, 15}', 'pg_catalog.int4'::regtype, -1)::anyarray, array_in('{1, 6, 7, 9, 9, 10, 12, 12, 13, 13}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.tcor_3'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_3'::regclass and a.attname = 'k2'); +INSERT INTO pg_statistic VALUES ('public.tcor_3'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_3'::regclass and a.attname = 'k2'), False::boolean, 0::real, 4::integer, 100::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0158, 0.015433333, 0.015233333, 0.015233333, 0.015, 0.014966667, 0.014833333, 0.014766667, 0.014733333, 0.014733333, 0.014666666, 0.014666666, 0.014633333, 0.0145333335, 0.014366667, 0.014366667, 0.014266667, 0.014266667, 0.014233333, 0.014166667, 0.014166667, 0.014166667, 0.014066666, 0.0139, 0.013766667, 0.013733333, 0.013666667, 0.013633333, 0.013633333, 0.0136, 0.013333334, 0.0133, 0.0131, 0.013033333, 0.013033333, 0.012933333, 0.012933333, 0.012866667, 0.012666667, 0.012666667, 0.012633333, 0.0125, 0.012433333, 0.012433333, 0.0122, 0.011733334, 0.011666667, 0.0115, 0.0115, 0.0113, 0.011266666, 0.011166667, 0.0107, 0.0105, 0.010433333, 0.0103, 0.0101666665, 0.0101, 0.009766666, 0.009433334, 0.0092, 0.0088, 0.008766667, 0.008633333, 0.008433334, 0.008433334, 0.0084, 0.008333334, 0.008233333, 0.008233333, 0.0081, 0.008033333, 0.0078, 0.0072666667, 0.0064, 0.0063333334, 0.006233333, 0.0061666667, 0.0061666667, 0.006, 0.0059666666, 0.0054666665, 0.004766667, 0.0046, 0.0043, 0.0041333335, 0.0035333333, 0.0035, 0.0034666667, 0.0032, 0.003, 0.0024666667, 0.0022666666, 0.0018, 0.0016333334, 0.0016, 0.0014, 0.0010333334, 0.00056666665, 0.0005}'::real[], '{0.024258668}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{50, 59, 47, 54, 62, 49, 44, 57, 42, 48, 38, 43, 55, 52, 45, 46, 56, 64, 68, 51, 53, 61, 41, 39, 37, 36, 66, 35, 65, 40, 63, 58, 67, 29, 33, 32, 60, 34, 30, 69, 71, 72, 31, 73, 75, 25, 74, 26, 70, 28, 22, 27, 76, 79, 78, 24, 23, 77, 21, 82, 20, 83, 81, 84, 18, 85, 80, 16, 15, 17, 86, 14, 19, 87, 90, 88, 10, 11, 13, 12, 89, 91, 92, 9, 93, 8, 95, 6, 94, 5, 7, 96, 4, 97, 3, 98, 99, 2, 100, 1}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.tcor_3'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_3'::regclass and a.attname = 'k3'); +INSERT INTO pg_statistic VALUES ('public.tcor_3'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_3'::regclass and a.attname = 'k3'), False::boolean, 0::real, 4::integer, 98::real, 1::smallint, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.029266667, 0.028866667, 0.0276, 0.027566666, 0.026766667, 0.026633333, 0.026366666, 0.026, 0.025866667, 0.025733333, 0.024833333, 0.0233, 0.022333333, 0.021733332, 0.021066668, 0.021066668, 0.020766666, 0.020633332, 0.019433333, 0.019033333, 0.019033333, 0.018833334, 0.018266667, 0.018133333, 0.017533334, 0.0164, 0.016333334, 0.015866667, 0.0145, 0.0145, 0.0143, 0.0143, 0.014, 0.012933333, 0.0129, 0.012666667, 0.011766667, 0.0114, 0.0112, 0.0109, 0.0105, 0.009966667, 0.009666666, 0.009466667, 0.0093, 0.0090333335, 0.008333334, 0.0082, 0.008133333, 0.008, 0.0073, 0.0068666665, 0.0067666667, 0.006733333, 0.006366667, 0.0063, 0.0062, 0.0056666667, 0.0056, 0.0049, 0.004833333, 0.0048, 0.0043666665, 0.004, 0.0037, 0.0036333334, 0.0034333332, 0.0032333334, 0.0030666667, 0.0028333333, 0.0025333334, 0.0025, 0.0022, 0.0021666666, 0.002, 0.0018666667, 0.0016666667, 0.0016, 0.0015666666, 0.0015333333, 0.0011333333, 0.0011, 0.0011, 0.00083333335, 0.00076666666, 0.0006, 0.0006, 0.00046666668, 0.0004, 0.00036666667, 0.00036666667}'::real[], NULL::real[], '{0.030713478}'::real[], NULL::real[], NULL::real[], array_in('{1, 4, 2, 3, 5, 6, 10, 9, 8, 7, 13, 11, 12, 15, 17, 18, 14, 16, 19, 20, 24, 22, 21, 26, 23, 25, 27, 28, 29, 34, 30, 32, 31, 37, 33, 35, 36, 39, 38, 41, 43, 40, 45, 44, 42, 46, 47, 48, 50, 49, 51, 53, 52, 55, 56, 54, 57, 59, 58, 63, 60, 62, 61, 64, 66, 68, 65, 70, 67, 69, 71, 74, 75, 72, 73, 77, 76, 80, 79, 78, 83, 82, 84, 81, 85, 86, 87, 88, 89, 90, 92}', 'pg_catalog.int4'::regtype, -1)::anyarray, array_in('{91, 91, 93, 94, 95, 96, 98}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL); update pg_yb_catalog_version set current_version=current_version+1 where db_oid=1; SET yb_non_ddl_txn_for_sys_tables_allowed = OFF; SET pg_hint_plan.enable_hint = ON; @@ -244,34 +280,34 @@ EXPLAIN (COSTS OFF) SELECT * FROM t1 WHERE k1 >= 4 and k1 < 14; -- Query Hash: 4772a64709ca191fa2b2096f159e5f3f EXPLAIN (COSTS OFF) SELECT * FROM t2 WHERE k2 >= 4 and k2 < 14; - QUERY PLAN ---------------------------------------------- - Seq Scan on t2 - Storage Filter: ((k2 >= 4) AND (k2 < 14)) + QUERY PLAN +----------------------------------------- + Index Scan using t2_pkey on t2 + Index Cond: ((k2 >= 4) AND (k2 < 14)) (2 rows) -- Query Hash: 24dc55c74b331ad4fd956ac9b6400d8d EXPLAIN (COSTS OFF) SELECT * FROM t3 WHERE k3 >= 4 and k3 < 14; - QUERY PLAN ---------------------------------------------- - Seq Scan on t3 - Storage Filter: ((k3 >= 4) AND (k3 < 14)) + QUERY PLAN +----------------------------------------- + Index Scan using t3_pkey on t3 + Index Cond: ((k3 >= 4) AND (k3 < 14)) (2 rows) -- Query Hash: f425b12c4a6d8d734c69e50afeff04ed EXPLAIN (COSTS OFF) SELECT * FROM t4 WHERE k4 >= 4 and k4 < 14; - QUERY PLAN ---------------------------------------------- - Seq Scan on t4 - Storage Filter: ((k4 >= 4) AND (k4 < 14)) + QUERY PLAN +----------------------------------------- + Index Scan using t4_pkey on t4 + Index Cond: ((k4 >= 4) AND (k4 < 14)) (2 rows) --- Query Hash: 7d901f98ab781317763d9915875de118 +-- Query Hash: 7d901f98ab781317763d9915875de118 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM t5 WHERE k5 >= 4 and k5 < 14; - QUERY PLAN ---------------------------------------------- - Seq Scan on t5 - Storage Filter: ((k5 >= 4) AND (k5 < 14)) + QUERY PLAN +----------------------------------------- + Index Scan using t5_pkey on t5 + Index Cond: ((k5 >= 4) AND (k5 < 14)) (2 rows) -- Query Hash: b5562a3ef44a737b2846f0975cf9e1c7 @@ -282,7 +318,7 @@ EXPLAIN (COSTS OFF) SELECT * FROM t1 WHERE k1 IN (4, 8); Index Cond: (k1 = ANY ('{4,8}'::integer[])) (2 rows) --- Query Hash: 6a8ead9b8b122eea0e5460236bc6c19b +-- Query Hash: 6a8ead9b8b122eea0e5460236bc6c19b , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM t1 WHERE k1 IN (4, 8, 12); QUERY PLAN -------------------------------------------------- @@ -292,10 +328,10 @@ EXPLAIN (COSTS OFF) SELECT * FROM t1 WHERE k1 IN (4, 8, 12); -- Query Hash: d7eedc71bffb36fa0152da8c08bf7808 EXPLAIN (COSTS OFF) SELECT * FROM t1 WHERE k1 IN (4, 8, 12, 16); - QUERY PLAN ---------------------------------------------------------- - Seq Scan on t1 - Storage Filter: (k1 = ANY ('{4,8,12,16}'::integer[])) + QUERY PLAN +----------------------------------------------------- + Index Scan using t1_pkey on t1 + Index Cond: (k1 = ANY ('{4,8,12,16}'::integer[])) (2 rows) -- Query Hash: 3a022df927f53a2864f9d95af72fee58 @@ -308,10 +344,298 @@ EXPLAIN (COSTS OFF) SELECT * FROM t2 WHERE k1 IN (4, 8, 12, 16); -- Query Hash: 8c7bf857d9e088af7a4b5c904c5b8610 EXPLAIN (COSTS OFF) SELECT * FROM t2 WHERE k2 IN (4, 8, 12, 16); - QUERY PLAN ---------------------------------------------------------- - Seq Scan on t2 - Storage Filter: (k2 = ANY ('{4,8,12,16}'::integer[])) + QUERY PLAN +----------------------------------------------------- + Index Scan using t2_pkey on t2 + Index Cond: (k2 = ANY ('{4,8,12,16}'::integer[])) +(2 rows) + +-- Query Hash: 5d91fd582d63d5cb7df1e3face8067d5 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_1 WHERE k1 < 5; + QUERY PLAN +-------------------------------------------- + Index Only Scan using tcor_1_idx on tcor_1 + Index Cond: (k1 < 5) +(2 rows) + +-- Query Hash: 979b459461ba7b840826695627007334 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_1 WHERE k2 < 25; + QUERY PLAN +-------------------------------------------- + Index Only Scan using tcor_1_idx on tcor_1 + Index Cond: (k2 < 25) +(2 rows) + +-- Query Hash: 9a8420c43a0a8e1661e5d1ac9bdd62b0 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_1 WHERE k3 < 125; + QUERY PLAN +-------------------------------------------- + Index Only Scan using tcor_1_idx on tcor_1 + Index Cond: (k3 < 125) +(2 rows) + +-- Query Hash: 3324c9ff1941acab32f5415abd90c0c4 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_1 WHERE k4 < 25; + QUERY PLAN +-------------------------------------------- + Index Only Scan using tcor_1_idx on tcor_1 + Index Cond: (k4 < 25) +(2 rows) + +-- Query Hash: adbcbd6fb6decb44cd3d786bf910e5d4 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_1 WHERE k1 < 5 AND k2 < 25; + QUERY PLAN +-------------------------------------------- + Index Only Scan using tcor_1_idx on tcor_1 + Index Cond: ((k1 < 5) AND (k2 < 25)) +(2 rows) + +-- Query Hash: 25bd3b427c6c6786ffd4bb1ac43d50c9 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_1 WHERE k1 < 5 AND k3 < 125; + QUERY PLAN +-------------------------------------------- + Index Only Scan using tcor_1_idx on tcor_1 + Index Cond: ((k1 < 5) AND (k3 < 125)) +(2 rows) + +-- Query Hash: c51689b307246763709d95761488c01e +EXPLAIN (COSTS OFF) SELECT * FROM tcor_1 WHERE k1 < 5 AND k4 < 25; + QUERY PLAN +-------------------------------------------- + Index Only Scan using tcor_1_idx on tcor_1 + Index Cond: ((k1 < 5) AND (k4 < 25)) +(2 rows) + +-- Query Hash: f2621d436cb67e9e38c733ba36c6e3bd +EXPLAIN (COSTS OFF) SELECT * FROM tcor_1 WHERE k2 < 25 AND k3 < 125; + QUERY PLAN +-------------------------------------------- + Index Only Scan using tcor_1_idx on tcor_1 + Index Cond: ((k2 < 25) AND (k3 < 125)) +(2 rows) + +-- Query Hash: c60cbde271e15ebbb324c337b8219e11 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_1 WHERE k2 < 25 AND k4 < 25; + QUERY PLAN +-------------------------------------------- + Index Only Scan using tcor_1_idx on tcor_1 + Index Cond: ((k2 < 25) AND (k4 < 25)) +(2 rows) + +-- Query Hash: 9be0c8a2b6797d336f5d43b76e18be46 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_1 WHERE k3 < 125 AND k4 < 25; + QUERY PLAN +-------------------------------------------- + Index Only Scan using tcor_1_idx on tcor_1 + Index Cond: ((k3 < 125) AND (k4 < 25)) +(2 rows) + +-- Query Hash: 4fe07880e09bf7812010c348aae8a57d +EXPLAIN (COSTS OFF) SELECT * FROM tcor_1 WHERE k1 < 5 AND k2 < 25 AND k3 < 125 AND k4 < 25; + QUERY PLAN +--------------------------------------------------------------------- + Index Only Scan using tcor_1_idx on tcor_1 + Index Cond: ((k1 < 5) AND (k2 < 25) AND (k3 < 125) AND (k4 < 25)) +(2 rows) + +-- Query Hash: aaa7d9c764b2723a7495d33f609ab200 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_2 WHERE k1 < 0; + QUERY PLAN +-------------------------------------------- + Index Only Scan using tcor_2_idx on tcor_2 + Index Cond: (k1 < 0) +(2 rows) + +-- Query Hash: 540441b5cf77f76d10f510ba04556e3d +EXPLAIN (COSTS OFF) SELECT * FROM tcor_2 WHERE k2 < 0; + QUERY PLAN +-------------------------------------------- + Index Only Scan using tcor_2_idx on tcor_2 + Index Cond: (k2 < 0) +(2 rows) + +-- Query Hash: 3b525b570874f819873f09cd386b2c10 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_2 WHERE k3 < 0; + QUERY PLAN +-------------------------------------------- + Index Only Scan using tcor_2_idx on tcor_2 + Index Cond: (k3 < 0) +(2 rows) + +-- Query Hash: 90c6e6321ee74099b07569d8aa7e9f05 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_2 WHERE k4 < 0; + QUERY PLAN +-------------------------------------------- + Index Only Scan using tcor_2_idx on tcor_2 + Index Cond: (k4 < 0) +(2 rows) + +-- Query Hash: 4d05ca97a12862a4a513929f249524ea +EXPLAIN (COSTS OFF) SELECT * FROM tcor_2 WHERE k1 < 0 AND k2 < 0; + QUERY PLAN +-------------------------------------------- + Index Only Scan using tcor_2_idx on tcor_2 + Index Cond: ((k1 < 0) AND (k2 < 0)) +(2 rows) + +-- Query Hash: 89c00f63e767513c6aa3d08cb9b55f0b +EXPLAIN (COSTS OFF) SELECT * FROM tcor_2 WHERE k1 < 0 AND k3 < 0; + QUERY PLAN +-------------------------------------------- + Index Only Scan using tcor_2_idx on tcor_2 + Index Cond: ((k1 < 0) AND (k3 < 0)) +(2 rows) + +-- Query Hash: cc71e17fa039883b7e8fd219533c8285 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_2 WHERE k1 < 0 AND k4 < 0; + QUERY PLAN +-------------------------------------------- + Index Only Scan using tcor_2_idx on tcor_2 + Index Cond: ((k1 < 0) AND (k4 < 0)) +(2 rows) + +-- Query Hash: 60229f8796efe228e27d959b0ea59781 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_2 WHERE k2 < 0 AND k3 < 0; + QUERY PLAN +-------------------------------------------- + Index Only Scan using tcor_2_idx on tcor_2 + Index Cond: ((k2 < 0) AND (k3 < 0)) +(2 rows) + +-- Query Hash: 1a883df555044f269f4dc699156a8594 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_2 WHERE k2 < 0 AND k4 < 0; + QUERY PLAN +-------------------------------------------- + Index Only Scan using tcor_2_idx on tcor_2 + Index Cond: ((k2 < 0) AND (k4 < 0)) +(2 rows) + +-- Query Hash: 4566c9cfd7224af62bb14a7dd6cf429f +EXPLAIN (COSTS OFF) SELECT * FROM tcor_2 WHERE k3 < 0 AND k4 < 0; + QUERY PLAN +-------------------------------------------- + Index Only Scan using tcor_2_idx on tcor_2 + Index Cond: ((k3 < 0) AND (k4 < 0)) +(2 rows) + +-- Query Hash: 18f5729f5f6a432245c96e7c6ce13cbe +EXPLAIN (COSTS OFF) SELECT * FROM tcor_2 WHERE k1 < 0 AND k2 < 0 AND k3 < 0 AND k4 < 0; + QUERY PLAN +----------------------------------------------------------------- + Index Only Scan using tcor_2_idx on tcor_2 + Index Cond: ((k1 < 0) AND (k2 < 0) AND (k3 < 0) AND (k4 < 0)) +(2 rows) + +-- Query Hash: 51d11a69af237d21a0f439680ae11e86 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k1 > 50 and k3 > 50; + QUERY PLAN +-------------------------------------------- + Index Only Scan using tcor_3_idx on tcor_3 + Index Cond: ((k1 > 50) AND (k3 > 50)) +(2 rows) + +-- Query Hash: b0418f7b0f73ba0a1e09526703b0ec60 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k2 > 50 and k3 > 50; + QUERY PLAN +-------------------------------------------- + Index Only Scan using tcor_3_idx on tcor_3 + Index Cond: ((k2 > 50) AND (k3 > 50)) +(2 rows) + +-- Query Hash: 162202d912755f260a7ba158aaa656e7 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k1 > 50 and k2 > 50; + QUERY PLAN +-------------------------------------------- + Index Only Scan using tcor_3_idx on tcor_3 + Index Cond: ((k1 > 50) AND (k2 > 50)) +(2 rows) + +-- Query Hash: 92961ecf4a4a096b80054048f778d525 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k1 = 50 AND k3 > 50; + QUERY PLAN +-------------------------------------------- + Index Only Scan using tcor_3_idx on tcor_3 + Index Cond: ((k1 = 50) AND (k3 > 50)) +(2 rows) + +-- Query Hash: 375c8ae3f86b5dbba917c7108e42b918 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k1 = 50 AND k3 > 50 AND k3 < 80; + QUERY PLAN +------------------------------------------------------- + Index Only Scan using tcor_3_idx on tcor_3 + Index Cond: ((k1 = 50) AND (k3 > 50) AND (k3 < 80)) +(2 rows) + +-- Query Hash: d729eb647c6857e30897b4b4a6fec1be +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k2 = 50 AND k3 > 50; + QUERY PLAN +-------------------------------------------- + Index Only Scan using tcor_3_idx on tcor_3 + Index Cond: ((k2 = 50) AND (k3 > 50)) +(2 rows) + +-- Query Hash: b57c1e01bf6b6658b86167fc6df13845 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k2 = 50 AND k3 > 50 AND k3 < 80; + QUERY PLAN +------------------------------------------------------- + Index Only Scan using tcor_3_idx on tcor_3 + Index Cond: ((k2 = 50) AND (k3 > 50) AND (k3 < 80)) +(2 rows) + +-- Query Hash: 024fb5b577416303e3777892ea2f02c9 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k3 = 50 AND k2 > 50; + QUERY PLAN +-------------------------------------------- + Index Only Scan using tcor_3_idx on tcor_3 + Index Cond: ((k2 > 50) AND (k3 = 50)) +(2 rows) + +-- Query Hash: d271787b745e12b73f1d71efdf25856c +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k3 = 50 AND k2 > 50 AND k2 < 80; + QUERY PLAN +------------------------------------------------------- + Index Only Scan using tcor_3_idx on tcor_3 + Index Cond: ((k2 > 50) AND (k2 < 80) AND (k3 = 50)) +(2 rows) + +-- Query Hash: 16a4b2ae22250f600cc8ddd60a443049 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k2 IN (50, 60, 70, 80) AND k3 > 50; + QUERY PLAN +----------------------------------------------------------------------- + Index Only Scan using tcor_3_idx on tcor_3 + Index Cond: ((k2 = ANY ('{50,60,70,80}'::integer[])) AND (k3 > 50)) +(2 rows) + +-- Query Hash: 32a970e0cc5bed5898970ed39860a744 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k2 IN (50, 60, 70, 80) AND k3 > 50 AND k3 < 80; + QUERY PLAN +------------------------------------------------------------------------------------- + Index Only Scan using tcor_3_idx on tcor_3 + Index Cond: ((k2 = ANY ('{50,60,70,80}'::integer[])) AND (k3 > 50) AND (k3 < 80)) +(2 rows) + +-- Query Hash: 4ae624260329d91797989cfec1fe32b3 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k1 IN (50, 60, 70, 80) AND k2 IN (50, 60, 70, 80); + QUERY PLAN +----------------------------------------------------------------------------------------------------- + Index Only Scan using tcor_3_idx on tcor_3 + Index Cond: ((k1 = ANY ('{50,60,70,80}'::integer[])) AND (k2 = ANY ('{50,60,70,80}'::integer[]))) +(2 rows) + +-- Query Hash: 17c4b34da306f3aab063529002052144 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k1 IN (50, 60, 70, 80) AND k3 IN (50, 60, 70, 80); + QUERY PLAN +----------------------------------------------------------------------------------------------------- + Index Only Scan using tcor_3_idx on tcor_3 + Index Cond: ((k1 = ANY ('{50,60,70,80}'::integer[])) AND (k3 = ANY ('{50,60,70,80}'::integer[]))) +(2 rows) + +-- Query Hash: b457f2828cc6c6beded8e0b71b63a624 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k2 IN (50, 60, 70, 80) AND k3 IN (50, 60, 70, 80); + QUERY PLAN +----------------------------------------------------------------------------------------------------- + Index Only Scan using tcor_3_idx on tcor_3 + Index Cond: ((k2 = ANY ('{50,60,70,80}'::integer[])) AND (k3 = ANY ('{50,60,70,80}'::integer[]))) (2 rows) -- DROP QUERIES; @@ -320,3 +644,6 @@ DROP TABLE IF EXISTS t2 CASCADE; DROP TABLE IF EXISTS t3 CASCADE; DROP TABLE IF EXISTS t4 CASCADE; DROP TABLE IF EXISTS t5 CASCADE; +DROP TABLE IF EXISTS tcor_1 CASCADE; +DROP TABLE IF EXISTS tcor_2 CASCADE; +DROP TABLE IF EXISTS tcor_3 CASCADE; diff --git a/src/postgres/src/test/regress/expected/yb.orig.planner_taqo_tuning_tests.out b/src/postgres/src/test/regress/expected/yb.orig.planner_taqo_tuning_tests.out index be0c249e3c6a..d1ce6059f8ed 100644 --- a/src/postgres/src/test/regress/expected/yb.orig.planner_taqo_tuning_tests.out +++ b/src/postgres/src/test/regress/expected/yb.orig.planner_taqo_tuning_tests.out @@ -264,84 +264,148 @@ SET client_min_messages TO log; SET pg_hint_plan.message_level = debug; SET temp_file_limit="8182MB"; SET yb_enable_optimizer_statistics = true; set yb_bnl_batch_size = 1024; set yb_enable_base_scans_cost_model = true; --- Query Hash: 1dc3153f1e9ed56fa96c3cd1b27e0b07 -EXPLAIN (COSTS OFF) select * from t_range_100k order by id limit 2000; - QUERY PLAN ----------------------------------------------------------- +-- Query Hash: 0ae1b2c7ad80ee87ea1a825725fc1b96 +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 2000; + QUERY PLAN +------------------------------------------------------------------- + Limit + -> Index Scan Backward using t_range_100k_pkey on t_range_100k +(2 rows) + +-- Query Hash: cb836288722b7f2122d706f659be5d9c +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 4000; + QUERY PLAN +------------------------------------------------------------------- + Limit + -> Index Scan Backward using t_range_100k_pkey on t_range_100k +(2 rows) + +-- Query Hash: 9fb48d99472378a037a811caf7c9f996 +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 6000; + QUERY PLAN +------------------------------------------------------------------- + Limit + -> Index Scan Backward using t_range_100k_pkey on t_range_100k +(2 rows) + +-- Query Hash: 36ccbbab6ea9639cfe76e729f1cdfeea +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 8000; + QUERY PLAN +------------------------------------------------------------------- + Limit + -> Index Scan Backward using t_range_100k_pkey on t_range_100k +(2 rows) + +-- Query Hash: 8fd8b333bb580d2725c637d3a61b7fa0 +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 10000; + QUERY PLAN +------------------------------------------------------------------- + Limit + -> Index Scan Backward using t_range_100k_pkey on t_range_100k +(2 rows) + +-- Query Hash: 23163a76a92b03714752e71a0bb300cc +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 12000; + QUERY PLAN +------------------------------------------------------------------- + Limit + -> Index Scan Backward using t_range_100k_pkey on t_range_100k +(2 rows) + +-- Query Hash: a7a1a762f96b9445990d3057904a8f9b +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 14000; + QUERY PLAN +------------------------------------------------------------------- Limit - -> Index Scan using t_range_100k_pkey on t_range_100k + -> Index Scan Backward using t_range_100k_pkey on t_range_100k (2 rows) --- Query Hash: 19e6de1bb5bc99e4b305d7d4f9be0028 -EXPLAIN (COSTS OFF) select * from t_range_100k order by id limit 4000; - QUERY PLAN ----------------------------------------------------------- +-- Query Hash: 13026bfac847da1ec9f13fdaad5c39cf +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 16000; + QUERY PLAN +------------------------------------------------------------------- Limit - -> Index Scan using t_range_100k_pkey on t_range_100k + -> Index Scan Backward using t_range_100k_pkey on t_range_100k (2 rows) --- Query Hash: 0efcee232738078aef27b70f713cc484 -EXPLAIN (COSTS OFF) select * from t_range_100k order by id limit 6000; - QUERY PLAN ----------------------------------------------------------- +-- Query Hash: 90e1ac9dfdbd77fa5ad96b1fe3526a41 +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 18000; + QUERY PLAN +------------------------------------------------------------------- + Limit + -> Index Scan Backward using t_range_100k_pkey on t_range_100k +(2 rows) + +-- Query Hash: 90c2ad6894acac53c20efdd886e0fc03 +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 20000; + QUERY PLAN +------------------------------------------------------------------- + Limit + -> Index Scan Backward using t_range_100k_pkey on t_range_100k +(2 rows) + +-- Query Hash: 6a7aec1003782e720c65dc3f71aea7d9 +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 30000; + QUERY PLAN +------------------------------------------------------------------- Limit - -> Index Scan using t_range_100k_pkey on t_range_100k + -> Index Scan Backward using t_range_100k_pkey on t_range_100k (2 rows) --- Query Hash: f626b3f363d75388554214ce82da3083 -EXPLAIN (COSTS OFF) select * from t_range_100k order by id limit 8000; - QUERY PLAN ----------------------------------------------------------- +-- Query Hash: 4fd602403563a4e0f3e41c5ba997e69d +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 40000; + QUERY PLAN +------------------------------------------------------------------- Limit - -> Index Scan using t_range_100k_pkey on t_range_100k + -> Index Scan Backward using t_range_100k_pkey on t_range_100k (2 rows) --- Query Hash: 82d199503b78f0582855529e3df34c59 -EXPLAIN (COSTS OFF) select * from t_range_100k order by id limit 10000; - QUERY PLAN ----------------------------------------------------------- +-- Query Hash: 7851294ed00745c200035bdcd0c1255d +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 50000; + QUERY PLAN +------------------------------------------------------------------- Limit - -> Index Scan using t_range_100k_pkey on t_range_100k + -> Index Scan Backward using t_range_100k_pkey on t_range_100k (2 rows) --- Query Hash: e913bdc386feddca13b58f33c8760e59 -EXPLAIN (COSTS OFF) select * from t_range_100k order by id limit 12000; - QUERY PLAN ----------------------------------------------------------- +-- Query Hash: 71dd3caa7a09c5c998aebea00ee660b9 +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 60000; + QUERY PLAN +------------------------------------------------------------------- Limit - -> Index Scan using t_range_100k_pkey on t_range_100k + -> Index Scan Backward using t_range_100k_pkey on t_range_100k (2 rows) --- Query Hash: 724bd9760155acd3327e33bd8fa7de3a -EXPLAIN (COSTS OFF) select * from t_range_100k order by id limit 14000; - QUERY PLAN ----------------------------------------------------------- +-- Query Hash: e0de7a3bdbda621312f9228b7e3e037f +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 70000; + QUERY PLAN +------------------------------------------------------------------- Limit - -> Index Scan using t_range_100k_pkey on t_range_100k + -> Index Scan Backward using t_range_100k_pkey on t_range_100k (2 rows) --- Query Hash: c1b8bcb5f59d75934225892a25d4253c -EXPLAIN (COSTS OFF) select * from t_range_100k order by id limit 16000; - QUERY PLAN ----------------------------------------------------------- +-- Query Hash: cf003cee7f2565711393de7bdd8e8011 +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 80000; + QUERY PLAN +------------------------------------------------------------------- Limit - -> Index Scan using t_range_100k_pkey on t_range_100k + -> Index Scan Backward using t_range_100k_pkey on t_range_100k (2 rows) --- Query Hash: 289e0e4114fb3f773f7b7001dd37b763 -EXPLAIN (COSTS OFF) select * from t_range_100k order by id limit 18000; - QUERY PLAN ----------------------------------------------------------- +-- Query Hash: 4c031d60065425d8f8d6b8c73e7e8619 +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 90000; + QUERY PLAN +------------------------------------------------------------------- Limit - -> Index Scan using t_range_100k_pkey on t_range_100k + -> Index Scan Backward using t_range_100k_pkey on t_range_100k (2 rows) --- Query Hash: bc18b6d99b63eb92ae718494d803ac5c -EXPLAIN (COSTS OFF) select * from t_range_100k order by id limit 20000; - QUERY PLAN ----------------------------------------------------------- +-- Query Hash: dc90be6cc64fd55c55c71587766b5d46 +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 100000; + QUERY PLAN +------------------------------------------------------------------- Limit - -> Index Scan using t_range_100k_pkey on t_range_100k + -> Index Scan Backward using t_range_100k_pkey on t_range_100k (2 rows) -- Query Hash: d0f652bb9a03d4d0079382c8a675ddf5 @@ -797,6 +861,38 @@ EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 70000; Index Cond: (id > 70000) (2 rows) +-- Query Hash: 986db5347ddb81dcd6d98e320aa33f04 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 72000; + QUERY PLAN +---------------------------------------------------- + Index Scan using t_range_100k_pkey on t_range_100k + Index Cond: (id > 72000) +(2 rows) + +-- Query Hash: f3f30a71ac9b1ea16a02df36af4353ef +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 74000; + QUERY PLAN +---------------------------------------------------- + Index Scan using t_range_100k_pkey on t_range_100k + Index Cond: (id > 74000) +(2 rows) + +-- Query Hash: 19ada938c02ed684fd0677fc7aed7bc7 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 76000; + QUERY PLAN +---------------------------------------------------- + Index Scan using t_range_100k_pkey on t_range_100k + Index Cond: (id > 76000) +(2 rows) + +-- Query Hash: 4f80c5b0c11ac167fb34a28a251f1194 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 78000; + QUERY PLAN +---------------------------------------------------- + Index Scan using t_range_100k_pkey on t_range_100k + Index Cond: (id > 78000) +(2 rows) + -- Query Hash: 4e55bca06a13c7c3d8a5e10eca420b18 EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 80000; QUERY PLAN @@ -805,6 +901,38 @@ EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 80000; Index Cond: (id > 80000) (2 rows) +-- Query Hash: 4c74d9b590210aaaa72ccdb149d91085 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 82000; + QUERY PLAN +---------------------------------------------------- + Index Scan using t_range_100k_pkey on t_range_100k + Index Cond: (id > 82000) +(2 rows) + +-- Query Hash: cd089249d1c61cdcc5ca790d5b653688 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 84000; + QUERY PLAN +---------------------------------------------------- + Index Scan using t_range_100k_pkey on t_range_100k + Index Cond: (id > 84000) +(2 rows) + +-- Query Hash: 5f4039a90e0f55a00b2673363f37e962 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 86000; + QUERY PLAN +---------------------------------------------------- + Index Scan using t_range_100k_pkey on t_range_100k + Index Cond: (id > 86000) +(2 rows) + +-- Query Hash: 77265cc8960831f9c3ae98bbb219ba3b +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 88000; + QUERY PLAN +---------------------------------------------------- + Index Scan using t_range_100k_pkey on t_range_100k + Index Cond: (id > 88000) +(2 rows) + -- Query Hash: 251f2300e2c1fec654e64f1541d5708a EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 90000; QUERY PLAN @@ -813,6 +941,38 @@ EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 90000; Index Cond: (id > 90000) (2 rows) +-- Query Hash: ce27c95232d85f7234f1617d0691e48b +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 92000; + QUERY PLAN +---------------------------------------------------- + Index Scan using t_range_100k_pkey on t_range_100k + Index Cond: (id > 92000) +(2 rows) + +-- Query Hash: efe0ba7993a60e6f0574444a42ec7300 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 94000; + QUERY PLAN +---------------------------------------------------- + Index Scan using t_range_100k_pkey on t_range_100k + Index Cond: (id > 94000) +(2 rows) + +-- Query Hash: de34f39ebd3fbac61ea83aec9c0e65fa +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 96000; + QUERY PLAN +---------------------------------------------------- + Index Scan using t_range_100k_pkey on t_range_100k + Index Cond: (id > 96000) +(2 rows) + +-- Query Hash: 4813e70171561585ad8308463c444d19 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 98000; + QUERY PLAN +---------------------------------------------------- + Index Scan using t_range_100k_pkey on t_range_100k + Index Cond: (id > 98000) +(2 rows) + -- Query Hash: 3d16e92a207f6d5d7d3da4add741ea21 EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 100000; QUERY PLAN @@ -1178,34 +1338,130 @@ EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 50000; -- Query Hash: ac57ffed7f517fe626541e9377a9fb1d EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 60000; - QUERY PLAN --------------------------------- - Seq Scan on t_range_100k - Storage Filter: (v1 > 60000) + QUERY PLAN +------------------------------------------- + Index Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 60000) (2 rows) -- Query Hash: d219120944637d070cd8b838064c485f EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 70000; - QUERY PLAN --------------------------------- - Seq Scan on t_range_100k - Storage Filter: (v1 > 70000) + QUERY PLAN +------------------------------------------- + Index Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 70000) +(2 rows) + +-- Query Hash: c7d782cdd7fcc2c484e0187ddf1c43df +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 72000; + QUERY PLAN +------------------------------------------- + Index Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 72000) +(2 rows) + +-- Query Hash: 147d440fc645807cc00ac11420080ac9 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 74000; + QUERY PLAN +------------------------------------------- + Index Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 74000) (2 rows) --- Query Hash: bf0d45764d65ec4810ab2dea43a34338 , !BEST_PLAN_FOUND +-- Query Hash: eef5fb62d364ea0b48697009cb911b58 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 76000; + QUERY PLAN +------------------------------------------- + Index Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 76000) +(2 rows) + +-- Query Hash: 91d98635ffb11f56f280745ab54f570e +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 78000; + QUERY PLAN +------------------------------------------- + Index Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 78000) +(2 rows) + +-- Query Hash: bf0d45764d65ec4810ab2dea43a34338 EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 80000; - QUERY PLAN --------------------------------- - Seq Scan on t_range_100k - Storage Filter: (v1 > 80000) + QUERY PLAN +------------------------------------------- + Index Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 80000) +(2 rows) + +-- Query Hash: ceabbc55afb9a4a4193778607789e9aa +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 82000; + QUERY PLAN +------------------------------------------- + Index Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 82000) +(2 rows) + +-- Query Hash: 7d6da8d19e40e895afc1d59725f4149b +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 84000; + QUERY PLAN +------------------------------------------- + Index Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 84000) +(2 rows) + +-- Query Hash: 46d57c485e42cf6160e4f6766c61d70e +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 86000; + QUERY PLAN +------------------------------------------- + Index Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 86000) +(2 rows) + +-- Query Hash: e3fec7fef395927d9f122ef652d4e9c3 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 88000; + QUERY PLAN +------------------------------------------- + Index Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 88000) (2 rows) --- Query Hash: f522aab9d236d3ed75ab2352fb500db6 , !BEST_PLAN_FOUND +-- Query Hash: f522aab9d236d3ed75ab2352fb500db6 EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 90000; - QUERY PLAN --------------------------------- - Seq Scan on t_range_100k - Storage Filter: (v1 > 90000) + QUERY PLAN +------------------------------------------- + Index Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 90000) +(2 rows) + +-- Query Hash: 9ced59c340c481755ad25e614605cca5 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 92000; + QUERY PLAN +------------------------------------------- + Index Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 92000) +(2 rows) + +-- Query Hash: 0ef9530c49a611869b810b515dc58a2f +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 94000; + QUERY PLAN +------------------------------------------- + Index Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 94000) +(2 rows) + +-- Query Hash: 0a8b5bdec387c90eae29d8ce92512fb6 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 96000; + QUERY PLAN +------------------------------------------- + Index Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 96000) +(2 rows) + +-- Query Hash: 62ef41e12087e95fda2d543e1462c85e +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 98000; + QUERY PLAN +------------------------------------------- + Index Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 98000) (2 rows) -- Query Hash: 0a188489b59c5498c04ae3dd3725e05d @@ -1312,6 +1568,38 @@ EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 70000; Index Cond: (v1 > 70000) (2 rows) +-- Query Hash: 42d7a5992cea72bbc2a48e7166e46522 +EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 72000; + QUERY PLAN +------------------------------------------------ + Index Only Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 72000) +(2 rows) + +-- Query Hash: 83baff4e3a9851892eb754fcc191b396 +EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 74000; + QUERY PLAN +------------------------------------------------ + Index Only Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 74000) +(2 rows) + +-- Query Hash: e9ec5166d77f198f360ab93eea091feb +EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 76000; + QUERY PLAN +------------------------------------------------ + Index Only Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 76000) +(2 rows) + +-- Query Hash: 56dff92acb689e82625486ea525fc3be +EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 78000; + QUERY PLAN +------------------------------------------------ + Index Only Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 78000) +(2 rows) + -- Query Hash: 9d150416c5e9f1bafef0c02900e2f348 EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 80000; QUERY PLAN @@ -1320,6 +1608,38 @@ EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 80000; Index Cond: (v1 > 80000) (2 rows) +-- Query Hash: 6e8c5256e03caadf87ef9ca5518c45cb +EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 82000; + QUERY PLAN +------------------------------------------------ + Index Only Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 82000) +(2 rows) + +-- Query Hash: 1461dc3913b71a82bf2a7fd78e1d272e +EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 84000; + QUERY PLAN +------------------------------------------------ + Index Only Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 84000) +(2 rows) + +-- Query Hash: f257496ae8eb45582a7b37a71e2aaa41 +EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 86000; + QUERY PLAN +------------------------------------------------ + Index Only Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 86000) +(2 rows) + +-- Query Hash: 1add8be714520d65ccc6b29b3df67b23 +EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 88000; + QUERY PLAN +------------------------------------------------ + Index Only Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 88000) +(2 rows) + -- Query Hash: 93882cc33b315e91d15864fae16cc319 EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 90000; QUERY PLAN @@ -1328,6 +1648,38 @@ EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 90000; Index Cond: (v1 > 90000) (2 rows) +-- Query Hash: a64735e1f218be12a9447f3807d3f18c +EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 92000; + QUERY PLAN +------------------------------------------------ + Index Only Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 92000) +(2 rows) + +-- Query Hash: ca543d4e151c1639704fef9181e4e5f6 +EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 94000; + QUERY PLAN +------------------------------------------------ + Index Only Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 94000) +(2 rows) + +-- Query Hash: 85236d3d0a38f8ac2d221cc68a16b56d +EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 96000; + QUERY PLAN +------------------------------------------------ + Index Only Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 96000) +(2 rows) + +-- Query Hash: 7436a2799d3b13a9bbf0147a994e87c9 +EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 98000; + QUERY PLAN +------------------------------------------------ + Index Only Scan using tr100kv1 on t_range_100k + Index Cond: (v1 > 98000) +(2 rows) + -- Query Hash: 347246381eaacf8d14a762997e0f7773 EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 100000; QUERY PLAN @@ -1336,6 +1688,366 @@ EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 100000; Index Cond: (v1 > 100000) (2 rows) +-- Query Hash: c2ec8c4aaf27f063ac4ec2836c0e0c75 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k WHERE id in (1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_100k_pkey on t_range_100k + Index Cond: (id = ANY ('{1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999}'::integer[])) +(2 rows) + +-- Query Hash: ae6ed708dd8b308817f5045a172349b6 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_200k WHERE id in (1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_200k_pkey on t_range_200k + Index Cond: (id = ANY ('{1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999}'::integer[])) +(2 rows) + +-- Query Hash: e8e944b6d706d78e27e59bb90b95e6f2 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_400k WHERE id in (1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_400k_pkey on t_range_400k + Index Cond: (id = ANY ('{1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999}'::integer[])) +(2 rows) + +-- Query Hash: 4fffcb14e09b5888af5d4dbec8cfa0d2 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_800k WHERE id in (1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_800k_pkey on t_range_800k + Index Cond: (id = ANY ('{1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999}'::integer[])) +(2 rows) + +-- Query Hash: 8658bcd07d24cb2920170703af3c8d61 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k WHERE id in (1000,1002,1004,1006,1008,1010,1012,1014,1016,1018,1020,1022,1024,1026,1028,1030,1032,1034,1036,1038,1040,1042,1044,1046,1048,1050,1052,1054,1056,1058,1060,1062,1064,1066,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1088,1090,1092,1094,1096,1098,1100,1102,1104,1106,1108,1110,1112,1114,1116,1118,1120,1122,1124,1126,1128,1130,1132,1134,1136,1138,1140,1142,1144,1146,1148,1150,1152,1154,1156,1158,1160,1162,1164,1166,1168,1170,1172,1174,1176,1178,1180,1182,1184,1186,1188,1190,1192,1194,1196,1198,1200,1202,1204,1206,1208,1210,1212,1214,1216,1218,1220,1222,1224,1226,1228,1230,1232,1234,1236,1238,1240,1242,1244,1246,1248,1250,1252,1254,1256,1258,1260,1262,1264,1266,1268,1270,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292,1294,1296,1298,1300,1302,1304,1306,1308,1310,1312,1314,1316,1318,1320,1322,1324,1326,1328,1330,1332,1334,1336,1338,1340,1342,1344,1346,1348,1350,1352,1354,1356,1358,1360,1362,1364,1366,1368,1370,1372,1374,1376,1378,1380,1382,1384,1386,1388,1390,1392,1394,1396,1398,1400,1402,1404,1406,1408,1410,1412,1414,1416,1418,1420,1422,1424,1426,1428,1430,1432,1434,1436,1438,1440,1442,1444,1446,1448,1450,1452,1454,1456,1458,1460,1462,1464,1466,1468,1470,1472,1474,1476,1478,1480,1482,1484,1486,1488,1490,1492,1494,1496,1498,1500,1502,1504,1506,1508,1510,1512,1514,1516,1518,1520,1522,1524,1526,1528,1530,1532,1534,1536,1538,1540,1542,1544,1546,1548,1550,1552,1554,1556,1558,1560,1562,1564,1566,1568,1570,1572,1574,1576,1578,1580,1582,1584,1586,1588,1590,1592,1594,1596,1598,1600,1602,1604,1606,1608,1610,1612,1614,1616,1618,1620,1622,1624,1626,1628,1630,1632,1634,1636,1638,1640,1642,1644,1646,1648,1650,1652,1654,1656,1658,1660,1662,1664,1666,1668,1670,1672,1674,1676,1678,1680,1682,1684,1686,1688,1690,1692,1694,1696,1698,1700,1702,1704,1706,1708,1710,1712,1714,1716,1718,1720,1722,1724,1726,1728,1730,1732,1734,1736,1738,1740,1742,1744,1746,1748,1750,1752,1754,1756,1758,1760,1762,1764,1766,1768,1770,1772,1774,1776,1778,1780,1782,1784,1786,1788,1790,1792,1794,1796,1798,1800,1802,1804,1806,1808,1810,1812,1814,1816,1818,1820,1822,1824,1826,1828,1830,1832,1834,1836,1838,1840,1842,1844,1846,1848,1850,1852,1854,1856,1858,1860,1862,1864,1866,1868,1870,1872,1874,1876,1878,1880,1882,1884,1886,1888,1890,1892,1894,1896,1898,1900,1902,1904,1906,1908,1910,1912,1914,1916,1918,1920,1922,1924,1926,1928,1930,1932,1934,1936,1938,1940,1942,1944,1946,1948,1950,1952,1954,1956,1958,1960,1962,1964,1966,1968,1970,1972,1974,1976,1978,1980,1982,1984,1986,1988,1990,1992,1994,1996,1998,2000,2002,2004,2006,2008,2010,2012,2014,2016,2018,2020,2022,2024,2026,2028,2030,2032,2034,2036,2038,2040,2042,2044,2046,2048,2050,2052,2054,2056,2058,2060,2062,2064,2066,2068,2070,2072,2074,2076,2078,2080,2082,2084,2086,2088,2090,2092,2094,2096,2098,2100,2102,2104,2106,2108,2110,2112,2114,2116,2118,2120,2122,2124,2126,2128,2130,2132,2134,2136,2138,2140,2142,2144,2146,2148,2150,2152,2154,2156,2158,2160,2162,2164,2166,2168,2170,2172,2174,2176,2178,2180,2182,2184,2186,2188,2190,2192,2194,2196,2198,2200,2202,2204,2206,2208,2210,2212,2214,2216,2218,2220,2222,2224,2226,2228,2230,2232,2234,2236,2238,2240,2242,2244,2246,2248,2250,2252,2254,2256,2258,2260,2262,2264,2266,2268,2270,2272,2274,2276,2278,2280,2282,2284,2286,2288,2290,2292,2294,2296,2298,2300,2302,2304,2306,2308,2310,2312,2314,2316,2318,2320,2322,2324,2326,2328,2330,2332,2334,2336,2338,2340,2342,2344,2346,2348,2350,2352,2354,2356,2358,2360,2362,2364,2366,2368,2370,2372,2374,2376,2378,2380,2382,2384,2386,2388,2390,2392,2394,2396,2398,2400,2402,2404,2406,2408,2410,2412,2414,2416,2418,2420,2422,2424,2426,2428,2430,2432,2434,2436,2438,2440,2442,2444,2446,2448,2450,2452,2454,2456,2458,2460,2462,2464,2466,2468,2470,2472,2474,2476,2478,2480,2482,2484,2486,2488,2490,2492,2494,2496,2498,2500,2502,2504,2506,2508,2510,2512,2514,2516,2518,2520,2522,2524,2526,2528,2530,2532,2534,2536,2538,2540,2542,2544,2546,2548,2550,2552,2554,2556,2558,2560,2562,2564,2566,2568,2570,2572,2574,2576,2578,2580,2582,2584,2586,2588,2590,2592,2594,2596,2598,2600,2602,2604,2606,2608,2610,2612,2614,2616,2618,2620,2622,2624,2626,2628,2630,2632,2634,2636,2638,2640,2642,2644,2646,2648,2650,2652,2654,2656,2658,2660,2662,2664,2666,2668,2670,2672,2674,2676,2678,2680,2682,2684,2686,2688,2690,2692,2694,2696,2698,2700,2702,2704,2706,2708,2710,2712,2714,2716,2718,2720,2722,2724,2726,2728,2730,2732,2734,2736,2738,2740,2742,2744,2746,2748,2750,2752,2754,2756,2758,2760,2762,2764,2766,2768,2770,2772,2774,2776,2778,2780,2782,2784,2786,2788,2790,2792,2794,2796,2798,2800,2802,2804,2806,2808,2810,2812,2814,2816,2818,2820,2822,2824,2826,2828,2830,2832,2834,2836,2838,2840,2842,2844,2846,2848,2850,2852,2854,2856,2858,2860,2862,2864,2866,2868,2870,2872,2874,2876,2878,2880,2882,2884,2886,2888,2890,2892,2894,2896,2898,2900,2902,2904,2906,2908,2910,2912,2914,2916,2918,2920,2922,2924,2926,2928,2930,2932,2934,2936,2938,2940,2942,2944,2946,2948,2950,2952,2954,2956,2958,2960,2962,2964,2966,2968,2970,2972,2974,2976,2978,2980,2982,2984,2986,2988,2990,2992,2994,2996,2998); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_100k_pkey on t_range_100k + Index Cond: (id = ANY ('{1000,1002,1004,1006,1008,1010,1012,1014,1016,1018,1020,1022,1024,1026,1028,1030,1032,1034,1036,1038,1040,1042,1044,1046,1048,1050,1052,1054,1056,1058,1060,1062,1064,1066,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1088,1090,1092,1094,1096,1098,1100,1102,1104,1106,1108,1110,1112,1114,1116,1118,1120,1122,1124,1126,1128,1130,1132,1134,1136,1138,1140,1142,1144,1146,1148,1150,1152,1154,1156,1158,1160,1162,1164,1166,1168,1170,1172,1174,1176,1178,1180,1182,1184,1186,1188,1190,1192,1194,1196,1198,1200,1202,1204,1206,1208,1210,1212,1214,1216,1218,1220,1222,1224,1226,1228,1230,1232,1234,1236,1238,1240,1242,1244,1246,1248,1250,1252,1254,1256,1258,1260,1262,1264,1266,1268,1270,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292,1294,1296,1298,1300,1302,1304,1306,1308,1310,1312,1314,1316,1318,1320,1322,1324,1326,1328,1330,1332,1334,1336,1338,1340,1342,1344,1346,1348,1350,1352,1354,1356,1358,1360,1362,1364,1366,1368,1370,1372,1374,1376,1378,1380,1382,1384,1386,1388,1390,1392,1394,1396,1398,1400,1402,1404,1406,1408,1410,1412,1414,1416,1418,1420,1422,1424,1426,1428,1430,1432,1434,1436,1438,1440,1442,1444,1446,1448,1450,1452,1454,1456,1458,1460,1462,1464,1466,1468,1470,1472,1474,1476,1478,1480,1482,1484,1486,1488,1490,1492,1494,1496,1498,1500,1502,1504,1506,1508,1510,1512,1514,1516,1518,1520,1522,1524,1526,1528,1530,1532,1534,1536,1538,1540,1542,1544,1546,1548,1550,1552,1554,1556,1558,1560,1562,1564,1566,1568,1570,1572,1574,1576,1578,1580,1582,1584,1586,1588,1590,1592,1594,1596,1598,1600,1602,1604,1606,1608,1610,1612,1614,1616,1618,1620,1622,1624,1626,1628,1630,1632,1634,1636,1638,1640,1642,1644,1646,1648,1650,1652,1654,1656,1658,1660,1662,1664,1666,1668,1670,1672,1674,1676,1678,1680,1682,1684,1686,1688,1690,1692,1694,1696,1698,1700,1702,1704,1706,1708,1710,1712,1714,1716,1718,1720,1722,1724,1726,1728,1730,1732,1734,1736,1738,1740,1742,1744,1746,1748,1750,1752,1754,1756,1758,1760,1762,1764,1766,1768,1770,1772,1774,1776,1778,1780,1782,1784,1786,1788,1790,1792,1794,1796,1798,1800,1802,1804,1806,1808,1810,1812,1814,1816,1818,1820,1822,1824,1826,1828,1830,1832,1834,1836,1838,1840,1842,1844,1846,1848,1850,1852,1854,1856,1858,1860,1862,1864,1866,1868,1870,1872,1874,1876,1878,1880,1882,1884,1886,1888,1890,1892,1894,1896,1898,1900,1902,1904,1906,1908,1910,1912,1914,1916,1918,1920,1922,1924,1926,1928,1930,1932,1934,1936,1938,1940,1942,1944,1946,1948,1950,1952,1954,1956,1958,1960,1962,1964,1966,1968,1970,1972,1974,1976,1978,1980,1982,1984,1986,1988,1990,1992,1994,1996,1998,2000,2002,2004,2006,2008,2010,2012,2014,2016,2018,2020,2022,2024,2026,2028,2030,2032,2034,2036,2038,2040,2042,2044,2046,2048,2050,2052,2054,2056,2058,2060,2062,2064,2066,2068,2070,2072,2074,2076,2078,2080,2082,2084,2086,2088,2090,2092,2094,2096,2098,2100,2102,2104,2106,2108,2110,2112,2114,2116,2118,2120,2122,2124,2126,2128,2130,2132,2134,2136,2138,2140,2142,2144,2146,2148,2150,2152,2154,2156,2158,2160,2162,2164,2166,2168,2170,2172,2174,2176,2178,2180,2182,2184,2186,2188,2190,2192,2194,2196,2198,2200,2202,2204,2206,2208,2210,2212,2214,2216,2218,2220,2222,2224,2226,2228,2230,2232,2234,2236,2238,2240,2242,2244,2246,2248,2250,2252,2254,2256,2258,2260,2262,2264,2266,2268,2270,2272,2274,2276,2278,2280,2282,2284,2286,2288,2290,2292,2294,2296,2298,2300,2302,2304,2306,2308,2310,2312,2314,2316,2318,2320,2322,2324,2326,2328,2330,2332,2334,2336,2338,2340,2342,2344,2346,2348,2350,2352,2354,2356,2358,2360,2362,2364,2366,2368,2370,2372,2374,2376,2378,2380,2382,2384,2386,2388,2390,2392,2394,2396,2398,2400,2402,2404,2406,2408,2410,2412,2414,2416,2418,2420,2422,2424,2426,2428,2430,2432,2434,2436,2438,2440,2442,2444,2446,2448,2450,2452,2454,2456,2458,2460,2462,2464,2466,2468,2470,2472,2474,2476,2478,2480,2482,2484,2486,2488,2490,2492,2494,2496,2498,2500,2502,2504,2506,2508,2510,2512,2514,2516,2518,2520,2522,2524,2526,2528,2530,2532,2534,2536,2538,2540,2542,2544,2546,2548,2550,2552,2554,2556,2558,2560,2562,2564,2566,2568,2570,2572,2574,2576,2578,2580,2582,2584,2586,2588,2590,2592,2594,2596,2598,2600,2602,2604,2606,2608,2610,2612,2614,2616,2618,2620,2622,2624,2626,2628,2630,2632,2634,2636,2638,2640,2642,2644,2646,2648,2650,2652,2654,2656,2658,2660,2662,2664,2666,2668,2670,2672,2674,2676,2678,2680,2682,2684,2686,2688,2690,2692,2694,2696,2698,2700,2702,2704,2706,2708,2710,2712,2714,2716,2718,2720,2722,2724,2726,2728,2730,2732,2734,2736,2738,2740,2742,2744,2746,2748,2750,2752,2754,2756,2758,2760,2762,2764,2766,2768,2770,2772,2774,2776,2778,2780,2782,2784,2786,2788,2790,2792,2794,2796,2798,2800,2802,2804,2806,2808,2810,2812,2814,2816,2818,2820,2822,2824,2826,2828,2830,2832,2834,2836,2838,2840,2842,2844,2846,2848,2850,2852,2854,2856,2858,2860,2862,2864,2866,2868,2870,2872,2874,2876,2878,2880,2882,2884,2886,2888,2890,2892,2894,2896,2898,2900,2902,2904,2906,2908,2910,2912,2914,2916,2918,2920,2922,2924,2926,2928,2930,2932,2934,2936,2938,2940,2942,2944,2946,2948,2950,2952,2954,2956,2958,2960,2962,2964,2966,2968,2970,2972,2974,2976,2978,2980,2982,2984,2986,2988,2990,2992,2994,2996,2998}'::integer[])) +(2 rows) + +-- Query Hash: ec919662380311400303d6a17ff490eb +EXPLAIN (COSTS OFF) SELECT * FROM t_range_200k WHERE id in (1000,1002,1004,1006,1008,1010,1012,1014,1016,1018,1020,1022,1024,1026,1028,1030,1032,1034,1036,1038,1040,1042,1044,1046,1048,1050,1052,1054,1056,1058,1060,1062,1064,1066,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1088,1090,1092,1094,1096,1098,1100,1102,1104,1106,1108,1110,1112,1114,1116,1118,1120,1122,1124,1126,1128,1130,1132,1134,1136,1138,1140,1142,1144,1146,1148,1150,1152,1154,1156,1158,1160,1162,1164,1166,1168,1170,1172,1174,1176,1178,1180,1182,1184,1186,1188,1190,1192,1194,1196,1198,1200,1202,1204,1206,1208,1210,1212,1214,1216,1218,1220,1222,1224,1226,1228,1230,1232,1234,1236,1238,1240,1242,1244,1246,1248,1250,1252,1254,1256,1258,1260,1262,1264,1266,1268,1270,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292,1294,1296,1298,1300,1302,1304,1306,1308,1310,1312,1314,1316,1318,1320,1322,1324,1326,1328,1330,1332,1334,1336,1338,1340,1342,1344,1346,1348,1350,1352,1354,1356,1358,1360,1362,1364,1366,1368,1370,1372,1374,1376,1378,1380,1382,1384,1386,1388,1390,1392,1394,1396,1398,1400,1402,1404,1406,1408,1410,1412,1414,1416,1418,1420,1422,1424,1426,1428,1430,1432,1434,1436,1438,1440,1442,1444,1446,1448,1450,1452,1454,1456,1458,1460,1462,1464,1466,1468,1470,1472,1474,1476,1478,1480,1482,1484,1486,1488,1490,1492,1494,1496,1498,1500,1502,1504,1506,1508,1510,1512,1514,1516,1518,1520,1522,1524,1526,1528,1530,1532,1534,1536,1538,1540,1542,1544,1546,1548,1550,1552,1554,1556,1558,1560,1562,1564,1566,1568,1570,1572,1574,1576,1578,1580,1582,1584,1586,1588,1590,1592,1594,1596,1598,1600,1602,1604,1606,1608,1610,1612,1614,1616,1618,1620,1622,1624,1626,1628,1630,1632,1634,1636,1638,1640,1642,1644,1646,1648,1650,1652,1654,1656,1658,1660,1662,1664,1666,1668,1670,1672,1674,1676,1678,1680,1682,1684,1686,1688,1690,1692,1694,1696,1698,1700,1702,1704,1706,1708,1710,1712,1714,1716,1718,1720,1722,1724,1726,1728,1730,1732,1734,1736,1738,1740,1742,1744,1746,1748,1750,1752,1754,1756,1758,1760,1762,1764,1766,1768,1770,1772,1774,1776,1778,1780,1782,1784,1786,1788,1790,1792,1794,1796,1798,1800,1802,1804,1806,1808,1810,1812,1814,1816,1818,1820,1822,1824,1826,1828,1830,1832,1834,1836,1838,1840,1842,1844,1846,1848,1850,1852,1854,1856,1858,1860,1862,1864,1866,1868,1870,1872,1874,1876,1878,1880,1882,1884,1886,1888,1890,1892,1894,1896,1898,1900,1902,1904,1906,1908,1910,1912,1914,1916,1918,1920,1922,1924,1926,1928,1930,1932,1934,1936,1938,1940,1942,1944,1946,1948,1950,1952,1954,1956,1958,1960,1962,1964,1966,1968,1970,1972,1974,1976,1978,1980,1982,1984,1986,1988,1990,1992,1994,1996,1998,2000,2002,2004,2006,2008,2010,2012,2014,2016,2018,2020,2022,2024,2026,2028,2030,2032,2034,2036,2038,2040,2042,2044,2046,2048,2050,2052,2054,2056,2058,2060,2062,2064,2066,2068,2070,2072,2074,2076,2078,2080,2082,2084,2086,2088,2090,2092,2094,2096,2098,2100,2102,2104,2106,2108,2110,2112,2114,2116,2118,2120,2122,2124,2126,2128,2130,2132,2134,2136,2138,2140,2142,2144,2146,2148,2150,2152,2154,2156,2158,2160,2162,2164,2166,2168,2170,2172,2174,2176,2178,2180,2182,2184,2186,2188,2190,2192,2194,2196,2198,2200,2202,2204,2206,2208,2210,2212,2214,2216,2218,2220,2222,2224,2226,2228,2230,2232,2234,2236,2238,2240,2242,2244,2246,2248,2250,2252,2254,2256,2258,2260,2262,2264,2266,2268,2270,2272,2274,2276,2278,2280,2282,2284,2286,2288,2290,2292,2294,2296,2298,2300,2302,2304,2306,2308,2310,2312,2314,2316,2318,2320,2322,2324,2326,2328,2330,2332,2334,2336,2338,2340,2342,2344,2346,2348,2350,2352,2354,2356,2358,2360,2362,2364,2366,2368,2370,2372,2374,2376,2378,2380,2382,2384,2386,2388,2390,2392,2394,2396,2398,2400,2402,2404,2406,2408,2410,2412,2414,2416,2418,2420,2422,2424,2426,2428,2430,2432,2434,2436,2438,2440,2442,2444,2446,2448,2450,2452,2454,2456,2458,2460,2462,2464,2466,2468,2470,2472,2474,2476,2478,2480,2482,2484,2486,2488,2490,2492,2494,2496,2498,2500,2502,2504,2506,2508,2510,2512,2514,2516,2518,2520,2522,2524,2526,2528,2530,2532,2534,2536,2538,2540,2542,2544,2546,2548,2550,2552,2554,2556,2558,2560,2562,2564,2566,2568,2570,2572,2574,2576,2578,2580,2582,2584,2586,2588,2590,2592,2594,2596,2598,2600,2602,2604,2606,2608,2610,2612,2614,2616,2618,2620,2622,2624,2626,2628,2630,2632,2634,2636,2638,2640,2642,2644,2646,2648,2650,2652,2654,2656,2658,2660,2662,2664,2666,2668,2670,2672,2674,2676,2678,2680,2682,2684,2686,2688,2690,2692,2694,2696,2698,2700,2702,2704,2706,2708,2710,2712,2714,2716,2718,2720,2722,2724,2726,2728,2730,2732,2734,2736,2738,2740,2742,2744,2746,2748,2750,2752,2754,2756,2758,2760,2762,2764,2766,2768,2770,2772,2774,2776,2778,2780,2782,2784,2786,2788,2790,2792,2794,2796,2798,2800,2802,2804,2806,2808,2810,2812,2814,2816,2818,2820,2822,2824,2826,2828,2830,2832,2834,2836,2838,2840,2842,2844,2846,2848,2850,2852,2854,2856,2858,2860,2862,2864,2866,2868,2870,2872,2874,2876,2878,2880,2882,2884,2886,2888,2890,2892,2894,2896,2898,2900,2902,2904,2906,2908,2910,2912,2914,2916,2918,2920,2922,2924,2926,2928,2930,2932,2934,2936,2938,2940,2942,2944,2946,2948,2950,2952,2954,2956,2958,2960,2962,2964,2966,2968,2970,2972,2974,2976,2978,2980,2982,2984,2986,2988,2990,2992,2994,2996,2998); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_200k_pkey on t_range_200k + Index Cond: (id = ANY ('{1000,1002,1004,1006,1008,1010,1012,1014,1016,1018,1020,1022,1024,1026,1028,1030,1032,1034,1036,1038,1040,1042,1044,1046,1048,1050,1052,1054,1056,1058,1060,1062,1064,1066,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1088,1090,1092,1094,1096,1098,1100,1102,1104,1106,1108,1110,1112,1114,1116,1118,1120,1122,1124,1126,1128,1130,1132,1134,1136,1138,1140,1142,1144,1146,1148,1150,1152,1154,1156,1158,1160,1162,1164,1166,1168,1170,1172,1174,1176,1178,1180,1182,1184,1186,1188,1190,1192,1194,1196,1198,1200,1202,1204,1206,1208,1210,1212,1214,1216,1218,1220,1222,1224,1226,1228,1230,1232,1234,1236,1238,1240,1242,1244,1246,1248,1250,1252,1254,1256,1258,1260,1262,1264,1266,1268,1270,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292,1294,1296,1298,1300,1302,1304,1306,1308,1310,1312,1314,1316,1318,1320,1322,1324,1326,1328,1330,1332,1334,1336,1338,1340,1342,1344,1346,1348,1350,1352,1354,1356,1358,1360,1362,1364,1366,1368,1370,1372,1374,1376,1378,1380,1382,1384,1386,1388,1390,1392,1394,1396,1398,1400,1402,1404,1406,1408,1410,1412,1414,1416,1418,1420,1422,1424,1426,1428,1430,1432,1434,1436,1438,1440,1442,1444,1446,1448,1450,1452,1454,1456,1458,1460,1462,1464,1466,1468,1470,1472,1474,1476,1478,1480,1482,1484,1486,1488,1490,1492,1494,1496,1498,1500,1502,1504,1506,1508,1510,1512,1514,1516,1518,1520,1522,1524,1526,1528,1530,1532,1534,1536,1538,1540,1542,1544,1546,1548,1550,1552,1554,1556,1558,1560,1562,1564,1566,1568,1570,1572,1574,1576,1578,1580,1582,1584,1586,1588,1590,1592,1594,1596,1598,1600,1602,1604,1606,1608,1610,1612,1614,1616,1618,1620,1622,1624,1626,1628,1630,1632,1634,1636,1638,1640,1642,1644,1646,1648,1650,1652,1654,1656,1658,1660,1662,1664,1666,1668,1670,1672,1674,1676,1678,1680,1682,1684,1686,1688,1690,1692,1694,1696,1698,1700,1702,1704,1706,1708,1710,1712,1714,1716,1718,1720,1722,1724,1726,1728,1730,1732,1734,1736,1738,1740,1742,1744,1746,1748,1750,1752,1754,1756,1758,1760,1762,1764,1766,1768,1770,1772,1774,1776,1778,1780,1782,1784,1786,1788,1790,1792,1794,1796,1798,1800,1802,1804,1806,1808,1810,1812,1814,1816,1818,1820,1822,1824,1826,1828,1830,1832,1834,1836,1838,1840,1842,1844,1846,1848,1850,1852,1854,1856,1858,1860,1862,1864,1866,1868,1870,1872,1874,1876,1878,1880,1882,1884,1886,1888,1890,1892,1894,1896,1898,1900,1902,1904,1906,1908,1910,1912,1914,1916,1918,1920,1922,1924,1926,1928,1930,1932,1934,1936,1938,1940,1942,1944,1946,1948,1950,1952,1954,1956,1958,1960,1962,1964,1966,1968,1970,1972,1974,1976,1978,1980,1982,1984,1986,1988,1990,1992,1994,1996,1998,2000,2002,2004,2006,2008,2010,2012,2014,2016,2018,2020,2022,2024,2026,2028,2030,2032,2034,2036,2038,2040,2042,2044,2046,2048,2050,2052,2054,2056,2058,2060,2062,2064,2066,2068,2070,2072,2074,2076,2078,2080,2082,2084,2086,2088,2090,2092,2094,2096,2098,2100,2102,2104,2106,2108,2110,2112,2114,2116,2118,2120,2122,2124,2126,2128,2130,2132,2134,2136,2138,2140,2142,2144,2146,2148,2150,2152,2154,2156,2158,2160,2162,2164,2166,2168,2170,2172,2174,2176,2178,2180,2182,2184,2186,2188,2190,2192,2194,2196,2198,2200,2202,2204,2206,2208,2210,2212,2214,2216,2218,2220,2222,2224,2226,2228,2230,2232,2234,2236,2238,2240,2242,2244,2246,2248,2250,2252,2254,2256,2258,2260,2262,2264,2266,2268,2270,2272,2274,2276,2278,2280,2282,2284,2286,2288,2290,2292,2294,2296,2298,2300,2302,2304,2306,2308,2310,2312,2314,2316,2318,2320,2322,2324,2326,2328,2330,2332,2334,2336,2338,2340,2342,2344,2346,2348,2350,2352,2354,2356,2358,2360,2362,2364,2366,2368,2370,2372,2374,2376,2378,2380,2382,2384,2386,2388,2390,2392,2394,2396,2398,2400,2402,2404,2406,2408,2410,2412,2414,2416,2418,2420,2422,2424,2426,2428,2430,2432,2434,2436,2438,2440,2442,2444,2446,2448,2450,2452,2454,2456,2458,2460,2462,2464,2466,2468,2470,2472,2474,2476,2478,2480,2482,2484,2486,2488,2490,2492,2494,2496,2498,2500,2502,2504,2506,2508,2510,2512,2514,2516,2518,2520,2522,2524,2526,2528,2530,2532,2534,2536,2538,2540,2542,2544,2546,2548,2550,2552,2554,2556,2558,2560,2562,2564,2566,2568,2570,2572,2574,2576,2578,2580,2582,2584,2586,2588,2590,2592,2594,2596,2598,2600,2602,2604,2606,2608,2610,2612,2614,2616,2618,2620,2622,2624,2626,2628,2630,2632,2634,2636,2638,2640,2642,2644,2646,2648,2650,2652,2654,2656,2658,2660,2662,2664,2666,2668,2670,2672,2674,2676,2678,2680,2682,2684,2686,2688,2690,2692,2694,2696,2698,2700,2702,2704,2706,2708,2710,2712,2714,2716,2718,2720,2722,2724,2726,2728,2730,2732,2734,2736,2738,2740,2742,2744,2746,2748,2750,2752,2754,2756,2758,2760,2762,2764,2766,2768,2770,2772,2774,2776,2778,2780,2782,2784,2786,2788,2790,2792,2794,2796,2798,2800,2802,2804,2806,2808,2810,2812,2814,2816,2818,2820,2822,2824,2826,2828,2830,2832,2834,2836,2838,2840,2842,2844,2846,2848,2850,2852,2854,2856,2858,2860,2862,2864,2866,2868,2870,2872,2874,2876,2878,2880,2882,2884,2886,2888,2890,2892,2894,2896,2898,2900,2902,2904,2906,2908,2910,2912,2914,2916,2918,2920,2922,2924,2926,2928,2930,2932,2934,2936,2938,2940,2942,2944,2946,2948,2950,2952,2954,2956,2958,2960,2962,2964,2966,2968,2970,2972,2974,2976,2978,2980,2982,2984,2986,2988,2990,2992,2994,2996,2998}'::integer[])) +(2 rows) + +-- Query Hash: 167d1922c9b95e4de0a29a6f520cfaae +EXPLAIN (COSTS OFF) SELECT * FROM t_range_400k WHERE id in (1000,1002,1004,1006,1008,1010,1012,1014,1016,1018,1020,1022,1024,1026,1028,1030,1032,1034,1036,1038,1040,1042,1044,1046,1048,1050,1052,1054,1056,1058,1060,1062,1064,1066,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1088,1090,1092,1094,1096,1098,1100,1102,1104,1106,1108,1110,1112,1114,1116,1118,1120,1122,1124,1126,1128,1130,1132,1134,1136,1138,1140,1142,1144,1146,1148,1150,1152,1154,1156,1158,1160,1162,1164,1166,1168,1170,1172,1174,1176,1178,1180,1182,1184,1186,1188,1190,1192,1194,1196,1198,1200,1202,1204,1206,1208,1210,1212,1214,1216,1218,1220,1222,1224,1226,1228,1230,1232,1234,1236,1238,1240,1242,1244,1246,1248,1250,1252,1254,1256,1258,1260,1262,1264,1266,1268,1270,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292,1294,1296,1298,1300,1302,1304,1306,1308,1310,1312,1314,1316,1318,1320,1322,1324,1326,1328,1330,1332,1334,1336,1338,1340,1342,1344,1346,1348,1350,1352,1354,1356,1358,1360,1362,1364,1366,1368,1370,1372,1374,1376,1378,1380,1382,1384,1386,1388,1390,1392,1394,1396,1398,1400,1402,1404,1406,1408,1410,1412,1414,1416,1418,1420,1422,1424,1426,1428,1430,1432,1434,1436,1438,1440,1442,1444,1446,1448,1450,1452,1454,1456,1458,1460,1462,1464,1466,1468,1470,1472,1474,1476,1478,1480,1482,1484,1486,1488,1490,1492,1494,1496,1498,1500,1502,1504,1506,1508,1510,1512,1514,1516,1518,1520,1522,1524,1526,1528,1530,1532,1534,1536,1538,1540,1542,1544,1546,1548,1550,1552,1554,1556,1558,1560,1562,1564,1566,1568,1570,1572,1574,1576,1578,1580,1582,1584,1586,1588,1590,1592,1594,1596,1598,1600,1602,1604,1606,1608,1610,1612,1614,1616,1618,1620,1622,1624,1626,1628,1630,1632,1634,1636,1638,1640,1642,1644,1646,1648,1650,1652,1654,1656,1658,1660,1662,1664,1666,1668,1670,1672,1674,1676,1678,1680,1682,1684,1686,1688,1690,1692,1694,1696,1698,1700,1702,1704,1706,1708,1710,1712,1714,1716,1718,1720,1722,1724,1726,1728,1730,1732,1734,1736,1738,1740,1742,1744,1746,1748,1750,1752,1754,1756,1758,1760,1762,1764,1766,1768,1770,1772,1774,1776,1778,1780,1782,1784,1786,1788,1790,1792,1794,1796,1798,1800,1802,1804,1806,1808,1810,1812,1814,1816,1818,1820,1822,1824,1826,1828,1830,1832,1834,1836,1838,1840,1842,1844,1846,1848,1850,1852,1854,1856,1858,1860,1862,1864,1866,1868,1870,1872,1874,1876,1878,1880,1882,1884,1886,1888,1890,1892,1894,1896,1898,1900,1902,1904,1906,1908,1910,1912,1914,1916,1918,1920,1922,1924,1926,1928,1930,1932,1934,1936,1938,1940,1942,1944,1946,1948,1950,1952,1954,1956,1958,1960,1962,1964,1966,1968,1970,1972,1974,1976,1978,1980,1982,1984,1986,1988,1990,1992,1994,1996,1998,2000,2002,2004,2006,2008,2010,2012,2014,2016,2018,2020,2022,2024,2026,2028,2030,2032,2034,2036,2038,2040,2042,2044,2046,2048,2050,2052,2054,2056,2058,2060,2062,2064,2066,2068,2070,2072,2074,2076,2078,2080,2082,2084,2086,2088,2090,2092,2094,2096,2098,2100,2102,2104,2106,2108,2110,2112,2114,2116,2118,2120,2122,2124,2126,2128,2130,2132,2134,2136,2138,2140,2142,2144,2146,2148,2150,2152,2154,2156,2158,2160,2162,2164,2166,2168,2170,2172,2174,2176,2178,2180,2182,2184,2186,2188,2190,2192,2194,2196,2198,2200,2202,2204,2206,2208,2210,2212,2214,2216,2218,2220,2222,2224,2226,2228,2230,2232,2234,2236,2238,2240,2242,2244,2246,2248,2250,2252,2254,2256,2258,2260,2262,2264,2266,2268,2270,2272,2274,2276,2278,2280,2282,2284,2286,2288,2290,2292,2294,2296,2298,2300,2302,2304,2306,2308,2310,2312,2314,2316,2318,2320,2322,2324,2326,2328,2330,2332,2334,2336,2338,2340,2342,2344,2346,2348,2350,2352,2354,2356,2358,2360,2362,2364,2366,2368,2370,2372,2374,2376,2378,2380,2382,2384,2386,2388,2390,2392,2394,2396,2398,2400,2402,2404,2406,2408,2410,2412,2414,2416,2418,2420,2422,2424,2426,2428,2430,2432,2434,2436,2438,2440,2442,2444,2446,2448,2450,2452,2454,2456,2458,2460,2462,2464,2466,2468,2470,2472,2474,2476,2478,2480,2482,2484,2486,2488,2490,2492,2494,2496,2498,2500,2502,2504,2506,2508,2510,2512,2514,2516,2518,2520,2522,2524,2526,2528,2530,2532,2534,2536,2538,2540,2542,2544,2546,2548,2550,2552,2554,2556,2558,2560,2562,2564,2566,2568,2570,2572,2574,2576,2578,2580,2582,2584,2586,2588,2590,2592,2594,2596,2598,2600,2602,2604,2606,2608,2610,2612,2614,2616,2618,2620,2622,2624,2626,2628,2630,2632,2634,2636,2638,2640,2642,2644,2646,2648,2650,2652,2654,2656,2658,2660,2662,2664,2666,2668,2670,2672,2674,2676,2678,2680,2682,2684,2686,2688,2690,2692,2694,2696,2698,2700,2702,2704,2706,2708,2710,2712,2714,2716,2718,2720,2722,2724,2726,2728,2730,2732,2734,2736,2738,2740,2742,2744,2746,2748,2750,2752,2754,2756,2758,2760,2762,2764,2766,2768,2770,2772,2774,2776,2778,2780,2782,2784,2786,2788,2790,2792,2794,2796,2798,2800,2802,2804,2806,2808,2810,2812,2814,2816,2818,2820,2822,2824,2826,2828,2830,2832,2834,2836,2838,2840,2842,2844,2846,2848,2850,2852,2854,2856,2858,2860,2862,2864,2866,2868,2870,2872,2874,2876,2878,2880,2882,2884,2886,2888,2890,2892,2894,2896,2898,2900,2902,2904,2906,2908,2910,2912,2914,2916,2918,2920,2922,2924,2926,2928,2930,2932,2934,2936,2938,2940,2942,2944,2946,2948,2950,2952,2954,2956,2958,2960,2962,2964,2966,2968,2970,2972,2974,2976,2978,2980,2982,2984,2986,2988,2990,2992,2994,2996,2998); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_400k_pkey on t_range_400k + Index Cond: (id = ANY ('{1000,1002,1004,1006,1008,1010,1012,1014,1016,1018,1020,1022,1024,1026,1028,1030,1032,1034,1036,1038,1040,1042,1044,1046,1048,1050,1052,1054,1056,1058,1060,1062,1064,1066,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1088,1090,1092,1094,1096,1098,1100,1102,1104,1106,1108,1110,1112,1114,1116,1118,1120,1122,1124,1126,1128,1130,1132,1134,1136,1138,1140,1142,1144,1146,1148,1150,1152,1154,1156,1158,1160,1162,1164,1166,1168,1170,1172,1174,1176,1178,1180,1182,1184,1186,1188,1190,1192,1194,1196,1198,1200,1202,1204,1206,1208,1210,1212,1214,1216,1218,1220,1222,1224,1226,1228,1230,1232,1234,1236,1238,1240,1242,1244,1246,1248,1250,1252,1254,1256,1258,1260,1262,1264,1266,1268,1270,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292,1294,1296,1298,1300,1302,1304,1306,1308,1310,1312,1314,1316,1318,1320,1322,1324,1326,1328,1330,1332,1334,1336,1338,1340,1342,1344,1346,1348,1350,1352,1354,1356,1358,1360,1362,1364,1366,1368,1370,1372,1374,1376,1378,1380,1382,1384,1386,1388,1390,1392,1394,1396,1398,1400,1402,1404,1406,1408,1410,1412,1414,1416,1418,1420,1422,1424,1426,1428,1430,1432,1434,1436,1438,1440,1442,1444,1446,1448,1450,1452,1454,1456,1458,1460,1462,1464,1466,1468,1470,1472,1474,1476,1478,1480,1482,1484,1486,1488,1490,1492,1494,1496,1498,1500,1502,1504,1506,1508,1510,1512,1514,1516,1518,1520,1522,1524,1526,1528,1530,1532,1534,1536,1538,1540,1542,1544,1546,1548,1550,1552,1554,1556,1558,1560,1562,1564,1566,1568,1570,1572,1574,1576,1578,1580,1582,1584,1586,1588,1590,1592,1594,1596,1598,1600,1602,1604,1606,1608,1610,1612,1614,1616,1618,1620,1622,1624,1626,1628,1630,1632,1634,1636,1638,1640,1642,1644,1646,1648,1650,1652,1654,1656,1658,1660,1662,1664,1666,1668,1670,1672,1674,1676,1678,1680,1682,1684,1686,1688,1690,1692,1694,1696,1698,1700,1702,1704,1706,1708,1710,1712,1714,1716,1718,1720,1722,1724,1726,1728,1730,1732,1734,1736,1738,1740,1742,1744,1746,1748,1750,1752,1754,1756,1758,1760,1762,1764,1766,1768,1770,1772,1774,1776,1778,1780,1782,1784,1786,1788,1790,1792,1794,1796,1798,1800,1802,1804,1806,1808,1810,1812,1814,1816,1818,1820,1822,1824,1826,1828,1830,1832,1834,1836,1838,1840,1842,1844,1846,1848,1850,1852,1854,1856,1858,1860,1862,1864,1866,1868,1870,1872,1874,1876,1878,1880,1882,1884,1886,1888,1890,1892,1894,1896,1898,1900,1902,1904,1906,1908,1910,1912,1914,1916,1918,1920,1922,1924,1926,1928,1930,1932,1934,1936,1938,1940,1942,1944,1946,1948,1950,1952,1954,1956,1958,1960,1962,1964,1966,1968,1970,1972,1974,1976,1978,1980,1982,1984,1986,1988,1990,1992,1994,1996,1998,2000,2002,2004,2006,2008,2010,2012,2014,2016,2018,2020,2022,2024,2026,2028,2030,2032,2034,2036,2038,2040,2042,2044,2046,2048,2050,2052,2054,2056,2058,2060,2062,2064,2066,2068,2070,2072,2074,2076,2078,2080,2082,2084,2086,2088,2090,2092,2094,2096,2098,2100,2102,2104,2106,2108,2110,2112,2114,2116,2118,2120,2122,2124,2126,2128,2130,2132,2134,2136,2138,2140,2142,2144,2146,2148,2150,2152,2154,2156,2158,2160,2162,2164,2166,2168,2170,2172,2174,2176,2178,2180,2182,2184,2186,2188,2190,2192,2194,2196,2198,2200,2202,2204,2206,2208,2210,2212,2214,2216,2218,2220,2222,2224,2226,2228,2230,2232,2234,2236,2238,2240,2242,2244,2246,2248,2250,2252,2254,2256,2258,2260,2262,2264,2266,2268,2270,2272,2274,2276,2278,2280,2282,2284,2286,2288,2290,2292,2294,2296,2298,2300,2302,2304,2306,2308,2310,2312,2314,2316,2318,2320,2322,2324,2326,2328,2330,2332,2334,2336,2338,2340,2342,2344,2346,2348,2350,2352,2354,2356,2358,2360,2362,2364,2366,2368,2370,2372,2374,2376,2378,2380,2382,2384,2386,2388,2390,2392,2394,2396,2398,2400,2402,2404,2406,2408,2410,2412,2414,2416,2418,2420,2422,2424,2426,2428,2430,2432,2434,2436,2438,2440,2442,2444,2446,2448,2450,2452,2454,2456,2458,2460,2462,2464,2466,2468,2470,2472,2474,2476,2478,2480,2482,2484,2486,2488,2490,2492,2494,2496,2498,2500,2502,2504,2506,2508,2510,2512,2514,2516,2518,2520,2522,2524,2526,2528,2530,2532,2534,2536,2538,2540,2542,2544,2546,2548,2550,2552,2554,2556,2558,2560,2562,2564,2566,2568,2570,2572,2574,2576,2578,2580,2582,2584,2586,2588,2590,2592,2594,2596,2598,2600,2602,2604,2606,2608,2610,2612,2614,2616,2618,2620,2622,2624,2626,2628,2630,2632,2634,2636,2638,2640,2642,2644,2646,2648,2650,2652,2654,2656,2658,2660,2662,2664,2666,2668,2670,2672,2674,2676,2678,2680,2682,2684,2686,2688,2690,2692,2694,2696,2698,2700,2702,2704,2706,2708,2710,2712,2714,2716,2718,2720,2722,2724,2726,2728,2730,2732,2734,2736,2738,2740,2742,2744,2746,2748,2750,2752,2754,2756,2758,2760,2762,2764,2766,2768,2770,2772,2774,2776,2778,2780,2782,2784,2786,2788,2790,2792,2794,2796,2798,2800,2802,2804,2806,2808,2810,2812,2814,2816,2818,2820,2822,2824,2826,2828,2830,2832,2834,2836,2838,2840,2842,2844,2846,2848,2850,2852,2854,2856,2858,2860,2862,2864,2866,2868,2870,2872,2874,2876,2878,2880,2882,2884,2886,2888,2890,2892,2894,2896,2898,2900,2902,2904,2906,2908,2910,2912,2914,2916,2918,2920,2922,2924,2926,2928,2930,2932,2934,2936,2938,2940,2942,2944,2946,2948,2950,2952,2954,2956,2958,2960,2962,2964,2966,2968,2970,2972,2974,2976,2978,2980,2982,2984,2986,2988,2990,2992,2994,2996,2998}'::integer[])) +(2 rows) + +-- Query Hash: 7f0864c159fb1f2bfe93fc67977c0dfa +EXPLAIN (COSTS OFF) SELECT * FROM t_range_800k WHERE id in (1000,1002,1004,1006,1008,1010,1012,1014,1016,1018,1020,1022,1024,1026,1028,1030,1032,1034,1036,1038,1040,1042,1044,1046,1048,1050,1052,1054,1056,1058,1060,1062,1064,1066,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1088,1090,1092,1094,1096,1098,1100,1102,1104,1106,1108,1110,1112,1114,1116,1118,1120,1122,1124,1126,1128,1130,1132,1134,1136,1138,1140,1142,1144,1146,1148,1150,1152,1154,1156,1158,1160,1162,1164,1166,1168,1170,1172,1174,1176,1178,1180,1182,1184,1186,1188,1190,1192,1194,1196,1198,1200,1202,1204,1206,1208,1210,1212,1214,1216,1218,1220,1222,1224,1226,1228,1230,1232,1234,1236,1238,1240,1242,1244,1246,1248,1250,1252,1254,1256,1258,1260,1262,1264,1266,1268,1270,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292,1294,1296,1298,1300,1302,1304,1306,1308,1310,1312,1314,1316,1318,1320,1322,1324,1326,1328,1330,1332,1334,1336,1338,1340,1342,1344,1346,1348,1350,1352,1354,1356,1358,1360,1362,1364,1366,1368,1370,1372,1374,1376,1378,1380,1382,1384,1386,1388,1390,1392,1394,1396,1398,1400,1402,1404,1406,1408,1410,1412,1414,1416,1418,1420,1422,1424,1426,1428,1430,1432,1434,1436,1438,1440,1442,1444,1446,1448,1450,1452,1454,1456,1458,1460,1462,1464,1466,1468,1470,1472,1474,1476,1478,1480,1482,1484,1486,1488,1490,1492,1494,1496,1498,1500,1502,1504,1506,1508,1510,1512,1514,1516,1518,1520,1522,1524,1526,1528,1530,1532,1534,1536,1538,1540,1542,1544,1546,1548,1550,1552,1554,1556,1558,1560,1562,1564,1566,1568,1570,1572,1574,1576,1578,1580,1582,1584,1586,1588,1590,1592,1594,1596,1598,1600,1602,1604,1606,1608,1610,1612,1614,1616,1618,1620,1622,1624,1626,1628,1630,1632,1634,1636,1638,1640,1642,1644,1646,1648,1650,1652,1654,1656,1658,1660,1662,1664,1666,1668,1670,1672,1674,1676,1678,1680,1682,1684,1686,1688,1690,1692,1694,1696,1698,1700,1702,1704,1706,1708,1710,1712,1714,1716,1718,1720,1722,1724,1726,1728,1730,1732,1734,1736,1738,1740,1742,1744,1746,1748,1750,1752,1754,1756,1758,1760,1762,1764,1766,1768,1770,1772,1774,1776,1778,1780,1782,1784,1786,1788,1790,1792,1794,1796,1798,1800,1802,1804,1806,1808,1810,1812,1814,1816,1818,1820,1822,1824,1826,1828,1830,1832,1834,1836,1838,1840,1842,1844,1846,1848,1850,1852,1854,1856,1858,1860,1862,1864,1866,1868,1870,1872,1874,1876,1878,1880,1882,1884,1886,1888,1890,1892,1894,1896,1898,1900,1902,1904,1906,1908,1910,1912,1914,1916,1918,1920,1922,1924,1926,1928,1930,1932,1934,1936,1938,1940,1942,1944,1946,1948,1950,1952,1954,1956,1958,1960,1962,1964,1966,1968,1970,1972,1974,1976,1978,1980,1982,1984,1986,1988,1990,1992,1994,1996,1998,2000,2002,2004,2006,2008,2010,2012,2014,2016,2018,2020,2022,2024,2026,2028,2030,2032,2034,2036,2038,2040,2042,2044,2046,2048,2050,2052,2054,2056,2058,2060,2062,2064,2066,2068,2070,2072,2074,2076,2078,2080,2082,2084,2086,2088,2090,2092,2094,2096,2098,2100,2102,2104,2106,2108,2110,2112,2114,2116,2118,2120,2122,2124,2126,2128,2130,2132,2134,2136,2138,2140,2142,2144,2146,2148,2150,2152,2154,2156,2158,2160,2162,2164,2166,2168,2170,2172,2174,2176,2178,2180,2182,2184,2186,2188,2190,2192,2194,2196,2198,2200,2202,2204,2206,2208,2210,2212,2214,2216,2218,2220,2222,2224,2226,2228,2230,2232,2234,2236,2238,2240,2242,2244,2246,2248,2250,2252,2254,2256,2258,2260,2262,2264,2266,2268,2270,2272,2274,2276,2278,2280,2282,2284,2286,2288,2290,2292,2294,2296,2298,2300,2302,2304,2306,2308,2310,2312,2314,2316,2318,2320,2322,2324,2326,2328,2330,2332,2334,2336,2338,2340,2342,2344,2346,2348,2350,2352,2354,2356,2358,2360,2362,2364,2366,2368,2370,2372,2374,2376,2378,2380,2382,2384,2386,2388,2390,2392,2394,2396,2398,2400,2402,2404,2406,2408,2410,2412,2414,2416,2418,2420,2422,2424,2426,2428,2430,2432,2434,2436,2438,2440,2442,2444,2446,2448,2450,2452,2454,2456,2458,2460,2462,2464,2466,2468,2470,2472,2474,2476,2478,2480,2482,2484,2486,2488,2490,2492,2494,2496,2498,2500,2502,2504,2506,2508,2510,2512,2514,2516,2518,2520,2522,2524,2526,2528,2530,2532,2534,2536,2538,2540,2542,2544,2546,2548,2550,2552,2554,2556,2558,2560,2562,2564,2566,2568,2570,2572,2574,2576,2578,2580,2582,2584,2586,2588,2590,2592,2594,2596,2598,2600,2602,2604,2606,2608,2610,2612,2614,2616,2618,2620,2622,2624,2626,2628,2630,2632,2634,2636,2638,2640,2642,2644,2646,2648,2650,2652,2654,2656,2658,2660,2662,2664,2666,2668,2670,2672,2674,2676,2678,2680,2682,2684,2686,2688,2690,2692,2694,2696,2698,2700,2702,2704,2706,2708,2710,2712,2714,2716,2718,2720,2722,2724,2726,2728,2730,2732,2734,2736,2738,2740,2742,2744,2746,2748,2750,2752,2754,2756,2758,2760,2762,2764,2766,2768,2770,2772,2774,2776,2778,2780,2782,2784,2786,2788,2790,2792,2794,2796,2798,2800,2802,2804,2806,2808,2810,2812,2814,2816,2818,2820,2822,2824,2826,2828,2830,2832,2834,2836,2838,2840,2842,2844,2846,2848,2850,2852,2854,2856,2858,2860,2862,2864,2866,2868,2870,2872,2874,2876,2878,2880,2882,2884,2886,2888,2890,2892,2894,2896,2898,2900,2902,2904,2906,2908,2910,2912,2914,2916,2918,2920,2922,2924,2926,2928,2930,2932,2934,2936,2938,2940,2942,2944,2946,2948,2950,2952,2954,2956,2958,2960,2962,2964,2966,2968,2970,2972,2974,2976,2978,2980,2982,2984,2986,2988,2990,2992,2994,2996,2998); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_800k_pkey on t_range_800k + Index Cond: (id = ANY ('{1000,1002,1004,1006,1008,1010,1012,1014,1016,1018,1020,1022,1024,1026,1028,1030,1032,1034,1036,1038,1040,1042,1044,1046,1048,1050,1052,1054,1056,1058,1060,1062,1064,1066,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1088,1090,1092,1094,1096,1098,1100,1102,1104,1106,1108,1110,1112,1114,1116,1118,1120,1122,1124,1126,1128,1130,1132,1134,1136,1138,1140,1142,1144,1146,1148,1150,1152,1154,1156,1158,1160,1162,1164,1166,1168,1170,1172,1174,1176,1178,1180,1182,1184,1186,1188,1190,1192,1194,1196,1198,1200,1202,1204,1206,1208,1210,1212,1214,1216,1218,1220,1222,1224,1226,1228,1230,1232,1234,1236,1238,1240,1242,1244,1246,1248,1250,1252,1254,1256,1258,1260,1262,1264,1266,1268,1270,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292,1294,1296,1298,1300,1302,1304,1306,1308,1310,1312,1314,1316,1318,1320,1322,1324,1326,1328,1330,1332,1334,1336,1338,1340,1342,1344,1346,1348,1350,1352,1354,1356,1358,1360,1362,1364,1366,1368,1370,1372,1374,1376,1378,1380,1382,1384,1386,1388,1390,1392,1394,1396,1398,1400,1402,1404,1406,1408,1410,1412,1414,1416,1418,1420,1422,1424,1426,1428,1430,1432,1434,1436,1438,1440,1442,1444,1446,1448,1450,1452,1454,1456,1458,1460,1462,1464,1466,1468,1470,1472,1474,1476,1478,1480,1482,1484,1486,1488,1490,1492,1494,1496,1498,1500,1502,1504,1506,1508,1510,1512,1514,1516,1518,1520,1522,1524,1526,1528,1530,1532,1534,1536,1538,1540,1542,1544,1546,1548,1550,1552,1554,1556,1558,1560,1562,1564,1566,1568,1570,1572,1574,1576,1578,1580,1582,1584,1586,1588,1590,1592,1594,1596,1598,1600,1602,1604,1606,1608,1610,1612,1614,1616,1618,1620,1622,1624,1626,1628,1630,1632,1634,1636,1638,1640,1642,1644,1646,1648,1650,1652,1654,1656,1658,1660,1662,1664,1666,1668,1670,1672,1674,1676,1678,1680,1682,1684,1686,1688,1690,1692,1694,1696,1698,1700,1702,1704,1706,1708,1710,1712,1714,1716,1718,1720,1722,1724,1726,1728,1730,1732,1734,1736,1738,1740,1742,1744,1746,1748,1750,1752,1754,1756,1758,1760,1762,1764,1766,1768,1770,1772,1774,1776,1778,1780,1782,1784,1786,1788,1790,1792,1794,1796,1798,1800,1802,1804,1806,1808,1810,1812,1814,1816,1818,1820,1822,1824,1826,1828,1830,1832,1834,1836,1838,1840,1842,1844,1846,1848,1850,1852,1854,1856,1858,1860,1862,1864,1866,1868,1870,1872,1874,1876,1878,1880,1882,1884,1886,1888,1890,1892,1894,1896,1898,1900,1902,1904,1906,1908,1910,1912,1914,1916,1918,1920,1922,1924,1926,1928,1930,1932,1934,1936,1938,1940,1942,1944,1946,1948,1950,1952,1954,1956,1958,1960,1962,1964,1966,1968,1970,1972,1974,1976,1978,1980,1982,1984,1986,1988,1990,1992,1994,1996,1998,2000,2002,2004,2006,2008,2010,2012,2014,2016,2018,2020,2022,2024,2026,2028,2030,2032,2034,2036,2038,2040,2042,2044,2046,2048,2050,2052,2054,2056,2058,2060,2062,2064,2066,2068,2070,2072,2074,2076,2078,2080,2082,2084,2086,2088,2090,2092,2094,2096,2098,2100,2102,2104,2106,2108,2110,2112,2114,2116,2118,2120,2122,2124,2126,2128,2130,2132,2134,2136,2138,2140,2142,2144,2146,2148,2150,2152,2154,2156,2158,2160,2162,2164,2166,2168,2170,2172,2174,2176,2178,2180,2182,2184,2186,2188,2190,2192,2194,2196,2198,2200,2202,2204,2206,2208,2210,2212,2214,2216,2218,2220,2222,2224,2226,2228,2230,2232,2234,2236,2238,2240,2242,2244,2246,2248,2250,2252,2254,2256,2258,2260,2262,2264,2266,2268,2270,2272,2274,2276,2278,2280,2282,2284,2286,2288,2290,2292,2294,2296,2298,2300,2302,2304,2306,2308,2310,2312,2314,2316,2318,2320,2322,2324,2326,2328,2330,2332,2334,2336,2338,2340,2342,2344,2346,2348,2350,2352,2354,2356,2358,2360,2362,2364,2366,2368,2370,2372,2374,2376,2378,2380,2382,2384,2386,2388,2390,2392,2394,2396,2398,2400,2402,2404,2406,2408,2410,2412,2414,2416,2418,2420,2422,2424,2426,2428,2430,2432,2434,2436,2438,2440,2442,2444,2446,2448,2450,2452,2454,2456,2458,2460,2462,2464,2466,2468,2470,2472,2474,2476,2478,2480,2482,2484,2486,2488,2490,2492,2494,2496,2498,2500,2502,2504,2506,2508,2510,2512,2514,2516,2518,2520,2522,2524,2526,2528,2530,2532,2534,2536,2538,2540,2542,2544,2546,2548,2550,2552,2554,2556,2558,2560,2562,2564,2566,2568,2570,2572,2574,2576,2578,2580,2582,2584,2586,2588,2590,2592,2594,2596,2598,2600,2602,2604,2606,2608,2610,2612,2614,2616,2618,2620,2622,2624,2626,2628,2630,2632,2634,2636,2638,2640,2642,2644,2646,2648,2650,2652,2654,2656,2658,2660,2662,2664,2666,2668,2670,2672,2674,2676,2678,2680,2682,2684,2686,2688,2690,2692,2694,2696,2698,2700,2702,2704,2706,2708,2710,2712,2714,2716,2718,2720,2722,2724,2726,2728,2730,2732,2734,2736,2738,2740,2742,2744,2746,2748,2750,2752,2754,2756,2758,2760,2762,2764,2766,2768,2770,2772,2774,2776,2778,2780,2782,2784,2786,2788,2790,2792,2794,2796,2798,2800,2802,2804,2806,2808,2810,2812,2814,2816,2818,2820,2822,2824,2826,2828,2830,2832,2834,2836,2838,2840,2842,2844,2846,2848,2850,2852,2854,2856,2858,2860,2862,2864,2866,2868,2870,2872,2874,2876,2878,2880,2882,2884,2886,2888,2890,2892,2894,2896,2898,2900,2902,2904,2906,2908,2910,2912,2914,2916,2918,2920,2922,2924,2926,2928,2930,2932,2934,2936,2938,2940,2942,2944,2946,2948,2950,2952,2954,2956,2958,2960,2962,2964,2966,2968,2970,2972,2974,2976,2978,2980,2982,2984,2986,2988,2990,2992,2994,2996,2998}'::integer[])) +(2 rows) + +-- Query Hash: 6353cb90c7847f4060d03446e2af142c +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k WHERE id in (1000,1003,1006,1009,1012,1015,1018,1021,1024,1027,1030,1033,1036,1039,1042,1045,1048,1051,1054,1057,1060,1063,1066,1069,1072,1075,1078,1081,1084,1087,1090,1093,1096,1099,1102,1105,1108,1111,1114,1117,1120,1123,1126,1129,1132,1135,1138,1141,1144,1147,1150,1153,1156,1159,1162,1165,1168,1171,1174,1177,1180,1183,1186,1189,1192,1195,1198,1201,1204,1207,1210,1213,1216,1219,1222,1225,1228,1231,1234,1237,1240,1243,1246,1249,1252,1255,1258,1261,1264,1267,1270,1273,1276,1279,1282,1285,1288,1291,1294,1297,1300,1303,1306,1309,1312,1315,1318,1321,1324,1327,1330,1333,1336,1339,1342,1345,1348,1351,1354,1357,1360,1363,1366,1369,1372,1375,1378,1381,1384,1387,1390,1393,1396,1399,1402,1405,1408,1411,1414,1417,1420,1423,1426,1429,1432,1435,1438,1441,1444,1447,1450,1453,1456,1459,1462,1465,1468,1471,1474,1477,1480,1483,1486,1489,1492,1495,1498,1501,1504,1507,1510,1513,1516,1519,1522,1525,1528,1531,1534,1537,1540,1543,1546,1549,1552,1555,1558,1561,1564,1567,1570,1573,1576,1579,1582,1585,1588,1591,1594,1597,1600,1603,1606,1609,1612,1615,1618,1621,1624,1627,1630,1633,1636,1639,1642,1645,1648,1651,1654,1657,1660,1663,1666,1669,1672,1675,1678,1681,1684,1687,1690,1693,1696,1699,1702,1705,1708,1711,1714,1717,1720,1723,1726,1729,1732,1735,1738,1741,1744,1747,1750,1753,1756,1759,1762,1765,1768,1771,1774,1777,1780,1783,1786,1789,1792,1795,1798,1801,1804,1807,1810,1813,1816,1819,1822,1825,1828,1831,1834,1837,1840,1843,1846,1849,1852,1855,1858,1861,1864,1867,1870,1873,1876,1879,1882,1885,1888,1891,1894,1897,1900,1903,1906,1909,1912,1915,1918,1921,1924,1927,1930,1933,1936,1939,1942,1945,1948,1951,1954,1957,1960,1963,1966,1969,1972,1975,1978,1981,1984,1987,1990,1993,1996,1999,2002,2005,2008,2011,2014,2017,2020,2023,2026,2029,2032,2035,2038,2041,2044,2047,2050,2053,2056,2059,2062,2065,2068,2071,2074,2077,2080,2083,2086,2089,2092,2095,2098,2101,2104,2107,2110,2113,2116,2119,2122,2125,2128,2131,2134,2137,2140,2143,2146,2149,2152,2155,2158,2161,2164,2167,2170,2173,2176,2179,2182,2185,2188,2191,2194,2197,2200,2203,2206,2209,2212,2215,2218,2221,2224,2227,2230,2233,2236,2239,2242,2245,2248,2251,2254,2257,2260,2263,2266,2269,2272,2275,2278,2281,2284,2287,2290,2293,2296,2299,2302,2305,2308,2311,2314,2317,2320,2323,2326,2329,2332,2335,2338,2341,2344,2347,2350,2353,2356,2359,2362,2365,2368,2371,2374,2377,2380,2383,2386,2389,2392,2395,2398,2401,2404,2407,2410,2413,2416,2419,2422,2425,2428,2431,2434,2437,2440,2443,2446,2449,2452,2455,2458,2461,2464,2467,2470,2473,2476,2479,2482,2485,2488,2491,2494,2497,2500,2503,2506,2509,2512,2515,2518,2521,2524,2527,2530,2533,2536,2539,2542,2545,2548,2551,2554,2557,2560,2563,2566,2569,2572,2575,2578,2581,2584,2587,2590,2593,2596,2599,2602,2605,2608,2611,2614,2617,2620,2623,2626,2629,2632,2635,2638,2641,2644,2647,2650,2653,2656,2659,2662,2665,2668,2671,2674,2677,2680,2683,2686,2689,2692,2695,2698,2701,2704,2707,2710,2713,2716,2719,2722,2725,2728,2731,2734,2737,2740,2743,2746,2749,2752,2755,2758,2761,2764,2767,2770,2773,2776,2779,2782,2785,2788,2791,2794,2797,2800,2803,2806,2809,2812,2815,2818,2821,2824,2827,2830,2833,2836,2839,2842,2845,2848,2851,2854,2857,2860,2863,2866,2869,2872,2875,2878,2881,2884,2887,2890,2893,2896,2899,2902,2905,2908,2911,2914,2917,2920,2923,2926,2929,2932,2935,2938,2941,2944,2947,2950,2953,2956,2959,2962,2965,2968,2971,2974,2977,2980,2983,2986,2989,2992,2995,2998,3001,3004,3007,3010,3013,3016,3019,3022,3025,3028,3031,3034,3037,3040,3043,3046,3049,3052,3055,3058,3061,3064,3067,3070,3073,3076,3079,3082,3085,3088,3091,3094,3097,3100,3103,3106,3109,3112,3115,3118,3121,3124,3127,3130,3133,3136,3139,3142,3145,3148,3151,3154,3157,3160,3163,3166,3169,3172,3175,3178,3181,3184,3187,3190,3193,3196,3199,3202,3205,3208,3211,3214,3217,3220,3223,3226,3229,3232,3235,3238,3241,3244,3247,3250,3253,3256,3259,3262,3265,3268,3271,3274,3277,3280,3283,3286,3289,3292,3295,3298,3301,3304,3307,3310,3313,3316,3319,3322,3325,3328,3331,3334,3337,3340,3343,3346,3349,3352,3355,3358,3361,3364,3367,3370,3373,3376,3379,3382,3385,3388,3391,3394,3397,3400,3403,3406,3409,3412,3415,3418,3421,3424,3427,3430,3433,3436,3439,3442,3445,3448,3451,3454,3457,3460,3463,3466,3469,3472,3475,3478,3481,3484,3487,3490,3493,3496,3499,3502,3505,3508,3511,3514,3517,3520,3523,3526,3529,3532,3535,3538,3541,3544,3547,3550,3553,3556,3559,3562,3565,3568,3571,3574,3577,3580,3583,3586,3589,3592,3595,3598,3601,3604,3607,3610,3613,3616,3619,3622,3625,3628,3631,3634,3637,3640,3643,3646,3649,3652,3655,3658,3661,3664,3667,3670,3673,3676,3679,3682,3685,3688,3691,3694,3697,3700,3703,3706,3709,3712,3715,3718,3721,3724,3727,3730,3733,3736,3739,3742,3745,3748,3751,3754,3757,3760,3763,3766,3769,3772,3775,3778,3781,3784,3787,3790,3793,3796,3799,3802,3805,3808,3811,3814,3817,3820,3823,3826,3829,3832,3835,3838,3841,3844,3847,3850,3853,3856,3859,3862,3865,3868,3871,3874,3877,3880,3883,3886,3889,3892,3895,3898,3901,3904,3907,3910,3913,3916,3919,3922,3925,3928,3931,3934,3937,3940,3943,3946,3949,3952,3955,3958,3961,3964,3967,3970,3973,3976,3979,3982,3985,3988,3991,3994,3997); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_100k_pkey on t_range_100k + Index Cond: (id = ANY ('{1000,1003,1006,1009,1012,1015,1018,1021,1024,1027,1030,1033,1036,1039,1042,1045,1048,1051,1054,1057,1060,1063,1066,1069,1072,1075,1078,1081,1084,1087,1090,1093,1096,1099,1102,1105,1108,1111,1114,1117,1120,1123,1126,1129,1132,1135,1138,1141,1144,1147,1150,1153,1156,1159,1162,1165,1168,1171,1174,1177,1180,1183,1186,1189,1192,1195,1198,1201,1204,1207,1210,1213,1216,1219,1222,1225,1228,1231,1234,1237,1240,1243,1246,1249,1252,1255,1258,1261,1264,1267,1270,1273,1276,1279,1282,1285,1288,1291,1294,1297,1300,1303,1306,1309,1312,1315,1318,1321,1324,1327,1330,1333,1336,1339,1342,1345,1348,1351,1354,1357,1360,1363,1366,1369,1372,1375,1378,1381,1384,1387,1390,1393,1396,1399,1402,1405,1408,1411,1414,1417,1420,1423,1426,1429,1432,1435,1438,1441,1444,1447,1450,1453,1456,1459,1462,1465,1468,1471,1474,1477,1480,1483,1486,1489,1492,1495,1498,1501,1504,1507,1510,1513,1516,1519,1522,1525,1528,1531,1534,1537,1540,1543,1546,1549,1552,1555,1558,1561,1564,1567,1570,1573,1576,1579,1582,1585,1588,1591,1594,1597,1600,1603,1606,1609,1612,1615,1618,1621,1624,1627,1630,1633,1636,1639,1642,1645,1648,1651,1654,1657,1660,1663,1666,1669,1672,1675,1678,1681,1684,1687,1690,1693,1696,1699,1702,1705,1708,1711,1714,1717,1720,1723,1726,1729,1732,1735,1738,1741,1744,1747,1750,1753,1756,1759,1762,1765,1768,1771,1774,1777,1780,1783,1786,1789,1792,1795,1798,1801,1804,1807,1810,1813,1816,1819,1822,1825,1828,1831,1834,1837,1840,1843,1846,1849,1852,1855,1858,1861,1864,1867,1870,1873,1876,1879,1882,1885,1888,1891,1894,1897,1900,1903,1906,1909,1912,1915,1918,1921,1924,1927,1930,1933,1936,1939,1942,1945,1948,1951,1954,1957,1960,1963,1966,1969,1972,1975,1978,1981,1984,1987,1990,1993,1996,1999,2002,2005,2008,2011,2014,2017,2020,2023,2026,2029,2032,2035,2038,2041,2044,2047,2050,2053,2056,2059,2062,2065,2068,2071,2074,2077,2080,2083,2086,2089,2092,2095,2098,2101,2104,2107,2110,2113,2116,2119,2122,2125,2128,2131,2134,2137,2140,2143,2146,2149,2152,2155,2158,2161,2164,2167,2170,2173,2176,2179,2182,2185,2188,2191,2194,2197,2200,2203,2206,2209,2212,2215,2218,2221,2224,2227,2230,2233,2236,2239,2242,2245,2248,2251,2254,2257,2260,2263,2266,2269,2272,2275,2278,2281,2284,2287,2290,2293,2296,2299,2302,2305,2308,2311,2314,2317,2320,2323,2326,2329,2332,2335,2338,2341,2344,2347,2350,2353,2356,2359,2362,2365,2368,2371,2374,2377,2380,2383,2386,2389,2392,2395,2398,2401,2404,2407,2410,2413,2416,2419,2422,2425,2428,2431,2434,2437,2440,2443,2446,2449,2452,2455,2458,2461,2464,2467,2470,2473,2476,2479,2482,2485,2488,2491,2494,2497,2500,2503,2506,2509,2512,2515,2518,2521,2524,2527,2530,2533,2536,2539,2542,2545,2548,2551,2554,2557,2560,2563,2566,2569,2572,2575,2578,2581,2584,2587,2590,2593,2596,2599,2602,2605,2608,2611,2614,2617,2620,2623,2626,2629,2632,2635,2638,2641,2644,2647,2650,2653,2656,2659,2662,2665,2668,2671,2674,2677,2680,2683,2686,2689,2692,2695,2698,2701,2704,2707,2710,2713,2716,2719,2722,2725,2728,2731,2734,2737,2740,2743,2746,2749,2752,2755,2758,2761,2764,2767,2770,2773,2776,2779,2782,2785,2788,2791,2794,2797,2800,2803,2806,2809,2812,2815,2818,2821,2824,2827,2830,2833,2836,2839,2842,2845,2848,2851,2854,2857,2860,2863,2866,2869,2872,2875,2878,2881,2884,2887,2890,2893,2896,2899,2902,2905,2908,2911,2914,2917,2920,2923,2926,2929,2932,2935,2938,2941,2944,2947,2950,2953,2956,2959,2962,2965,2968,2971,2974,2977,2980,2983,2986,2989,2992,2995,2998,3001,3004,3007,3010,3013,3016,3019,3022,3025,3028,3031,3034,3037,3040,3043,3046,3049,3052,3055,3058,3061,3064,3067,3070,3073,3076,3079,3082,3085,3088,3091,3094,3097,3100,3103,3106,3109,3112,3115,3118,3121,3124,3127,3130,3133,3136,3139,3142,3145,3148,3151,3154,3157,3160,3163,3166,3169,3172,3175,3178,3181,3184,3187,3190,3193,3196,3199,3202,3205,3208,3211,3214,3217,3220,3223,3226,3229,3232,3235,3238,3241,3244,3247,3250,3253,3256,3259,3262,3265,3268,3271,3274,3277,3280,3283,3286,3289,3292,3295,3298,3301,3304,3307,3310,3313,3316,3319,3322,3325,3328,3331,3334,3337,3340,3343,3346,3349,3352,3355,3358,3361,3364,3367,3370,3373,3376,3379,3382,3385,3388,3391,3394,3397,3400,3403,3406,3409,3412,3415,3418,3421,3424,3427,3430,3433,3436,3439,3442,3445,3448,3451,3454,3457,3460,3463,3466,3469,3472,3475,3478,3481,3484,3487,3490,3493,3496,3499,3502,3505,3508,3511,3514,3517,3520,3523,3526,3529,3532,3535,3538,3541,3544,3547,3550,3553,3556,3559,3562,3565,3568,3571,3574,3577,3580,3583,3586,3589,3592,3595,3598,3601,3604,3607,3610,3613,3616,3619,3622,3625,3628,3631,3634,3637,3640,3643,3646,3649,3652,3655,3658,3661,3664,3667,3670,3673,3676,3679,3682,3685,3688,3691,3694,3697,3700,3703,3706,3709,3712,3715,3718,3721,3724,3727,3730,3733,3736,3739,3742,3745,3748,3751,3754,3757,3760,3763,3766,3769,3772,3775,3778,3781,3784,3787,3790,3793,3796,3799,3802,3805,3808,3811,3814,3817,3820,3823,3826,3829,3832,3835,3838,3841,3844,3847,3850,3853,3856,3859,3862,3865,3868,3871,3874,3877,3880,3883,3886,3889,3892,3895,3898,3901,3904,3907,3910,3913,3916,3919,3922,3925,3928,3931,3934,3937,3940,3943,3946,3949,3952,3955,3958,3961,3964,3967,3970,3973,3976,3979,3982,3985,3988,3991,3994,3997}'::integer[])) +(2 rows) + +-- Query Hash: 28ccced2188f69d563157387613f7174 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_200k WHERE id in (1000,1003,1006,1009,1012,1015,1018,1021,1024,1027,1030,1033,1036,1039,1042,1045,1048,1051,1054,1057,1060,1063,1066,1069,1072,1075,1078,1081,1084,1087,1090,1093,1096,1099,1102,1105,1108,1111,1114,1117,1120,1123,1126,1129,1132,1135,1138,1141,1144,1147,1150,1153,1156,1159,1162,1165,1168,1171,1174,1177,1180,1183,1186,1189,1192,1195,1198,1201,1204,1207,1210,1213,1216,1219,1222,1225,1228,1231,1234,1237,1240,1243,1246,1249,1252,1255,1258,1261,1264,1267,1270,1273,1276,1279,1282,1285,1288,1291,1294,1297,1300,1303,1306,1309,1312,1315,1318,1321,1324,1327,1330,1333,1336,1339,1342,1345,1348,1351,1354,1357,1360,1363,1366,1369,1372,1375,1378,1381,1384,1387,1390,1393,1396,1399,1402,1405,1408,1411,1414,1417,1420,1423,1426,1429,1432,1435,1438,1441,1444,1447,1450,1453,1456,1459,1462,1465,1468,1471,1474,1477,1480,1483,1486,1489,1492,1495,1498,1501,1504,1507,1510,1513,1516,1519,1522,1525,1528,1531,1534,1537,1540,1543,1546,1549,1552,1555,1558,1561,1564,1567,1570,1573,1576,1579,1582,1585,1588,1591,1594,1597,1600,1603,1606,1609,1612,1615,1618,1621,1624,1627,1630,1633,1636,1639,1642,1645,1648,1651,1654,1657,1660,1663,1666,1669,1672,1675,1678,1681,1684,1687,1690,1693,1696,1699,1702,1705,1708,1711,1714,1717,1720,1723,1726,1729,1732,1735,1738,1741,1744,1747,1750,1753,1756,1759,1762,1765,1768,1771,1774,1777,1780,1783,1786,1789,1792,1795,1798,1801,1804,1807,1810,1813,1816,1819,1822,1825,1828,1831,1834,1837,1840,1843,1846,1849,1852,1855,1858,1861,1864,1867,1870,1873,1876,1879,1882,1885,1888,1891,1894,1897,1900,1903,1906,1909,1912,1915,1918,1921,1924,1927,1930,1933,1936,1939,1942,1945,1948,1951,1954,1957,1960,1963,1966,1969,1972,1975,1978,1981,1984,1987,1990,1993,1996,1999,2002,2005,2008,2011,2014,2017,2020,2023,2026,2029,2032,2035,2038,2041,2044,2047,2050,2053,2056,2059,2062,2065,2068,2071,2074,2077,2080,2083,2086,2089,2092,2095,2098,2101,2104,2107,2110,2113,2116,2119,2122,2125,2128,2131,2134,2137,2140,2143,2146,2149,2152,2155,2158,2161,2164,2167,2170,2173,2176,2179,2182,2185,2188,2191,2194,2197,2200,2203,2206,2209,2212,2215,2218,2221,2224,2227,2230,2233,2236,2239,2242,2245,2248,2251,2254,2257,2260,2263,2266,2269,2272,2275,2278,2281,2284,2287,2290,2293,2296,2299,2302,2305,2308,2311,2314,2317,2320,2323,2326,2329,2332,2335,2338,2341,2344,2347,2350,2353,2356,2359,2362,2365,2368,2371,2374,2377,2380,2383,2386,2389,2392,2395,2398,2401,2404,2407,2410,2413,2416,2419,2422,2425,2428,2431,2434,2437,2440,2443,2446,2449,2452,2455,2458,2461,2464,2467,2470,2473,2476,2479,2482,2485,2488,2491,2494,2497,2500,2503,2506,2509,2512,2515,2518,2521,2524,2527,2530,2533,2536,2539,2542,2545,2548,2551,2554,2557,2560,2563,2566,2569,2572,2575,2578,2581,2584,2587,2590,2593,2596,2599,2602,2605,2608,2611,2614,2617,2620,2623,2626,2629,2632,2635,2638,2641,2644,2647,2650,2653,2656,2659,2662,2665,2668,2671,2674,2677,2680,2683,2686,2689,2692,2695,2698,2701,2704,2707,2710,2713,2716,2719,2722,2725,2728,2731,2734,2737,2740,2743,2746,2749,2752,2755,2758,2761,2764,2767,2770,2773,2776,2779,2782,2785,2788,2791,2794,2797,2800,2803,2806,2809,2812,2815,2818,2821,2824,2827,2830,2833,2836,2839,2842,2845,2848,2851,2854,2857,2860,2863,2866,2869,2872,2875,2878,2881,2884,2887,2890,2893,2896,2899,2902,2905,2908,2911,2914,2917,2920,2923,2926,2929,2932,2935,2938,2941,2944,2947,2950,2953,2956,2959,2962,2965,2968,2971,2974,2977,2980,2983,2986,2989,2992,2995,2998,3001,3004,3007,3010,3013,3016,3019,3022,3025,3028,3031,3034,3037,3040,3043,3046,3049,3052,3055,3058,3061,3064,3067,3070,3073,3076,3079,3082,3085,3088,3091,3094,3097,3100,3103,3106,3109,3112,3115,3118,3121,3124,3127,3130,3133,3136,3139,3142,3145,3148,3151,3154,3157,3160,3163,3166,3169,3172,3175,3178,3181,3184,3187,3190,3193,3196,3199,3202,3205,3208,3211,3214,3217,3220,3223,3226,3229,3232,3235,3238,3241,3244,3247,3250,3253,3256,3259,3262,3265,3268,3271,3274,3277,3280,3283,3286,3289,3292,3295,3298,3301,3304,3307,3310,3313,3316,3319,3322,3325,3328,3331,3334,3337,3340,3343,3346,3349,3352,3355,3358,3361,3364,3367,3370,3373,3376,3379,3382,3385,3388,3391,3394,3397,3400,3403,3406,3409,3412,3415,3418,3421,3424,3427,3430,3433,3436,3439,3442,3445,3448,3451,3454,3457,3460,3463,3466,3469,3472,3475,3478,3481,3484,3487,3490,3493,3496,3499,3502,3505,3508,3511,3514,3517,3520,3523,3526,3529,3532,3535,3538,3541,3544,3547,3550,3553,3556,3559,3562,3565,3568,3571,3574,3577,3580,3583,3586,3589,3592,3595,3598,3601,3604,3607,3610,3613,3616,3619,3622,3625,3628,3631,3634,3637,3640,3643,3646,3649,3652,3655,3658,3661,3664,3667,3670,3673,3676,3679,3682,3685,3688,3691,3694,3697,3700,3703,3706,3709,3712,3715,3718,3721,3724,3727,3730,3733,3736,3739,3742,3745,3748,3751,3754,3757,3760,3763,3766,3769,3772,3775,3778,3781,3784,3787,3790,3793,3796,3799,3802,3805,3808,3811,3814,3817,3820,3823,3826,3829,3832,3835,3838,3841,3844,3847,3850,3853,3856,3859,3862,3865,3868,3871,3874,3877,3880,3883,3886,3889,3892,3895,3898,3901,3904,3907,3910,3913,3916,3919,3922,3925,3928,3931,3934,3937,3940,3943,3946,3949,3952,3955,3958,3961,3964,3967,3970,3973,3976,3979,3982,3985,3988,3991,3994,3997); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_200k_pkey on t_range_200k + Index Cond: (id = ANY ('{1000,1003,1006,1009,1012,1015,1018,1021,1024,1027,1030,1033,1036,1039,1042,1045,1048,1051,1054,1057,1060,1063,1066,1069,1072,1075,1078,1081,1084,1087,1090,1093,1096,1099,1102,1105,1108,1111,1114,1117,1120,1123,1126,1129,1132,1135,1138,1141,1144,1147,1150,1153,1156,1159,1162,1165,1168,1171,1174,1177,1180,1183,1186,1189,1192,1195,1198,1201,1204,1207,1210,1213,1216,1219,1222,1225,1228,1231,1234,1237,1240,1243,1246,1249,1252,1255,1258,1261,1264,1267,1270,1273,1276,1279,1282,1285,1288,1291,1294,1297,1300,1303,1306,1309,1312,1315,1318,1321,1324,1327,1330,1333,1336,1339,1342,1345,1348,1351,1354,1357,1360,1363,1366,1369,1372,1375,1378,1381,1384,1387,1390,1393,1396,1399,1402,1405,1408,1411,1414,1417,1420,1423,1426,1429,1432,1435,1438,1441,1444,1447,1450,1453,1456,1459,1462,1465,1468,1471,1474,1477,1480,1483,1486,1489,1492,1495,1498,1501,1504,1507,1510,1513,1516,1519,1522,1525,1528,1531,1534,1537,1540,1543,1546,1549,1552,1555,1558,1561,1564,1567,1570,1573,1576,1579,1582,1585,1588,1591,1594,1597,1600,1603,1606,1609,1612,1615,1618,1621,1624,1627,1630,1633,1636,1639,1642,1645,1648,1651,1654,1657,1660,1663,1666,1669,1672,1675,1678,1681,1684,1687,1690,1693,1696,1699,1702,1705,1708,1711,1714,1717,1720,1723,1726,1729,1732,1735,1738,1741,1744,1747,1750,1753,1756,1759,1762,1765,1768,1771,1774,1777,1780,1783,1786,1789,1792,1795,1798,1801,1804,1807,1810,1813,1816,1819,1822,1825,1828,1831,1834,1837,1840,1843,1846,1849,1852,1855,1858,1861,1864,1867,1870,1873,1876,1879,1882,1885,1888,1891,1894,1897,1900,1903,1906,1909,1912,1915,1918,1921,1924,1927,1930,1933,1936,1939,1942,1945,1948,1951,1954,1957,1960,1963,1966,1969,1972,1975,1978,1981,1984,1987,1990,1993,1996,1999,2002,2005,2008,2011,2014,2017,2020,2023,2026,2029,2032,2035,2038,2041,2044,2047,2050,2053,2056,2059,2062,2065,2068,2071,2074,2077,2080,2083,2086,2089,2092,2095,2098,2101,2104,2107,2110,2113,2116,2119,2122,2125,2128,2131,2134,2137,2140,2143,2146,2149,2152,2155,2158,2161,2164,2167,2170,2173,2176,2179,2182,2185,2188,2191,2194,2197,2200,2203,2206,2209,2212,2215,2218,2221,2224,2227,2230,2233,2236,2239,2242,2245,2248,2251,2254,2257,2260,2263,2266,2269,2272,2275,2278,2281,2284,2287,2290,2293,2296,2299,2302,2305,2308,2311,2314,2317,2320,2323,2326,2329,2332,2335,2338,2341,2344,2347,2350,2353,2356,2359,2362,2365,2368,2371,2374,2377,2380,2383,2386,2389,2392,2395,2398,2401,2404,2407,2410,2413,2416,2419,2422,2425,2428,2431,2434,2437,2440,2443,2446,2449,2452,2455,2458,2461,2464,2467,2470,2473,2476,2479,2482,2485,2488,2491,2494,2497,2500,2503,2506,2509,2512,2515,2518,2521,2524,2527,2530,2533,2536,2539,2542,2545,2548,2551,2554,2557,2560,2563,2566,2569,2572,2575,2578,2581,2584,2587,2590,2593,2596,2599,2602,2605,2608,2611,2614,2617,2620,2623,2626,2629,2632,2635,2638,2641,2644,2647,2650,2653,2656,2659,2662,2665,2668,2671,2674,2677,2680,2683,2686,2689,2692,2695,2698,2701,2704,2707,2710,2713,2716,2719,2722,2725,2728,2731,2734,2737,2740,2743,2746,2749,2752,2755,2758,2761,2764,2767,2770,2773,2776,2779,2782,2785,2788,2791,2794,2797,2800,2803,2806,2809,2812,2815,2818,2821,2824,2827,2830,2833,2836,2839,2842,2845,2848,2851,2854,2857,2860,2863,2866,2869,2872,2875,2878,2881,2884,2887,2890,2893,2896,2899,2902,2905,2908,2911,2914,2917,2920,2923,2926,2929,2932,2935,2938,2941,2944,2947,2950,2953,2956,2959,2962,2965,2968,2971,2974,2977,2980,2983,2986,2989,2992,2995,2998,3001,3004,3007,3010,3013,3016,3019,3022,3025,3028,3031,3034,3037,3040,3043,3046,3049,3052,3055,3058,3061,3064,3067,3070,3073,3076,3079,3082,3085,3088,3091,3094,3097,3100,3103,3106,3109,3112,3115,3118,3121,3124,3127,3130,3133,3136,3139,3142,3145,3148,3151,3154,3157,3160,3163,3166,3169,3172,3175,3178,3181,3184,3187,3190,3193,3196,3199,3202,3205,3208,3211,3214,3217,3220,3223,3226,3229,3232,3235,3238,3241,3244,3247,3250,3253,3256,3259,3262,3265,3268,3271,3274,3277,3280,3283,3286,3289,3292,3295,3298,3301,3304,3307,3310,3313,3316,3319,3322,3325,3328,3331,3334,3337,3340,3343,3346,3349,3352,3355,3358,3361,3364,3367,3370,3373,3376,3379,3382,3385,3388,3391,3394,3397,3400,3403,3406,3409,3412,3415,3418,3421,3424,3427,3430,3433,3436,3439,3442,3445,3448,3451,3454,3457,3460,3463,3466,3469,3472,3475,3478,3481,3484,3487,3490,3493,3496,3499,3502,3505,3508,3511,3514,3517,3520,3523,3526,3529,3532,3535,3538,3541,3544,3547,3550,3553,3556,3559,3562,3565,3568,3571,3574,3577,3580,3583,3586,3589,3592,3595,3598,3601,3604,3607,3610,3613,3616,3619,3622,3625,3628,3631,3634,3637,3640,3643,3646,3649,3652,3655,3658,3661,3664,3667,3670,3673,3676,3679,3682,3685,3688,3691,3694,3697,3700,3703,3706,3709,3712,3715,3718,3721,3724,3727,3730,3733,3736,3739,3742,3745,3748,3751,3754,3757,3760,3763,3766,3769,3772,3775,3778,3781,3784,3787,3790,3793,3796,3799,3802,3805,3808,3811,3814,3817,3820,3823,3826,3829,3832,3835,3838,3841,3844,3847,3850,3853,3856,3859,3862,3865,3868,3871,3874,3877,3880,3883,3886,3889,3892,3895,3898,3901,3904,3907,3910,3913,3916,3919,3922,3925,3928,3931,3934,3937,3940,3943,3946,3949,3952,3955,3958,3961,3964,3967,3970,3973,3976,3979,3982,3985,3988,3991,3994,3997}'::integer[])) +(2 rows) + +-- Query Hash: c5e2c98de808494dabf3ee86d6b10194 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_400k WHERE id in (1000,1003,1006,1009,1012,1015,1018,1021,1024,1027,1030,1033,1036,1039,1042,1045,1048,1051,1054,1057,1060,1063,1066,1069,1072,1075,1078,1081,1084,1087,1090,1093,1096,1099,1102,1105,1108,1111,1114,1117,1120,1123,1126,1129,1132,1135,1138,1141,1144,1147,1150,1153,1156,1159,1162,1165,1168,1171,1174,1177,1180,1183,1186,1189,1192,1195,1198,1201,1204,1207,1210,1213,1216,1219,1222,1225,1228,1231,1234,1237,1240,1243,1246,1249,1252,1255,1258,1261,1264,1267,1270,1273,1276,1279,1282,1285,1288,1291,1294,1297,1300,1303,1306,1309,1312,1315,1318,1321,1324,1327,1330,1333,1336,1339,1342,1345,1348,1351,1354,1357,1360,1363,1366,1369,1372,1375,1378,1381,1384,1387,1390,1393,1396,1399,1402,1405,1408,1411,1414,1417,1420,1423,1426,1429,1432,1435,1438,1441,1444,1447,1450,1453,1456,1459,1462,1465,1468,1471,1474,1477,1480,1483,1486,1489,1492,1495,1498,1501,1504,1507,1510,1513,1516,1519,1522,1525,1528,1531,1534,1537,1540,1543,1546,1549,1552,1555,1558,1561,1564,1567,1570,1573,1576,1579,1582,1585,1588,1591,1594,1597,1600,1603,1606,1609,1612,1615,1618,1621,1624,1627,1630,1633,1636,1639,1642,1645,1648,1651,1654,1657,1660,1663,1666,1669,1672,1675,1678,1681,1684,1687,1690,1693,1696,1699,1702,1705,1708,1711,1714,1717,1720,1723,1726,1729,1732,1735,1738,1741,1744,1747,1750,1753,1756,1759,1762,1765,1768,1771,1774,1777,1780,1783,1786,1789,1792,1795,1798,1801,1804,1807,1810,1813,1816,1819,1822,1825,1828,1831,1834,1837,1840,1843,1846,1849,1852,1855,1858,1861,1864,1867,1870,1873,1876,1879,1882,1885,1888,1891,1894,1897,1900,1903,1906,1909,1912,1915,1918,1921,1924,1927,1930,1933,1936,1939,1942,1945,1948,1951,1954,1957,1960,1963,1966,1969,1972,1975,1978,1981,1984,1987,1990,1993,1996,1999,2002,2005,2008,2011,2014,2017,2020,2023,2026,2029,2032,2035,2038,2041,2044,2047,2050,2053,2056,2059,2062,2065,2068,2071,2074,2077,2080,2083,2086,2089,2092,2095,2098,2101,2104,2107,2110,2113,2116,2119,2122,2125,2128,2131,2134,2137,2140,2143,2146,2149,2152,2155,2158,2161,2164,2167,2170,2173,2176,2179,2182,2185,2188,2191,2194,2197,2200,2203,2206,2209,2212,2215,2218,2221,2224,2227,2230,2233,2236,2239,2242,2245,2248,2251,2254,2257,2260,2263,2266,2269,2272,2275,2278,2281,2284,2287,2290,2293,2296,2299,2302,2305,2308,2311,2314,2317,2320,2323,2326,2329,2332,2335,2338,2341,2344,2347,2350,2353,2356,2359,2362,2365,2368,2371,2374,2377,2380,2383,2386,2389,2392,2395,2398,2401,2404,2407,2410,2413,2416,2419,2422,2425,2428,2431,2434,2437,2440,2443,2446,2449,2452,2455,2458,2461,2464,2467,2470,2473,2476,2479,2482,2485,2488,2491,2494,2497,2500,2503,2506,2509,2512,2515,2518,2521,2524,2527,2530,2533,2536,2539,2542,2545,2548,2551,2554,2557,2560,2563,2566,2569,2572,2575,2578,2581,2584,2587,2590,2593,2596,2599,2602,2605,2608,2611,2614,2617,2620,2623,2626,2629,2632,2635,2638,2641,2644,2647,2650,2653,2656,2659,2662,2665,2668,2671,2674,2677,2680,2683,2686,2689,2692,2695,2698,2701,2704,2707,2710,2713,2716,2719,2722,2725,2728,2731,2734,2737,2740,2743,2746,2749,2752,2755,2758,2761,2764,2767,2770,2773,2776,2779,2782,2785,2788,2791,2794,2797,2800,2803,2806,2809,2812,2815,2818,2821,2824,2827,2830,2833,2836,2839,2842,2845,2848,2851,2854,2857,2860,2863,2866,2869,2872,2875,2878,2881,2884,2887,2890,2893,2896,2899,2902,2905,2908,2911,2914,2917,2920,2923,2926,2929,2932,2935,2938,2941,2944,2947,2950,2953,2956,2959,2962,2965,2968,2971,2974,2977,2980,2983,2986,2989,2992,2995,2998,3001,3004,3007,3010,3013,3016,3019,3022,3025,3028,3031,3034,3037,3040,3043,3046,3049,3052,3055,3058,3061,3064,3067,3070,3073,3076,3079,3082,3085,3088,3091,3094,3097,3100,3103,3106,3109,3112,3115,3118,3121,3124,3127,3130,3133,3136,3139,3142,3145,3148,3151,3154,3157,3160,3163,3166,3169,3172,3175,3178,3181,3184,3187,3190,3193,3196,3199,3202,3205,3208,3211,3214,3217,3220,3223,3226,3229,3232,3235,3238,3241,3244,3247,3250,3253,3256,3259,3262,3265,3268,3271,3274,3277,3280,3283,3286,3289,3292,3295,3298,3301,3304,3307,3310,3313,3316,3319,3322,3325,3328,3331,3334,3337,3340,3343,3346,3349,3352,3355,3358,3361,3364,3367,3370,3373,3376,3379,3382,3385,3388,3391,3394,3397,3400,3403,3406,3409,3412,3415,3418,3421,3424,3427,3430,3433,3436,3439,3442,3445,3448,3451,3454,3457,3460,3463,3466,3469,3472,3475,3478,3481,3484,3487,3490,3493,3496,3499,3502,3505,3508,3511,3514,3517,3520,3523,3526,3529,3532,3535,3538,3541,3544,3547,3550,3553,3556,3559,3562,3565,3568,3571,3574,3577,3580,3583,3586,3589,3592,3595,3598,3601,3604,3607,3610,3613,3616,3619,3622,3625,3628,3631,3634,3637,3640,3643,3646,3649,3652,3655,3658,3661,3664,3667,3670,3673,3676,3679,3682,3685,3688,3691,3694,3697,3700,3703,3706,3709,3712,3715,3718,3721,3724,3727,3730,3733,3736,3739,3742,3745,3748,3751,3754,3757,3760,3763,3766,3769,3772,3775,3778,3781,3784,3787,3790,3793,3796,3799,3802,3805,3808,3811,3814,3817,3820,3823,3826,3829,3832,3835,3838,3841,3844,3847,3850,3853,3856,3859,3862,3865,3868,3871,3874,3877,3880,3883,3886,3889,3892,3895,3898,3901,3904,3907,3910,3913,3916,3919,3922,3925,3928,3931,3934,3937,3940,3943,3946,3949,3952,3955,3958,3961,3964,3967,3970,3973,3976,3979,3982,3985,3988,3991,3994,3997); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_400k_pkey on t_range_400k + Index Cond: (id = ANY ('{1000,1003,1006,1009,1012,1015,1018,1021,1024,1027,1030,1033,1036,1039,1042,1045,1048,1051,1054,1057,1060,1063,1066,1069,1072,1075,1078,1081,1084,1087,1090,1093,1096,1099,1102,1105,1108,1111,1114,1117,1120,1123,1126,1129,1132,1135,1138,1141,1144,1147,1150,1153,1156,1159,1162,1165,1168,1171,1174,1177,1180,1183,1186,1189,1192,1195,1198,1201,1204,1207,1210,1213,1216,1219,1222,1225,1228,1231,1234,1237,1240,1243,1246,1249,1252,1255,1258,1261,1264,1267,1270,1273,1276,1279,1282,1285,1288,1291,1294,1297,1300,1303,1306,1309,1312,1315,1318,1321,1324,1327,1330,1333,1336,1339,1342,1345,1348,1351,1354,1357,1360,1363,1366,1369,1372,1375,1378,1381,1384,1387,1390,1393,1396,1399,1402,1405,1408,1411,1414,1417,1420,1423,1426,1429,1432,1435,1438,1441,1444,1447,1450,1453,1456,1459,1462,1465,1468,1471,1474,1477,1480,1483,1486,1489,1492,1495,1498,1501,1504,1507,1510,1513,1516,1519,1522,1525,1528,1531,1534,1537,1540,1543,1546,1549,1552,1555,1558,1561,1564,1567,1570,1573,1576,1579,1582,1585,1588,1591,1594,1597,1600,1603,1606,1609,1612,1615,1618,1621,1624,1627,1630,1633,1636,1639,1642,1645,1648,1651,1654,1657,1660,1663,1666,1669,1672,1675,1678,1681,1684,1687,1690,1693,1696,1699,1702,1705,1708,1711,1714,1717,1720,1723,1726,1729,1732,1735,1738,1741,1744,1747,1750,1753,1756,1759,1762,1765,1768,1771,1774,1777,1780,1783,1786,1789,1792,1795,1798,1801,1804,1807,1810,1813,1816,1819,1822,1825,1828,1831,1834,1837,1840,1843,1846,1849,1852,1855,1858,1861,1864,1867,1870,1873,1876,1879,1882,1885,1888,1891,1894,1897,1900,1903,1906,1909,1912,1915,1918,1921,1924,1927,1930,1933,1936,1939,1942,1945,1948,1951,1954,1957,1960,1963,1966,1969,1972,1975,1978,1981,1984,1987,1990,1993,1996,1999,2002,2005,2008,2011,2014,2017,2020,2023,2026,2029,2032,2035,2038,2041,2044,2047,2050,2053,2056,2059,2062,2065,2068,2071,2074,2077,2080,2083,2086,2089,2092,2095,2098,2101,2104,2107,2110,2113,2116,2119,2122,2125,2128,2131,2134,2137,2140,2143,2146,2149,2152,2155,2158,2161,2164,2167,2170,2173,2176,2179,2182,2185,2188,2191,2194,2197,2200,2203,2206,2209,2212,2215,2218,2221,2224,2227,2230,2233,2236,2239,2242,2245,2248,2251,2254,2257,2260,2263,2266,2269,2272,2275,2278,2281,2284,2287,2290,2293,2296,2299,2302,2305,2308,2311,2314,2317,2320,2323,2326,2329,2332,2335,2338,2341,2344,2347,2350,2353,2356,2359,2362,2365,2368,2371,2374,2377,2380,2383,2386,2389,2392,2395,2398,2401,2404,2407,2410,2413,2416,2419,2422,2425,2428,2431,2434,2437,2440,2443,2446,2449,2452,2455,2458,2461,2464,2467,2470,2473,2476,2479,2482,2485,2488,2491,2494,2497,2500,2503,2506,2509,2512,2515,2518,2521,2524,2527,2530,2533,2536,2539,2542,2545,2548,2551,2554,2557,2560,2563,2566,2569,2572,2575,2578,2581,2584,2587,2590,2593,2596,2599,2602,2605,2608,2611,2614,2617,2620,2623,2626,2629,2632,2635,2638,2641,2644,2647,2650,2653,2656,2659,2662,2665,2668,2671,2674,2677,2680,2683,2686,2689,2692,2695,2698,2701,2704,2707,2710,2713,2716,2719,2722,2725,2728,2731,2734,2737,2740,2743,2746,2749,2752,2755,2758,2761,2764,2767,2770,2773,2776,2779,2782,2785,2788,2791,2794,2797,2800,2803,2806,2809,2812,2815,2818,2821,2824,2827,2830,2833,2836,2839,2842,2845,2848,2851,2854,2857,2860,2863,2866,2869,2872,2875,2878,2881,2884,2887,2890,2893,2896,2899,2902,2905,2908,2911,2914,2917,2920,2923,2926,2929,2932,2935,2938,2941,2944,2947,2950,2953,2956,2959,2962,2965,2968,2971,2974,2977,2980,2983,2986,2989,2992,2995,2998,3001,3004,3007,3010,3013,3016,3019,3022,3025,3028,3031,3034,3037,3040,3043,3046,3049,3052,3055,3058,3061,3064,3067,3070,3073,3076,3079,3082,3085,3088,3091,3094,3097,3100,3103,3106,3109,3112,3115,3118,3121,3124,3127,3130,3133,3136,3139,3142,3145,3148,3151,3154,3157,3160,3163,3166,3169,3172,3175,3178,3181,3184,3187,3190,3193,3196,3199,3202,3205,3208,3211,3214,3217,3220,3223,3226,3229,3232,3235,3238,3241,3244,3247,3250,3253,3256,3259,3262,3265,3268,3271,3274,3277,3280,3283,3286,3289,3292,3295,3298,3301,3304,3307,3310,3313,3316,3319,3322,3325,3328,3331,3334,3337,3340,3343,3346,3349,3352,3355,3358,3361,3364,3367,3370,3373,3376,3379,3382,3385,3388,3391,3394,3397,3400,3403,3406,3409,3412,3415,3418,3421,3424,3427,3430,3433,3436,3439,3442,3445,3448,3451,3454,3457,3460,3463,3466,3469,3472,3475,3478,3481,3484,3487,3490,3493,3496,3499,3502,3505,3508,3511,3514,3517,3520,3523,3526,3529,3532,3535,3538,3541,3544,3547,3550,3553,3556,3559,3562,3565,3568,3571,3574,3577,3580,3583,3586,3589,3592,3595,3598,3601,3604,3607,3610,3613,3616,3619,3622,3625,3628,3631,3634,3637,3640,3643,3646,3649,3652,3655,3658,3661,3664,3667,3670,3673,3676,3679,3682,3685,3688,3691,3694,3697,3700,3703,3706,3709,3712,3715,3718,3721,3724,3727,3730,3733,3736,3739,3742,3745,3748,3751,3754,3757,3760,3763,3766,3769,3772,3775,3778,3781,3784,3787,3790,3793,3796,3799,3802,3805,3808,3811,3814,3817,3820,3823,3826,3829,3832,3835,3838,3841,3844,3847,3850,3853,3856,3859,3862,3865,3868,3871,3874,3877,3880,3883,3886,3889,3892,3895,3898,3901,3904,3907,3910,3913,3916,3919,3922,3925,3928,3931,3934,3937,3940,3943,3946,3949,3952,3955,3958,3961,3964,3967,3970,3973,3976,3979,3982,3985,3988,3991,3994,3997}'::integer[])) +(2 rows) + +-- Query Hash: 0d543f722cec0306f1c612a1664f31c3 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_800k WHERE id in (1000,1003,1006,1009,1012,1015,1018,1021,1024,1027,1030,1033,1036,1039,1042,1045,1048,1051,1054,1057,1060,1063,1066,1069,1072,1075,1078,1081,1084,1087,1090,1093,1096,1099,1102,1105,1108,1111,1114,1117,1120,1123,1126,1129,1132,1135,1138,1141,1144,1147,1150,1153,1156,1159,1162,1165,1168,1171,1174,1177,1180,1183,1186,1189,1192,1195,1198,1201,1204,1207,1210,1213,1216,1219,1222,1225,1228,1231,1234,1237,1240,1243,1246,1249,1252,1255,1258,1261,1264,1267,1270,1273,1276,1279,1282,1285,1288,1291,1294,1297,1300,1303,1306,1309,1312,1315,1318,1321,1324,1327,1330,1333,1336,1339,1342,1345,1348,1351,1354,1357,1360,1363,1366,1369,1372,1375,1378,1381,1384,1387,1390,1393,1396,1399,1402,1405,1408,1411,1414,1417,1420,1423,1426,1429,1432,1435,1438,1441,1444,1447,1450,1453,1456,1459,1462,1465,1468,1471,1474,1477,1480,1483,1486,1489,1492,1495,1498,1501,1504,1507,1510,1513,1516,1519,1522,1525,1528,1531,1534,1537,1540,1543,1546,1549,1552,1555,1558,1561,1564,1567,1570,1573,1576,1579,1582,1585,1588,1591,1594,1597,1600,1603,1606,1609,1612,1615,1618,1621,1624,1627,1630,1633,1636,1639,1642,1645,1648,1651,1654,1657,1660,1663,1666,1669,1672,1675,1678,1681,1684,1687,1690,1693,1696,1699,1702,1705,1708,1711,1714,1717,1720,1723,1726,1729,1732,1735,1738,1741,1744,1747,1750,1753,1756,1759,1762,1765,1768,1771,1774,1777,1780,1783,1786,1789,1792,1795,1798,1801,1804,1807,1810,1813,1816,1819,1822,1825,1828,1831,1834,1837,1840,1843,1846,1849,1852,1855,1858,1861,1864,1867,1870,1873,1876,1879,1882,1885,1888,1891,1894,1897,1900,1903,1906,1909,1912,1915,1918,1921,1924,1927,1930,1933,1936,1939,1942,1945,1948,1951,1954,1957,1960,1963,1966,1969,1972,1975,1978,1981,1984,1987,1990,1993,1996,1999,2002,2005,2008,2011,2014,2017,2020,2023,2026,2029,2032,2035,2038,2041,2044,2047,2050,2053,2056,2059,2062,2065,2068,2071,2074,2077,2080,2083,2086,2089,2092,2095,2098,2101,2104,2107,2110,2113,2116,2119,2122,2125,2128,2131,2134,2137,2140,2143,2146,2149,2152,2155,2158,2161,2164,2167,2170,2173,2176,2179,2182,2185,2188,2191,2194,2197,2200,2203,2206,2209,2212,2215,2218,2221,2224,2227,2230,2233,2236,2239,2242,2245,2248,2251,2254,2257,2260,2263,2266,2269,2272,2275,2278,2281,2284,2287,2290,2293,2296,2299,2302,2305,2308,2311,2314,2317,2320,2323,2326,2329,2332,2335,2338,2341,2344,2347,2350,2353,2356,2359,2362,2365,2368,2371,2374,2377,2380,2383,2386,2389,2392,2395,2398,2401,2404,2407,2410,2413,2416,2419,2422,2425,2428,2431,2434,2437,2440,2443,2446,2449,2452,2455,2458,2461,2464,2467,2470,2473,2476,2479,2482,2485,2488,2491,2494,2497,2500,2503,2506,2509,2512,2515,2518,2521,2524,2527,2530,2533,2536,2539,2542,2545,2548,2551,2554,2557,2560,2563,2566,2569,2572,2575,2578,2581,2584,2587,2590,2593,2596,2599,2602,2605,2608,2611,2614,2617,2620,2623,2626,2629,2632,2635,2638,2641,2644,2647,2650,2653,2656,2659,2662,2665,2668,2671,2674,2677,2680,2683,2686,2689,2692,2695,2698,2701,2704,2707,2710,2713,2716,2719,2722,2725,2728,2731,2734,2737,2740,2743,2746,2749,2752,2755,2758,2761,2764,2767,2770,2773,2776,2779,2782,2785,2788,2791,2794,2797,2800,2803,2806,2809,2812,2815,2818,2821,2824,2827,2830,2833,2836,2839,2842,2845,2848,2851,2854,2857,2860,2863,2866,2869,2872,2875,2878,2881,2884,2887,2890,2893,2896,2899,2902,2905,2908,2911,2914,2917,2920,2923,2926,2929,2932,2935,2938,2941,2944,2947,2950,2953,2956,2959,2962,2965,2968,2971,2974,2977,2980,2983,2986,2989,2992,2995,2998,3001,3004,3007,3010,3013,3016,3019,3022,3025,3028,3031,3034,3037,3040,3043,3046,3049,3052,3055,3058,3061,3064,3067,3070,3073,3076,3079,3082,3085,3088,3091,3094,3097,3100,3103,3106,3109,3112,3115,3118,3121,3124,3127,3130,3133,3136,3139,3142,3145,3148,3151,3154,3157,3160,3163,3166,3169,3172,3175,3178,3181,3184,3187,3190,3193,3196,3199,3202,3205,3208,3211,3214,3217,3220,3223,3226,3229,3232,3235,3238,3241,3244,3247,3250,3253,3256,3259,3262,3265,3268,3271,3274,3277,3280,3283,3286,3289,3292,3295,3298,3301,3304,3307,3310,3313,3316,3319,3322,3325,3328,3331,3334,3337,3340,3343,3346,3349,3352,3355,3358,3361,3364,3367,3370,3373,3376,3379,3382,3385,3388,3391,3394,3397,3400,3403,3406,3409,3412,3415,3418,3421,3424,3427,3430,3433,3436,3439,3442,3445,3448,3451,3454,3457,3460,3463,3466,3469,3472,3475,3478,3481,3484,3487,3490,3493,3496,3499,3502,3505,3508,3511,3514,3517,3520,3523,3526,3529,3532,3535,3538,3541,3544,3547,3550,3553,3556,3559,3562,3565,3568,3571,3574,3577,3580,3583,3586,3589,3592,3595,3598,3601,3604,3607,3610,3613,3616,3619,3622,3625,3628,3631,3634,3637,3640,3643,3646,3649,3652,3655,3658,3661,3664,3667,3670,3673,3676,3679,3682,3685,3688,3691,3694,3697,3700,3703,3706,3709,3712,3715,3718,3721,3724,3727,3730,3733,3736,3739,3742,3745,3748,3751,3754,3757,3760,3763,3766,3769,3772,3775,3778,3781,3784,3787,3790,3793,3796,3799,3802,3805,3808,3811,3814,3817,3820,3823,3826,3829,3832,3835,3838,3841,3844,3847,3850,3853,3856,3859,3862,3865,3868,3871,3874,3877,3880,3883,3886,3889,3892,3895,3898,3901,3904,3907,3910,3913,3916,3919,3922,3925,3928,3931,3934,3937,3940,3943,3946,3949,3952,3955,3958,3961,3964,3967,3970,3973,3976,3979,3982,3985,3988,3991,3994,3997); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_800k_pkey on t_range_800k + Index Cond: (id = ANY ('{1000,1003,1006,1009,1012,1015,1018,1021,1024,1027,1030,1033,1036,1039,1042,1045,1048,1051,1054,1057,1060,1063,1066,1069,1072,1075,1078,1081,1084,1087,1090,1093,1096,1099,1102,1105,1108,1111,1114,1117,1120,1123,1126,1129,1132,1135,1138,1141,1144,1147,1150,1153,1156,1159,1162,1165,1168,1171,1174,1177,1180,1183,1186,1189,1192,1195,1198,1201,1204,1207,1210,1213,1216,1219,1222,1225,1228,1231,1234,1237,1240,1243,1246,1249,1252,1255,1258,1261,1264,1267,1270,1273,1276,1279,1282,1285,1288,1291,1294,1297,1300,1303,1306,1309,1312,1315,1318,1321,1324,1327,1330,1333,1336,1339,1342,1345,1348,1351,1354,1357,1360,1363,1366,1369,1372,1375,1378,1381,1384,1387,1390,1393,1396,1399,1402,1405,1408,1411,1414,1417,1420,1423,1426,1429,1432,1435,1438,1441,1444,1447,1450,1453,1456,1459,1462,1465,1468,1471,1474,1477,1480,1483,1486,1489,1492,1495,1498,1501,1504,1507,1510,1513,1516,1519,1522,1525,1528,1531,1534,1537,1540,1543,1546,1549,1552,1555,1558,1561,1564,1567,1570,1573,1576,1579,1582,1585,1588,1591,1594,1597,1600,1603,1606,1609,1612,1615,1618,1621,1624,1627,1630,1633,1636,1639,1642,1645,1648,1651,1654,1657,1660,1663,1666,1669,1672,1675,1678,1681,1684,1687,1690,1693,1696,1699,1702,1705,1708,1711,1714,1717,1720,1723,1726,1729,1732,1735,1738,1741,1744,1747,1750,1753,1756,1759,1762,1765,1768,1771,1774,1777,1780,1783,1786,1789,1792,1795,1798,1801,1804,1807,1810,1813,1816,1819,1822,1825,1828,1831,1834,1837,1840,1843,1846,1849,1852,1855,1858,1861,1864,1867,1870,1873,1876,1879,1882,1885,1888,1891,1894,1897,1900,1903,1906,1909,1912,1915,1918,1921,1924,1927,1930,1933,1936,1939,1942,1945,1948,1951,1954,1957,1960,1963,1966,1969,1972,1975,1978,1981,1984,1987,1990,1993,1996,1999,2002,2005,2008,2011,2014,2017,2020,2023,2026,2029,2032,2035,2038,2041,2044,2047,2050,2053,2056,2059,2062,2065,2068,2071,2074,2077,2080,2083,2086,2089,2092,2095,2098,2101,2104,2107,2110,2113,2116,2119,2122,2125,2128,2131,2134,2137,2140,2143,2146,2149,2152,2155,2158,2161,2164,2167,2170,2173,2176,2179,2182,2185,2188,2191,2194,2197,2200,2203,2206,2209,2212,2215,2218,2221,2224,2227,2230,2233,2236,2239,2242,2245,2248,2251,2254,2257,2260,2263,2266,2269,2272,2275,2278,2281,2284,2287,2290,2293,2296,2299,2302,2305,2308,2311,2314,2317,2320,2323,2326,2329,2332,2335,2338,2341,2344,2347,2350,2353,2356,2359,2362,2365,2368,2371,2374,2377,2380,2383,2386,2389,2392,2395,2398,2401,2404,2407,2410,2413,2416,2419,2422,2425,2428,2431,2434,2437,2440,2443,2446,2449,2452,2455,2458,2461,2464,2467,2470,2473,2476,2479,2482,2485,2488,2491,2494,2497,2500,2503,2506,2509,2512,2515,2518,2521,2524,2527,2530,2533,2536,2539,2542,2545,2548,2551,2554,2557,2560,2563,2566,2569,2572,2575,2578,2581,2584,2587,2590,2593,2596,2599,2602,2605,2608,2611,2614,2617,2620,2623,2626,2629,2632,2635,2638,2641,2644,2647,2650,2653,2656,2659,2662,2665,2668,2671,2674,2677,2680,2683,2686,2689,2692,2695,2698,2701,2704,2707,2710,2713,2716,2719,2722,2725,2728,2731,2734,2737,2740,2743,2746,2749,2752,2755,2758,2761,2764,2767,2770,2773,2776,2779,2782,2785,2788,2791,2794,2797,2800,2803,2806,2809,2812,2815,2818,2821,2824,2827,2830,2833,2836,2839,2842,2845,2848,2851,2854,2857,2860,2863,2866,2869,2872,2875,2878,2881,2884,2887,2890,2893,2896,2899,2902,2905,2908,2911,2914,2917,2920,2923,2926,2929,2932,2935,2938,2941,2944,2947,2950,2953,2956,2959,2962,2965,2968,2971,2974,2977,2980,2983,2986,2989,2992,2995,2998,3001,3004,3007,3010,3013,3016,3019,3022,3025,3028,3031,3034,3037,3040,3043,3046,3049,3052,3055,3058,3061,3064,3067,3070,3073,3076,3079,3082,3085,3088,3091,3094,3097,3100,3103,3106,3109,3112,3115,3118,3121,3124,3127,3130,3133,3136,3139,3142,3145,3148,3151,3154,3157,3160,3163,3166,3169,3172,3175,3178,3181,3184,3187,3190,3193,3196,3199,3202,3205,3208,3211,3214,3217,3220,3223,3226,3229,3232,3235,3238,3241,3244,3247,3250,3253,3256,3259,3262,3265,3268,3271,3274,3277,3280,3283,3286,3289,3292,3295,3298,3301,3304,3307,3310,3313,3316,3319,3322,3325,3328,3331,3334,3337,3340,3343,3346,3349,3352,3355,3358,3361,3364,3367,3370,3373,3376,3379,3382,3385,3388,3391,3394,3397,3400,3403,3406,3409,3412,3415,3418,3421,3424,3427,3430,3433,3436,3439,3442,3445,3448,3451,3454,3457,3460,3463,3466,3469,3472,3475,3478,3481,3484,3487,3490,3493,3496,3499,3502,3505,3508,3511,3514,3517,3520,3523,3526,3529,3532,3535,3538,3541,3544,3547,3550,3553,3556,3559,3562,3565,3568,3571,3574,3577,3580,3583,3586,3589,3592,3595,3598,3601,3604,3607,3610,3613,3616,3619,3622,3625,3628,3631,3634,3637,3640,3643,3646,3649,3652,3655,3658,3661,3664,3667,3670,3673,3676,3679,3682,3685,3688,3691,3694,3697,3700,3703,3706,3709,3712,3715,3718,3721,3724,3727,3730,3733,3736,3739,3742,3745,3748,3751,3754,3757,3760,3763,3766,3769,3772,3775,3778,3781,3784,3787,3790,3793,3796,3799,3802,3805,3808,3811,3814,3817,3820,3823,3826,3829,3832,3835,3838,3841,3844,3847,3850,3853,3856,3859,3862,3865,3868,3871,3874,3877,3880,3883,3886,3889,3892,3895,3898,3901,3904,3907,3910,3913,3916,3919,3922,3925,3928,3931,3934,3937,3940,3943,3946,3949,3952,3955,3958,3961,3964,3967,3970,3973,3976,3979,3982,3985,3988,3991,3994,3997}'::integer[])) +(2 rows) + +-- Query Hash: f59aff38836fd18f7660e9d299b323d5 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_100k_pkey on t_range_100k + Index Cond: (id = ANY ('{1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996}'::integer[])) +(2 rows) + +-- Query Hash: 46c5f5b6c31d62cf0eedf95fa5869254 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_200k WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_200k_pkey on t_range_200k + Index Cond: (id = ANY ('{1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996}'::integer[])) +(2 rows) + +-- Query Hash: 82e1555fc50aae7a4634243c4179f8f4 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_400k WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_400k_pkey on t_range_400k + Index Cond: (id = ANY ('{1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996}'::integer[])) +(2 rows) + +-- Query Hash: f075a79f20910f7f9fb02cf29d58e408 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_800k WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_800k_pkey on t_range_800k + Index Cond: (id = ANY ('{1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996}'::integer[])) +(2 rows) + +-- Query Hash: 2444a94079c56124c3e124b23ca914e5 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_1m_pkey on t_range_1m + Index Cond: (id = ANY ('{1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023}'::integer[])) +(2 rows) + +-- Query Hash: 6ec5b30f1571b8d2a011100c8e0c7a11 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1002,1004,1006,1008,1010,1012,1014,1016,1018,1020,1022,1024,1026,1028,1030,1032,1034,1036,1038,1040,1042,1044,1046,1048,1050,1052,1054,1056,1058,1060,1062,1064,1066,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1088,1090,1092,1094,1096,1098,1100,1102,1104,1106,1108,1110,1112,1114,1116,1118,1120,1122,1124,1126,1128,1130,1132,1134,1136,1138,1140,1142,1144,1146,1148,1150,1152,1154,1156,1158,1160,1162,1164,1166,1168,1170,1172,1174,1176,1178,1180,1182,1184,1186,1188,1190,1192,1194,1196,1198,1200,1202,1204,1206,1208,1210,1212,1214,1216,1218,1220,1222,1224,1226,1228,1230,1232,1234,1236,1238,1240,1242,1244,1246,1248,1250,1252,1254,1256,1258,1260,1262,1264,1266,1268,1270,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292,1294,1296,1298,1300,1302,1304,1306,1308,1310,1312,1314,1316,1318,1320,1322,1324,1326,1328,1330,1332,1334,1336,1338,1340,1342,1344,1346,1348,1350,1352,1354,1356,1358,1360,1362,1364,1366,1368,1370,1372,1374,1376,1378,1380,1382,1384,1386,1388,1390,1392,1394,1396,1398,1400,1402,1404,1406,1408,1410,1412,1414,1416,1418,1420,1422,1424,1426,1428,1430,1432,1434,1436,1438,1440,1442,1444,1446,1448,1450,1452,1454,1456,1458,1460,1462,1464,1466,1468,1470,1472,1474,1476,1478,1480,1482,1484,1486,1488,1490,1492,1494,1496,1498,1500,1502,1504,1506,1508,1510,1512,1514,1516,1518,1520,1522,1524,1526,1528,1530,1532,1534,1536,1538,1540,1542,1544,1546,1548,1550,1552,1554,1556,1558,1560,1562,1564,1566,1568,1570,1572,1574,1576,1578,1580,1582,1584,1586,1588,1590,1592,1594,1596,1598,1600,1602,1604,1606,1608,1610,1612,1614,1616,1618,1620,1622,1624,1626,1628,1630,1632,1634,1636,1638,1640,1642,1644,1646,1648,1650,1652,1654,1656,1658,1660,1662,1664,1666,1668,1670,1672,1674,1676,1678,1680,1682,1684,1686,1688,1690,1692,1694,1696,1698,1700,1702,1704,1706,1708,1710,1712,1714,1716,1718,1720,1722,1724,1726,1728,1730,1732,1734,1736,1738,1740,1742,1744,1746,1748,1750,1752,1754,1756,1758,1760,1762,1764,1766,1768,1770,1772,1774,1776,1778,1780,1782,1784,1786,1788,1790,1792,1794,1796,1798,1800,1802,1804,1806,1808,1810,1812,1814,1816,1818,1820,1822,1824,1826,1828,1830,1832,1834,1836,1838,1840,1842,1844,1846,1848,1850,1852,1854,1856,1858,1860,1862,1864,1866,1868,1870,1872,1874,1876,1878,1880,1882,1884,1886,1888,1890,1892,1894,1896,1898,1900,1902,1904,1906,1908,1910,1912,1914,1916,1918,1920,1922,1924,1926,1928,1930,1932,1934,1936,1938,1940,1942,1944,1946,1948,1950,1952,1954,1956,1958,1960,1962,1964,1966,1968,1970,1972,1974,1976,1978,1980,1982,1984,1986,1988,1990,1992,1994,1996,1998,2000,2002,2004,2006,2008,2010,2012,2014,2016,2018,2020,2022,2024,2026,2028,2030,2032,2034,2036,2038,2040,2042,2044,2046,2048,2050,2052,2054,2056,2058,2060,2062,2064,2066,2068,2070,2072,2074,2076,2078,2080,2082,2084,2086,2088,2090,2092,2094,2096,2098,2100,2102,2104,2106,2108,2110,2112,2114,2116,2118,2120,2122,2124,2126,2128,2130,2132,2134,2136,2138,2140,2142,2144,2146,2148,2150,2152,2154,2156,2158,2160,2162,2164,2166,2168,2170,2172,2174,2176,2178,2180,2182,2184,2186,2188,2190,2192,2194,2196,2198,2200,2202,2204,2206,2208,2210,2212,2214,2216,2218,2220,2222,2224,2226,2228,2230,2232,2234,2236,2238,2240,2242,2244,2246,2248,2250,2252,2254,2256,2258,2260,2262,2264,2266,2268,2270,2272,2274,2276,2278,2280,2282,2284,2286,2288,2290,2292,2294,2296,2298,2300,2302,2304,2306,2308,2310,2312,2314,2316,2318,2320,2322,2324,2326,2328,2330,2332,2334,2336,2338,2340,2342,2344,2346,2348,2350,2352,2354,2356,2358,2360,2362,2364,2366,2368,2370,2372,2374,2376,2378,2380,2382,2384,2386,2388,2390,2392,2394,2396,2398,2400,2402,2404,2406,2408,2410,2412,2414,2416,2418,2420,2422,2424,2426,2428,2430,2432,2434,2436,2438,2440,2442,2444,2446,2448,2450,2452,2454,2456,2458,2460,2462,2464,2466,2468,2470,2472,2474,2476,2478,2480,2482,2484,2486,2488,2490,2492,2494,2496,2498,2500,2502,2504,2506,2508,2510,2512,2514,2516,2518,2520,2522,2524,2526,2528,2530,2532,2534,2536,2538,2540,2542,2544,2546,2548,2550,2552,2554,2556,2558,2560,2562,2564,2566,2568,2570,2572,2574,2576,2578,2580,2582,2584,2586,2588,2590,2592,2594,2596,2598,2600,2602,2604,2606,2608,2610,2612,2614,2616,2618,2620,2622,2624,2626,2628,2630,2632,2634,2636,2638,2640,2642,2644,2646,2648,2650,2652,2654,2656,2658,2660,2662,2664,2666,2668,2670,2672,2674,2676,2678,2680,2682,2684,2686,2688,2690,2692,2694,2696,2698,2700,2702,2704,2706,2708,2710,2712,2714,2716,2718,2720,2722,2724,2726,2728,2730,2732,2734,2736,2738,2740,2742,2744,2746,2748,2750,2752,2754,2756,2758,2760,2762,2764,2766,2768,2770,2772,2774,2776,2778,2780,2782,2784,2786,2788,2790,2792,2794,2796,2798,2800,2802,2804,2806,2808,2810,2812,2814,2816,2818,2820,2822,2824,2826,2828,2830,2832,2834,2836,2838,2840,2842,2844,2846,2848,2850,2852,2854,2856,2858,2860,2862,2864,2866,2868,2870,2872,2874,2876,2878,2880,2882,2884,2886,2888,2890,2892,2894,2896,2898,2900,2902,2904,2906,2908,2910,2912,2914,2916,2918,2920,2922,2924,2926,2928,2930,2932,2934,2936,2938,2940,2942,2944,2946,2948,2950,2952,2954,2956,2958,2960,2962,2964,2966,2968,2970,2972,2974,2976,2978,2980,2982,2984,2986,2988,2990,2992,2994,2996,2998,3000,3002,3004,3006,3008,3010,3012,3014,3016,3018,3020,3022,3024,3026,3028,3030,3032,3034,3036,3038,3040,3042,3044,3046); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_1m_pkey on t_range_1m + Index Cond: (id = ANY ('{1000,1002,1004,1006,1008,1010,1012,1014,1016,1018,1020,1022,1024,1026,1028,1030,1032,1034,1036,1038,1040,1042,1044,1046,1048,1050,1052,1054,1056,1058,1060,1062,1064,1066,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1088,1090,1092,1094,1096,1098,1100,1102,1104,1106,1108,1110,1112,1114,1116,1118,1120,1122,1124,1126,1128,1130,1132,1134,1136,1138,1140,1142,1144,1146,1148,1150,1152,1154,1156,1158,1160,1162,1164,1166,1168,1170,1172,1174,1176,1178,1180,1182,1184,1186,1188,1190,1192,1194,1196,1198,1200,1202,1204,1206,1208,1210,1212,1214,1216,1218,1220,1222,1224,1226,1228,1230,1232,1234,1236,1238,1240,1242,1244,1246,1248,1250,1252,1254,1256,1258,1260,1262,1264,1266,1268,1270,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292,1294,1296,1298,1300,1302,1304,1306,1308,1310,1312,1314,1316,1318,1320,1322,1324,1326,1328,1330,1332,1334,1336,1338,1340,1342,1344,1346,1348,1350,1352,1354,1356,1358,1360,1362,1364,1366,1368,1370,1372,1374,1376,1378,1380,1382,1384,1386,1388,1390,1392,1394,1396,1398,1400,1402,1404,1406,1408,1410,1412,1414,1416,1418,1420,1422,1424,1426,1428,1430,1432,1434,1436,1438,1440,1442,1444,1446,1448,1450,1452,1454,1456,1458,1460,1462,1464,1466,1468,1470,1472,1474,1476,1478,1480,1482,1484,1486,1488,1490,1492,1494,1496,1498,1500,1502,1504,1506,1508,1510,1512,1514,1516,1518,1520,1522,1524,1526,1528,1530,1532,1534,1536,1538,1540,1542,1544,1546,1548,1550,1552,1554,1556,1558,1560,1562,1564,1566,1568,1570,1572,1574,1576,1578,1580,1582,1584,1586,1588,1590,1592,1594,1596,1598,1600,1602,1604,1606,1608,1610,1612,1614,1616,1618,1620,1622,1624,1626,1628,1630,1632,1634,1636,1638,1640,1642,1644,1646,1648,1650,1652,1654,1656,1658,1660,1662,1664,1666,1668,1670,1672,1674,1676,1678,1680,1682,1684,1686,1688,1690,1692,1694,1696,1698,1700,1702,1704,1706,1708,1710,1712,1714,1716,1718,1720,1722,1724,1726,1728,1730,1732,1734,1736,1738,1740,1742,1744,1746,1748,1750,1752,1754,1756,1758,1760,1762,1764,1766,1768,1770,1772,1774,1776,1778,1780,1782,1784,1786,1788,1790,1792,1794,1796,1798,1800,1802,1804,1806,1808,1810,1812,1814,1816,1818,1820,1822,1824,1826,1828,1830,1832,1834,1836,1838,1840,1842,1844,1846,1848,1850,1852,1854,1856,1858,1860,1862,1864,1866,1868,1870,1872,1874,1876,1878,1880,1882,1884,1886,1888,1890,1892,1894,1896,1898,1900,1902,1904,1906,1908,1910,1912,1914,1916,1918,1920,1922,1924,1926,1928,1930,1932,1934,1936,1938,1940,1942,1944,1946,1948,1950,1952,1954,1956,1958,1960,1962,1964,1966,1968,1970,1972,1974,1976,1978,1980,1982,1984,1986,1988,1990,1992,1994,1996,1998,2000,2002,2004,2006,2008,2010,2012,2014,2016,2018,2020,2022,2024,2026,2028,2030,2032,2034,2036,2038,2040,2042,2044,2046,2048,2050,2052,2054,2056,2058,2060,2062,2064,2066,2068,2070,2072,2074,2076,2078,2080,2082,2084,2086,2088,2090,2092,2094,2096,2098,2100,2102,2104,2106,2108,2110,2112,2114,2116,2118,2120,2122,2124,2126,2128,2130,2132,2134,2136,2138,2140,2142,2144,2146,2148,2150,2152,2154,2156,2158,2160,2162,2164,2166,2168,2170,2172,2174,2176,2178,2180,2182,2184,2186,2188,2190,2192,2194,2196,2198,2200,2202,2204,2206,2208,2210,2212,2214,2216,2218,2220,2222,2224,2226,2228,2230,2232,2234,2236,2238,2240,2242,2244,2246,2248,2250,2252,2254,2256,2258,2260,2262,2264,2266,2268,2270,2272,2274,2276,2278,2280,2282,2284,2286,2288,2290,2292,2294,2296,2298,2300,2302,2304,2306,2308,2310,2312,2314,2316,2318,2320,2322,2324,2326,2328,2330,2332,2334,2336,2338,2340,2342,2344,2346,2348,2350,2352,2354,2356,2358,2360,2362,2364,2366,2368,2370,2372,2374,2376,2378,2380,2382,2384,2386,2388,2390,2392,2394,2396,2398,2400,2402,2404,2406,2408,2410,2412,2414,2416,2418,2420,2422,2424,2426,2428,2430,2432,2434,2436,2438,2440,2442,2444,2446,2448,2450,2452,2454,2456,2458,2460,2462,2464,2466,2468,2470,2472,2474,2476,2478,2480,2482,2484,2486,2488,2490,2492,2494,2496,2498,2500,2502,2504,2506,2508,2510,2512,2514,2516,2518,2520,2522,2524,2526,2528,2530,2532,2534,2536,2538,2540,2542,2544,2546,2548,2550,2552,2554,2556,2558,2560,2562,2564,2566,2568,2570,2572,2574,2576,2578,2580,2582,2584,2586,2588,2590,2592,2594,2596,2598,2600,2602,2604,2606,2608,2610,2612,2614,2616,2618,2620,2622,2624,2626,2628,2630,2632,2634,2636,2638,2640,2642,2644,2646,2648,2650,2652,2654,2656,2658,2660,2662,2664,2666,2668,2670,2672,2674,2676,2678,2680,2682,2684,2686,2688,2690,2692,2694,2696,2698,2700,2702,2704,2706,2708,2710,2712,2714,2716,2718,2720,2722,2724,2726,2728,2730,2732,2734,2736,2738,2740,2742,2744,2746,2748,2750,2752,2754,2756,2758,2760,2762,2764,2766,2768,2770,2772,2774,2776,2778,2780,2782,2784,2786,2788,2790,2792,2794,2796,2798,2800,2802,2804,2806,2808,2810,2812,2814,2816,2818,2820,2822,2824,2826,2828,2830,2832,2834,2836,2838,2840,2842,2844,2846,2848,2850,2852,2854,2856,2858,2860,2862,2864,2866,2868,2870,2872,2874,2876,2878,2880,2882,2884,2886,2888,2890,2892,2894,2896,2898,2900,2902,2904,2906,2908,2910,2912,2914,2916,2918,2920,2922,2924,2926,2928,2930,2932,2934,2936,2938,2940,2942,2944,2946,2948,2950,2952,2954,2956,2958,2960,2962,2964,2966,2968,2970,2972,2974,2976,2978,2980,2982,2984,2986,2988,2990,2992,2994,2996,2998,3000,3002,3004,3006,3008,3010,3012,3014,3016,3018,3020,3022,3024,3026,3028,3030,3032,3034,3036,3038,3040,3042,3044,3046}'::integer[])) +(2 rows) + +-- Query Hash: ba1ed806efe431ffb9055da4e7369d8d +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1003,1006,1009,1012,1015,1018,1021,1024,1027,1030,1033,1036,1039,1042,1045,1048,1051,1054,1057,1060,1063,1066,1069,1072,1075,1078,1081,1084,1087,1090,1093,1096,1099,1102,1105,1108,1111,1114,1117,1120,1123,1126,1129,1132,1135,1138,1141,1144,1147,1150,1153,1156,1159,1162,1165,1168,1171,1174,1177,1180,1183,1186,1189,1192,1195,1198,1201,1204,1207,1210,1213,1216,1219,1222,1225,1228,1231,1234,1237,1240,1243,1246,1249,1252,1255,1258,1261,1264,1267,1270,1273,1276,1279,1282,1285,1288,1291,1294,1297,1300,1303,1306,1309,1312,1315,1318,1321,1324,1327,1330,1333,1336,1339,1342,1345,1348,1351,1354,1357,1360,1363,1366,1369,1372,1375,1378,1381,1384,1387,1390,1393,1396,1399,1402,1405,1408,1411,1414,1417,1420,1423,1426,1429,1432,1435,1438,1441,1444,1447,1450,1453,1456,1459,1462,1465,1468,1471,1474,1477,1480,1483,1486,1489,1492,1495,1498,1501,1504,1507,1510,1513,1516,1519,1522,1525,1528,1531,1534,1537,1540,1543,1546,1549,1552,1555,1558,1561,1564,1567,1570,1573,1576,1579,1582,1585,1588,1591,1594,1597,1600,1603,1606,1609,1612,1615,1618,1621,1624,1627,1630,1633,1636,1639,1642,1645,1648,1651,1654,1657,1660,1663,1666,1669,1672,1675,1678,1681,1684,1687,1690,1693,1696,1699,1702,1705,1708,1711,1714,1717,1720,1723,1726,1729,1732,1735,1738,1741,1744,1747,1750,1753,1756,1759,1762,1765,1768,1771,1774,1777,1780,1783,1786,1789,1792,1795,1798,1801,1804,1807,1810,1813,1816,1819,1822,1825,1828,1831,1834,1837,1840,1843,1846,1849,1852,1855,1858,1861,1864,1867,1870,1873,1876,1879,1882,1885,1888,1891,1894,1897,1900,1903,1906,1909,1912,1915,1918,1921,1924,1927,1930,1933,1936,1939,1942,1945,1948,1951,1954,1957,1960,1963,1966,1969,1972,1975,1978,1981,1984,1987,1990,1993,1996,1999,2002,2005,2008,2011,2014,2017,2020,2023,2026,2029,2032,2035,2038,2041,2044,2047,2050,2053,2056,2059,2062,2065,2068,2071,2074,2077,2080,2083,2086,2089,2092,2095,2098,2101,2104,2107,2110,2113,2116,2119,2122,2125,2128,2131,2134,2137,2140,2143,2146,2149,2152,2155,2158,2161,2164,2167,2170,2173,2176,2179,2182,2185,2188,2191,2194,2197,2200,2203,2206,2209,2212,2215,2218,2221,2224,2227,2230,2233,2236,2239,2242,2245,2248,2251,2254,2257,2260,2263,2266,2269,2272,2275,2278,2281,2284,2287,2290,2293,2296,2299,2302,2305,2308,2311,2314,2317,2320,2323,2326,2329,2332,2335,2338,2341,2344,2347,2350,2353,2356,2359,2362,2365,2368,2371,2374,2377,2380,2383,2386,2389,2392,2395,2398,2401,2404,2407,2410,2413,2416,2419,2422,2425,2428,2431,2434,2437,2440,2443,2446,2449,2452,2455,2458,2461,2464,2467,2470,2473,2476,2479,2482,2485,2488,2491,2494,2497,2500,2503,2506,2509,2512,2515,2518,2521,2524,2527,2530,2533,2536,2539,2542,2545,2548,2551,2554,2557,2560,2563,2566,2569,2572,2575,2578,2581,2584,2587,2590,2593,2596,2599,2602,2605,2608,2611,2614,2617,2620,2623,2626,2629,2632,2635,2638,2641,2644,2647,2650,2653,2656,2659,2662,2665,2668,2671,2674,2677,2680,2683,2686,2689,2692,2695,2698,2701,2704,2707,2710,2713,2716,2719,2722,2725,2728,2731,2734,2737,2740,2743,2746,2749,2752,2755,2758,2761,2764,2767,2770,2773,2776,2779,2782,2785,2788,2791,2794,2797,2800,2803,2806,2809,2812,2815,2818,2821,2824,2827,2830,2833,2836,2839,2842,2845,2848,2851,2854,2857,2860,2863,2866,2869,2872,2875,2878,2881,2884,2887,2890,2893,2896,2899,2902,2905,2908,2911,2914,2917,2920,2923,2926,2929,2932,2935,2938,2941,2944,2947,2950,2953,2956,2959,2962,2965,2968,2971,2974,2977,2980,2983,2986,2989,2992,2995,2998,3001,3004,3007,3010,3013,3016,3019,3022,3025,3028,3031,3034,3037,3040,3043,3046,3049,3052,3055,3058,3061,3064,3067,3070,3073,3076,3079,3082,3085,3088,3091,3094,3097,3100,3103,3106,3109,3112,3115,3118,3121,3124,3127,3130,3133,3136,3139,3142,3145,3148,3151,3154,3157,3160,3163,3166,3169,3172,3175,3178,3181,3184,3187,3190,3193,3196,3199,3202,3205,3208,3211,3214,3217,3220,3223,3226,3229,3232,3235,3238,3241,3244,3247,3250,3253,3256,3259,3262,3265,3268,3271,3274,3277,3280,3283,3286,3289,3292,3295,3298,3301,3304,3307,3310,3313,3316,3319,3322,3325,3328,3331,3334,3337,3340,3343,3346,3349,3352,3355,3358,3361,3364,3367,3370,3373,3376,3379,3382,3385,3388,3391,3394,3397,3400,3403,3406,3409,3412,3415,3418,3421,3424,3427,3430,3433,3436,3439,3442,3445,3448,3451,3454,3457,3460,3463,3466,3469,3472,3475,3478,3481,3484,3487,3490,3493,3496,3499,3502,3505,3508,3511,3514,3517,3520,3523,3526,3529,3532,3535,3538,3541,3544,3547,3550,3553,3556,3559,3562,3565,3568,3571,3574,3577,3580,3583,3586,3589,3592,3595,3598,3601,3604,3607,3610,3613,3616,3619,3622,3625,3628,3631,3634,3637,3640,3643,3646,3649,3652,3655,3658,3661,3664,3667,3670,3673,3676,3679,3682,3685,3688,3691,3694,3697,3700,3703,3706,3709,3712,3715,3718,3721,3724,3727,3730,3733,3736,3739,3742,3745,3748,3751,3754,3757,3760,3763,3766,3769,3772,3775,3778,3781,3784,3787,3790,3793,3796,3799,3802,3805,3808,3811,3814,3817,3820,3823,3826,3829,3832,3835,3838,3841,3844,3847,3850,3853,3856,3859,3862,3865,3868,3871,3874,3877,3880,3883,3886,3889,3892,3895,3898,3901,3904,3907,3910,3913,3916,3919,3922,3925,3928,3931,3934,3937,3940,3943,3946,3949,3952,3955,3958,3961,3964,3967,3970,3973,3976,3979,3982,3985,3988,3991,3994,3997,4000,4003,4006,4009,4012,4015,4018,4021,4024,4027,4030,4033,4036,4039,4042,4045,4048,4051,4054,4057,4060,4063,4066,4069); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_1m_pkey on t_range_1m + Index Cond: (id = ANY ('{1000,1003,1006,1009,1012,1015,1018,1021,1024,1027,1030,1033,1036,1039,1042,1045,1048,1051,1054,1057,1060,1063,1066,1069,1072,1075,1078,1081,1084,1087,1090,1093,1096,1099,1102,1105,1108,1111,1114,1117,1120,1123,1126,1129,1132,1135,1138,1141,1144,1147,1150,1153,1156,1159,1162,1165,1168,1171,1174,1177,1180,1183,1186,1189,1192,1195,1198,1201,1204,1207,1210,1213,1216,1219,1222,1225,1228,1231,1234,1237,1240,1243,1246,1249,1252,1255,1258,1261,1264,1267,1270,1273,1276,1279,1282,1285,1288,1291,1294,1297,1300,1303,1306,1309,1312,1315,1318,1321,1324,1327,1330,1333,1336,1339,1342,1345,1348,1351,1354,1357,1360,1363,1366,1369,1372,1375,1378,1381,1384,1387,1390,1393,1396,1399,1402,1405,1408,1411,1414,1417,1420,1423,1426,1429,1432,1435,1438,1441,1444,1447,1450,1453,1456,1459,1462,1465,1468,1471,1474,1477,1480,1483,1486,1489,1492,1495,1498,1501,1504,1507,1510,1513,1516,1519,1522,1525,1528,1531,1534,1537,1540,1543,1546,1549,1552,1555,1558,1561,1564,1567,1570,1573,1576,1579,1582,1585,1588,1591,1594,1597,1600,1603,1606,1609,1612,1615,1618,1621,1624,1627,1630,1633,1636,1639,1642,1645,1648,1651,1654,1657,1660,1663,1666,1669,1672,1675,1678,1681,1684,1687,1690,1693,1696,1699,1702,1705,1708,1711,1714,1717,1720,1723,1726,1729,1732,1735,1738,1741,1744,1747,1750,1753,1756,1759,1762,1765,1768,1771,1774,1777,1780,1783,1786,1789,1792,1795,1798,1801,1804,1807,1810,1813,1816,1819,1822,1825,1828,1831,1834,1837,1840,1843,1846,1849,1852,1855,1858,1861,1864,1867,1870,1873,1876,1879,1882,1885,1888,1891,1894,1897,1900,1903,1906,1909,1912,1915,1918,1921,1924,1927,1930,1933,1936,1939,1942,1945,1948,1951,1954,1957,1960,1963,1966,1969,1972,1975,1978,1981,1984,1987,1990,1993,1996,1999,2002,2005,2008,2011,2014,2017,2020,2023,2026,2029,2032,2035,2038,2041,2044,2047,2050,2053,2056,2059,2062,2065,2068,2071,2074,2077,2080,2083,2086,2089,2092,2095,2098,2101,2104,2107,2110,2113,2116,2119,2122,2125,2128,2131,2134,2137,2140,2143,2146,2149,2152,2155,2158,2161,2164,2167,2170,2173,2176,2179,2182,2185,2188,2191,2194,2197,2200,2203,2206,2209,2212,2215,2218,2221,2224,2227,2230,2233,2236,2239,2242,2245,2248,2251,2254,2257,2260,2263,2266,2269,2272,2275,2278,2281,2284,2287,2290,2293,2296,2299,2302,2305,2308,2311,2314,2317,2320,2323,2326,2329,2332,2335,2338,2341,2344,2347,2350,2353,2356,2359,2362,2365,2368,2371,2374,2377,2380,2383,2386,2389,2392,2395,2398,2401,2404,2407,2410,2413,2416,2419,2422,2425,2428,2431,2434,2437,2440,2443,2446,2449,2452,2455,2458,2461,2464,2467,2470,2473,2476,2479,2482,2485,2488,2491,2494,2497,2500,2503,2506,2509,2512,2515,2518,2521,2524,2527,2530,2533,2536,2539,2542,2545,2548,2551,2554,2557,2560,2563,2566,2569,2572,2575,2578,2581,2584,2587,2590,2593,2596,2599,2602,2605,2608,2611,2614,2617,2620,2623,2626,2629,2632,2635,2638,2641,2644,2647,2650,2653,2656,2659,2662,2665,2668,2671,2674,2677,2680,2683,2686,2689,2692,2695,2698,2701,2704,2707,2710,2713,2716,2719,2722,2725,2728,2731,2734,2737,2740,2743,2746,2749,2752,2755,2758,2761,2764,2767,2770,2773,2776,2779,2782,2785,2788,2791,2794,2797,2800,2803,2806,2809,2812,2815,2818,2821,2824,2827,2830,2833,2836,2839,2842,2845,2848,2851,2854,2857,2860,2863,2866,2869,2872,2875,2878,2881,2884,2887,2890,2893,2896,2899,2902,2905,2908,2911,2914,2917,2920,2923,2926,2929,2932,2935,2938,2941,2944,2947,2950,2953,2956,2959,2962,2965,2968,2971,2974,2977,2980,2983,2986,2989,2992,2995,2998,3001,3004,3007,3010,3013,3016,3019,3022,3025,3028,3031,3034,3037,3040,3043,3046,3049,3052,3055,3058,3061,3064,3067,3070,3073,3076,3079,3082,3085,3088,3091,3094,3097,3100,3103,3106,3109,3112,3115,3118,3121,3124,3127,3130,3133,3136,3139,3142,3145,3148,3151,3154,3157,3160,3163,3166,3169,3172,3175,3178,3181,3184,3187,3190,3193,3196,3199,3202,3205,3208,3211,3214,3217,3220,3223,3226,3229,3232,3235,3238,3241,3244,3247,3250,3253,3256,3259,3262,3265,3268,3271,3274,3277,3280,3283,3286,3289,3292,3295,3298,3301,3304,3307,3310,3313,3316,3319,3322,3325,3328,3331,3334,3337,3340,3343,3346,3349,3352,3355,3358,3361,3364,3367,3370,3373,3376,3379,3382,3385,3388,3391,3394,3397,3400,3403,3406,3409,3412,3415,3418,3421,3424,3427,3430,3433,3436,3439,3442,3445,3448,3451,3454,3457,3460,3463,3466,3469,3472,3475,3478,3481,3484,3487,3490,3493,3496,3499,3502,3505,3508,3511,3514,3517,3520,3523,3526,3529,3532,3535,3538,3541,3544,3547,3550,3553,3556,3559,3562,3565,3568,3571,3574,3577,3580,3583,3586,3589,3592,3595,3598,3601,3604,3607,3610,3613,3616,3619,3622,3625,3628,3631,3634,3637,3640,3643,3646,3649,3652,3655,3658,3661,3664,3667,3670,3673,3676,3679,3682,3685,3688,3691,3694,3697,3700,3703,3706,3709,3712,3715,3718,3721,3724,3727,3730,3733,3736,3739,3742,3745,3748,3751,3754,3757,3760,3763,3766,3769,3772,3775,3778,3781,3784,3787,3790,3793,3796,3799,3802,3805,3808,3811,3814,3817,3820,3823,3826,3829,3832,3835,3838,3841,3844,3847,3850,3853,3856,3859,3862,3865,3868,3871,3874,3877,3880,3883,3886,3889,3892,3895,3898,3901,3904,3907,3910,3913,3916,3919,3922,3925,3928,3931,3934,3937,3940,3943,3946,3949,3952,3955,3958,3961,3964,3967,3970,3973,3976,3979,3982,3985,3988,3991,3994,3997,4000,4003,4006,4009,4012,4015,4018,4021,4024,4027,4030,4033,4036,4039,4042,4045,4048,4051,4054,4057,4060,4063,4066,4069}'::integer[])) +(2 rows) + +-- Query Hash: d928fd8ee21dca9352127853c7736c00 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996,5000,5004,5008,5012,5016,5020,5024,5028,5032,5036,5040,5044,5048,5052,5056,5060,5064,5068,5072,5076,5080,5084,5088,5092); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_1m_pkey on t_range_1m + Index Cond: (id = ANY ('{1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996,5000,5004,5008,5012,5016,5020,5024,5028,5032,5036,5040,5044,5048,5052,5056,5060,5064,5068,5072,5076,5080,5084,5088,5092}'::integer[])) +(2 rows) + +-- Query Hash: af8f366ef942a5bd39311c440b01c88d +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1008,1016,1024,1032,1040,1048,1056,1064,1072,1080,1088,1096,1104,1112,1120,1128,1136,1144,1152,1160,1168,1176,1184,1192,1200,1208,1216,1224,1232,1240,1248,1256,1264,1272,1280,1288,1296,1304,1312,1320,1328,1336,1344,1352,1360,1368,1376,1384,1392,1400,1408,1416,1424,1432,1440,1448,1456,1464,1472,1480,1488,1496,1504,1512,1520,1528,1536,1544,1552,1560,1568,1576,1584,1592,1600,1608,1616,1624,1632,1640,1648,1656,1664,1672,1680,1688,1696,1704,1712,1720,1728,1736,1744,1752,1760,1768,1776,1784,1792,1800,1808,1816,1824,1832,1840,1848,1856,1864,1872,1880,1888,1896,1904,1912,1920,1928,1936,1944,1952,1960,1968,1976,1984,1992,2000,2008,2016,2024,2032,2040,2048,2056,2064,2072,2080,2088,2096,2104,2112,2120,2128,2136,2144,2152,2160,2168,2176,2184,2192,2200,2208,2216,2224,2232,2240,2248,2256,2264,2272,2280,2288,2296,2304,2312,2320,2328,2336,2344,2352,2360,2368,2376,2384,2392,2400,2408,2416,2424,2432,2440,2448,2456,2464,2472,2480,2488,2496,2504,2512,2520,2528,2536,2544,2552,2560,2568,2576,2584,2592,2600,2608,2616,2624,2632,2640,2648,2656,2664,2672,2680,2688,2696,2704,2712,2720,2728,2736,2744,2752,2760,2768,2776,2784,2792,2800,2808,2816,2824,2832,2840,2848,2856,2864,2872,2880,2888,2896,2904,2912,2920,2928,2936,2944,2952,2960,2968,2976,2984,2992,3000,3008,3016,3024,3032,3040,3048,3056,3064,3072,3080,3088,3096,3104,3112,3120,3128,3136,3144,3152,3160,3168,3176,3184,3192,3200,3208,3216,3224,3232,3240,3248,3256,3264,3272,3280,3288,3296,3304,3312,3320,3328,3336,3344,3352,3360,3368,3376,3384,3392,3400,3408,3416,3424,3432,3440,3448,3456,3464,3472,3480,3488,3496,3504,3512,3520,3528,3536,3544,3552,3560,3568,3576,3584,3592,3600,3608,3616,3624,3632,3640,3648,3656,3664,3672,3680,3688,3696,3704,3712,3720,3728,3736,3744,3752,3760,3768,3776,3784,3792,3800,3808,3816,3824,3832,3840,3848,3856,3864,3872,3880,3888,3896,3904,3912,3920,3928,3936,3944,3952,3960,3968,3976,3984,3992,4000,4008,4016,4024,4032,4040,4048,4056,4064,4072,4080,4088,4096,4104,4112,4120,4128,4136,4144,4152,4160,4168,4176,4184,4192,4200,4208,4216,4224,4232,4240,4248,4256,4264,4272,4280,4288,4296,4304,4312,4320,4328,4336,4344,4352,4360,4368,4376,4384,4392,4400,4408,4416,4424,4432,4440,4448,4456,4464,4472,4480,4488,4496,4504,4512,4520,4528,4536,4544,4552,4560,4568,4576,4584,4592,4600,4608,4616,4624,4632,4640,4648,4656,4664,4672,4680,4688,4696,4704,4712,4720,4728,4736,4744,4752,4760,4768,4776,4784,4792,4800,4808,4816,4824,4832,4840,4848,4856,4864,4872,4880,4888,4896,4904,4912,4920,4928,4936,4944,4952,4960,4968,4976,4984,4992,5000,5008,5016,5024,5032,5040,5048,5056,5064,5072,5080,5088,5096,5104,5112,5120,5128,5136,5144,5152,5160,5168,5176,5184,5192,5200,5208,5216,5224,5232,5240,5248,5256,5264,5272,5280,5288,5296,5304,5312,5320,5328,5336,5344,5352,5360,5368,5376,5384,5392,5400,5408,5416,5424,5432,5440,5448,5456,5464,5472,5480,5488,5496,5504,5512,5520,5528,5536,5544,5552,5560,5568,5576,5584,5592,5600,5608,5616,5624,5632,5640,5648,5656,5664,5672,5680,5688,5696,5704,5712,5720,5728,5736,5744,5752,5760,5768,5776,5784,5792,5800,5808,5816,5824,5832,5840,5848,5856,5864,5872,5880,5888,5896,5904,5912,5920,5928,5936,5944,5952,5960,5968,5976,5984,5992,6000,6008,6016,6024,6032,6040,6048,6056,6064,6072,6080,6088,6096,6104,6112,6120,6128,6136,6144,6152,6160,6168,6176,6184,6192,6200,6208,6216,6224,6232,6240,6248,6256,6264,6272,6280,6288,6296,6304,6312,6320,6328,6336,6344,6352,6360,6368,6376,6384,6392,6400,6408,6416,6424,6432,6440,6448,6456,6464,6472,6480,6488,6496,6504,6512,6520,6528,6536,6544,6552,6560,6568,6576,6584,6592,6600,6608,6616,6624,6632,6640,6648,6656,6664,6672,6680,6688,6696,6704,6712,6720,6728,6736,6744,6752,6760,6768,6776,6784,6792,6800,6808,6816,6824,6832,6840,6848,6856,6864,6872,6880,6888,6896,6904,6912,6920,6928,6936,6944,6952,6960,6968,6976,6984,6992,7000,7008,7016,7024,7032,7040,7048,7056,7064,7072,7080,7088,7096,7104,7112,7120,7128,7136,7144,7152,7160,7168,7176,7184,7192,7200,7208,7216,7224,7232,7240,7248,7256,7264,7272,7280,7288,7296,7304,7312,7320,7328,7336,7344,7352,7360,7368,7376,7384,7392,7400,7408,7416,7424,7432,7440,7448,7456,7464,7472,7480,7488,7496,7504,7512,7520,7528,7536,7544,7552,7560,7568,7576,7584,7592,7600,7608,7616,7624,7632,7640,7648,7656,7664,7672,7680,7688,7696,7704,7712,7720,7728,7736,7744,7752,7760,7768,7776,7784,7792,7800,7808,7816,7824,7832,7840,7848,7856,7864,7872,7880,7888,7896,7904,7912,7920,7928,7936,7944,7952,7960,7968,7976,7984,7992,8000,8008,8016,8024,8032,8040,8048,8056,8064,8072,8080,8088,8096,8104,8112,8120,8128,8136,8144,8152,8160,8168,8176,8184,8192,8200,8208,8216,8224,8232,8240,8248,8256,8264,8272,8280,8288,8296,8304,8312,8320,8328,8336,8344,8352,8360,8368,8376,8384,8392,8400,8408,8416,8424,8432,8440,8448,8456,8464,8472,8480,8488,8496,8504,8512,8520,8528,8536,8544,8552,8560,8568,8576,8584,8592,8600,8608,8616,8624,8632,8640,8648,8656,8664,8672,8680,8688,8696,8704,8712,8720,8728,8736,8744,8752,8760,8768,8776,8784,8792,8800,8808,8816,8824,8832,8840,8848,8856,8864,8872,8880,8888,8896,8904,8912,8920,8928,8936,8944,8952,8960,8968,8976,8984,8992,9000,9008,9016,9024,9032,9040,9048,9056,9064,9072,9080,9088,9096,9104,9112,9120,9128,9136,9144,9152,9160,9168,9176,9184); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_1m_pkey on t_range_1m + Index Cond: (id = ANY ('{1000,1008,1016,1024,1032,1040,1048,1056,1064,1072,1080,1088,1096,1104,1112,1120,1128,1136,1144,1152,1160,1168,1176,1184,1192,1200,1208,1216,1224,1232,1240,1248,1256,1264,1272,1280,1288,1296,1304,1312,1320,1328,1336,1344,1352,1360,1368,1376,1384,1392,1400,1408,1416,1424,1432,1440,1448,1456,1464,1472,1480,1488,1496,1504,1512,1520,1528,1536,1544,1552,1560,1568,1576,1584,1592,1600,1608,1616,1624,1632,1640,1648,1656,1664,1672,1680,1688,1696,1704,1712,1720,1728,1736,1744,1752,1760,1768,1776,1784,1792,1800,1808,1816,1824,1832,1840,1848,1856,1864,1872,1880,1888,1896,1904,1912,1920,1928,1936,1944,1952,1960,1968,1976,1984,1992,2000,2008,2016,2024,2032,2040,2048,2056,2064,2072,2080,2088,2096,2104,2112,2120,2128,2136,2144,2152,2160,2168,2176,2184,2192,2200,2208,2216,2224,2232,2240,2248,2256,2264,2272,2280,2288,2296,2304,2312,2320,2328,2336,2344,2352,2360,2368,2376,2384,2392,2400,2408,2416,2424,2432,2440,2448,2456,2464,2472,2480,2488,2496,2504,2512,2520,2528,2536,2544,2552,2560,2568,2576,2584,2592,2600,2608,2616,2624,2632,2640,2648,2656,2664,2672,2680,2688,2696,2704,2712,2720,2728,2736,2744,2752,2760,2768,2776,2784,2792,2800,2808,2816,2824,2832,2840,2848,2856,2864,2872,2880,2888,2896,2904,2912,2920,2928,2936,2944,2952,2960,2968,2976,2984,2992,3000,3008,3016,3024,3032,3040,3048,3056,3064,3072,3080,3088,3096,3104,3112,3120,3128,3136,3144,3152,3160,3168,3176,3184,3192,3200,3208,3216,3224,3232,3240,3248,3256,3264,3272,3280,3288,3296,3304,3312,3320,3328,3336,3344,3352,3360,3368,3376,3384,3392,3400,3408,3416,3424,3432,3440,3448,3456,3464,3472,3480,3488,3496,3504,3512,3520,3528,3536,3544,3552,3560,3568,3576,3584,3592,3600,3608,3616,3624,3632,3640,3648,3656,3664,3672,3680,3688,3696,3704,3712,3720,3728,3736,3744,3752,3760,3768,3776,3784,3792,3800,3808,3816,3824,3832,3840,3848,3856,3864,3872,3880,3888,3896,3904,3912,3920,3928,3936,3944,3952,3960,3968,3976,3984,3992,4000,4008,4016,4024,4032,4040,4048,4056,4064,4072,4080,4088,4096,4104,4112,4120,4128,4136,4144,4152,4160,4168,4176,4184,4192,4200,4208,4216,4224,4232,4240,4248,4256,4264,4272,4280,4288,4296,4304,4312,4320,4328,4336,4344,4352,4360,4368,4376,4384,4392,4400,4408,4416,4424,4432,4440,4448,4456,4464,4472,4480,4488,4496,4504,4512,4520,4528,4536,4544,4552,4560,4568,4576,4584,4592,4600,4608,4616,4624,4632,4640,4648,4656,4664,4672,4680,4688,4696,4704,4712,4720,4728,4736,4744,4752,4760,4768,4776,4784,4792,4800,4808,4816,4824,4832,4840,4848,4856,4864,4872,4880,4888,4896,4904,4912,4920,4928,4936,4944,4952,4960,4968,4976,4984,4992,5000,5008,5016,5024,5032,5040,5048,5056,5064,5072,5080,5088,5096,5104,5112,5120,5128,5136,5144,5152,5160,5168,5176,5184,5192,5200,5208,5216,5224,5232,5240,5248,5256,5264,5272,5280,5288,5296,5304,5312,5320,5328,5336,5344,5352,5360,5368,5376,5384,5392,5400,5408,5416,5424,5432,5440,5448,5456,5464,5472,5480,5488,5496,5504,5512,5520,5528,5536,5544,5552,5560,5568,5576,5584,5592,5600,5608,5616,5624,5632,5640,5648,5656,5664,5672,5680,5688,5696,5704,5712,5720,5728,5736,5744,5752,5760,5768,5776,5784,5792,5800,5808,5816,5824,5832,5840,5848,5856,5864,5872,5880,5888,5896,5904,5912,5920,5928,5936,5944,5952,5960,5968,5976,5984,5992,6000,6008,6016,6024,6032,6040,6048,6056,6064,6072,6080,6088,6096,6104,6112,6120,6128,6136,6144,6152,6160,6168,6176,6184,6192,6200,6208,6216,6224,6232,6240,6248,6256,6264,6272,6280,6288,6296,6304,6312,6320,6328,6336,6344,6352,6360,6368,6376,6384,6392,6400,6408,6416,6424,6432,6440,6448,6456,6464,6472,6480,6488,6496,6504,6512,6520,6528,6536,6544,6552,6560,6568,6576,6584,6592,6600,6608,6616,6624,6632,6640,6648,6656,6664,6672,6680,6688,6696,6704,6712,6720,6728,6736,6744,6752,6760,6768,6776,6784,6792,6800,6808,6816,6824,6832,6840,6848,6856,6864,6872,6880,6888,6896,6904,6912,6920,6928,6936,6944,6952,6960,6968,6976,6984,6992,7000,7008,7016,7024,7032,7040,7048,7056,7064,7072,7080,7088,7096,7104,7112,7120,7128,7136,7144,7152,7160,7168,7176,7184,7192,7200,7208,7216,7224,7232,7240,7248,7256,7264,7272,7280,7288,7296,7304,7312,7320,7328,7336,7344,7352,7360,7368,7376,7384,7392,7400,7408,7416,7424,7432,7440,7448,7456,7464,7472,7480,7488,7496,7504,7512,7520,7528,7536,7544,7552,7560,7568,7576,7584,7592,7600,7608,7616,7624,7632,7640,7648,7656,7664,7672,7680,7688,7696,7704,7712,7720,7728,7736,7744,7752,7760,7768,7776,7784,7792,7800,7808,7816,7824,7832,7840,7848,7856,7864,7872,7880,7888,7896,7904,7912,7920,7928,7936,7944,7952,7960,7968,7976,7984,7992,8000,8008,8016,8024,8032,8040,8048,8056,8064,8072,8080,8088,8096,8104,8112,8120,8128,8136,8144,8152,8160,8168,8176,8184,8192,8200,8208,8216,8224,8232,8240,8248,8256,8264,8272,8280,8288,8296,8304,8312,8320,8328,8336,8344,8352,8360,8368,8376,8384,8392,8400,8408,8416,8424,8432,8440,8448,8456,8464,8472,8480,8488,8496,8504,8512,8520,8528,8536,8544,8552,8560,8568,8576,8584,8592,8600,8608,8616,8624,8632,8640,8648,8656,8664,8672,8680,8688,8696,8704,8712,8720,8728,8736,8744,8752,8760,8768,8776,8784,8792,8800,8808,8816,8824,8832,8840,8848,8856,8864,8872,8880,8888,8896,8904,8912,8920,8928,8936,8944,8952,8960,8968,8976,8984,8992,9000,9008,9016,9024,9032,9040,9048,9056,9064,9072,9080,9088,9096,9104,9112,9120,9128,9136,9144,9152,9160,9168,9176,9184}'::integer[])) +(2 rows) + +-- Query Hash: f0de79f07f4f6df232396000f8f27b85 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1016,1032,1048,1064,1080,1096,1112,1128,1144,1160,1176,1192,1208,1224,1240,1256,1272,1288,1304,1320,1336,1352,1368,1384,1400,1416,1432,1448,1464,1480,1496,1512,1528,1544,1560,1576,1592,1608,1624,1640,1656,1672,1688,1704,1720,1736,1752,1768,1784,1800,1816,1832,1848,1864,1880,1896,1912,1928,1944,1960,1976,1992,2008,2024,2040,2056,2072,2088,2104,2120,2136,2152,2168,2184,2200,2216,2232,2248,2264,2280,2296,2312,2328,2344,2360,2376,2392,2408,2424,2440,2456,2472,2488,2504,2520,2536,2552,2568,2584,2600,2616,2632,2648,2664,2680,2696,2712,2728,2744,2760,2776,2792,2808,2824,2840,2856,2872,2888,2904,2920,2936,2952,2968,2984,3000,3016,3032,3048,3064,3080,3096,3112,3128,3144,3160,3176,3192,3208,3224,3240,3256,3272,3288,3304,3320,3336,3352,3368,3384,3400,3416,3432,3448,3464,3480,3496,3512,3528,3544,3560,3576,3592,3608,3624,3640,3656,3672,3688,3704,3720,3736,3752,3768,3784,3800,3816,3832,3848,3864,3880,3896,3912,3928,3944,3960,3976,3992,4008,4024,4040,4056,4072,4088,4104,4120,4136,4152,4168,4184,4200,4216,4232,4248,4264,4280,4296,4312,4328,4344,4360,4376,4392,4408,4424,4440,4456,4472,4488,4504,4520,4536,4552,4568,4584,4600,4616,4632,4648,4664,4680,4696,4712,4728,4744,4760,4776,4792,4808,4824,4840,4856,4872,4888,4904,4920,4936,4952,4968,4984,5000,5016,5032,5048,5064,5080,5096,5112,5128,5144,5160,5176,5192,5208,5224,5240,5256,5272,5288,5304,5320,5336,5352,5368,5384,5400,5416,5432,5448,5464,5480,5496,5512,5528,5544,5560,5576,5592,5608,5624,5640,5656,5672,5688,5704,5720,5736,5752,5768,5784,5800,5816,5832,5848,5864,5880,5896,5912,5928,5944,5960,5976,5992,6008,6024,6040,6056,6072,6088,6104,6120,6136,6152,6168,6184,6200,6216,6232,6248,6264,6280,6296,6312,6328,6344,6360,6376,6392,6408,6424,6440,6456,6472,6488,6504,6520,6536,6552,6568,6584,6600,6616,6632,6648,6664,6680,6696,6712,6728,6744,6760,6776,6792,6808,6824,6840,6856,6872,6888,6904,6920,6936,6952,6968,6984,7000,7016,7032,7048,7064,7080,7096,7112,7128,7144,7160,7176,7192,7208,7224,7240,7256,7272,7288,7304,7320,7336,7352,7368,7384,7400,7416,7432,7448,7464,7480,7496,7512,7528,7544,7560,7576,7592,7608,7624,7640,7656,7672,7688,7704,7720,7736,7752,7768,7784,7800,7816,7832,7848,7864,7880,7896,7912,7928,7944,7960,7976,7992,8008,8024,8040,8056,8072,8088,8104,8120,8136,8152,8168,8184,8200,8216,8232,8248,8264,8280,8296,8312,8328,8344,8360,8376,8392,8408,8424,8440,8456,8472,8488,8504,8520,8536,8552,8568,8584,8600,8616,8632,8648,8664,8680,8696,8712,8728,8744,8760,8776,8792,8808,8824,8840,8856,8872,8888,8904,8920,8936,8952,8968,8984,9000,9016,9032,9048,9064,9080,9096,9112,9128,9144,9160,9176,9192,9208,9224,9240,9256,9272,9288,9304,9320,9336,9352,9368,9384,9400,9416,9432,9448,9464,9480,9496,9512,9528,9544,9560,9576,9592,9608,9624,9640,9656,9672,9688,9704,9720,9736,9752,9768,9784,9800,9816,9832,9848,9864,9880,9896,9912,9928,9944,9960,9976,9992,10008,10024,10040,10056,10072,10088,10104,10120,10136,10152,10168,10184,10200,10216,10232,10248,10264,10280,10296,10312,10328,10344,10360,10376,10392,10408,10424,10440,10456,10472,10488,10504,10520,10536,10552,10568,10584,10600,10616,10632,10648,10664,10680,10696,10712,10728,10744,10760,10776,10792,10808,10824,10840,10856,10872,10888,10904,10920,10936,10952,10968,10984,11000,11016,11032,11048,11064,11080,11096,11112,11128,11144,11160,11176,11192,11208,11224,11240,11256,11272,11288,11304,11320,11336,11352,11368,11384,11400,11416,11432,11448,11464,11480,11496,11512,11528,11544,11560,11576,11592,11608,11624,11640,11656,11672,11688,11704,11720,11736,11752,11768,11784,11800,11816,11832,11848,11864,11880,11896,11912,11928,11944,11960,11976,11992,12008,12024,12040,12056,12072,12088,12104,12120,12136,12152,12168,12184,12200,12216,12232,12248,12264,12280,12296,12312,12328,12344,12360,12376,12392,12408,12424,12440,12456,12472,12488,12504,12520,12536,12552,12568,12584,12600,12616,12632,12648,12664,12680,12696,12712,12728,12744,12760,12776,12792,12808,12824,12840,12856,12872,12888,12904,12920,12936,12952,12968,12984,13000,13016,13032,13048,13064,13080,13096,13112,13128,13144,13160,13176,13192,13208,13224,13240,13256,13272,13288,13304,13320,13336,13352,13368,13384,13400,13416,13432,13448,13464,13480,13496,13512,13528,13544,13560,13576,13592,13608,13624,13640,13656,13672,13688,13704,13720,13736,13752,13768,13784,13800,13816,13832,13848,13864,13880,13896,13912,13928,13944,13960,13976,13992,14008,14024,14040,14056,14072,14088,14104,14120,14136,14152,14168,14184,14200,14216,14232,14248,14264,14280,14296,14312,14328,14344,14360,14376,14392,14408,14424,14440,14456,14472,14488,14504,14520,14536,14552,14568,14584,14600,14616,14632,14648,14664,14680,14696,14712,14728,14744,14760,14776,14792,14808,14824,14840,14856,14872,14888,14904,14920,14936,14952,14968,14984,15000,15016,15032,15048,15064,15080,15096,15112,15128,15144,15160,15176,15192,15208,15224,15240,15256,15272,15288,15304,15320,15336,15352,15368,15384,15400,15416,15432,15448,15464,15480,15496,15512,15528,15544,15560,15576,15592,15608,15624,15640,15656,15672,15688,15704,15720,15736,15752,15768,15784,15800,15816,15832,15848,15864,15880,15896,15912,15928,15944,15960,15976,15992,16008,16024,16040,16056,16072,16088,16104,16120,16136,16152,16168,16184,16200,16216,16232,16248,16264,16280,16296,16312,16328,16344,16360,16376,16392,16408,16424,16440,16456,16472,16488,16504,16520,16536,16552,16568,16584,16600,16616,16632,16648,16664,16680,16696,16712,16728,16744,16760,16776,16792,16808,16824,16840,16856,16872,16888,16904,16920,16936,16952,16968,16984,17000,17016,17032,17048,17064,17080,17096,17112,17128,17144,17160,17176,17192,17208,17224,17240,17256,17272,17288,17304,17320,17336,17352,17368); + QUERY PLAN +-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_1m_pkey on t_range_1m + Index Cond: (id = ANY ('{1000,1016,1032,1048,1064,1080,1096,1112,1128,1144,1160,1176,1192,1208,1224,1240,1256,1272,1288,1304,1320,1336,1352,1368,1384,1400,1416,1432,1448,1464,1480,1496,1512,1528,1544,1560,1576,1592,1608,1624,1640,1656,1672,1688,1704,1720,1736,1752,1768,1784,1800,1816,1832,1848,1864,1880,1896,1912,1928,1944,1960,1976,1992,2008,2024,2040,2056,2072,2088,2104,2120,2136,2152,2168,2184,2200,2216,2232,2248,2264,2280,2296,2312,2328,2344,2360,2376,2392,2408,2424,2440,2456,2472,2488,2504,2520,2536,2552,2568,2584,2600,2616,2632,2648,2664,2680,2696,2712,2728,2744,2760,2776,2792,2808,2824,2840,2856,2872,2888,2904,2920,2936,2952,2968,2984,3000,3016,3032,3048,3064,3080,3096,3112,3128,3144,3160,3176,3192,3208,3224,3240,3256,3272,3288,3304,3320,3336,3352,3368,3384,3400,3416,3432,3448,3464,3480,3496,3512,3528,3544,3560,3576,3592,3608,3624,3640,3656,3672,3688,3704,3720,3736,3752,3768,3784,3800,3816,3832,3848,3864,3880,3896,3912,3928,3944,3960,3976,3992,4008,4024,4040,4056,4072,4088,4104,4120,4136,4152,4168,4184,4200,4216,4232,4248,4264,4280,4296,4312,4328,4344,4360,4376,4392,4408,4424,4440,4456,4472,4488,4504,4520,4536,4552,4568,4584,4600,4616,4632,4648,4664,4680,4696,4712,4728,4744,4760,4776,4792,4808,4824,4840,4856,4872,4888,4904,4920,4936,4952,4968,4984,5000,5016,5032,5048,5064,5080,5096,5112,5128,5144,5160,5176,5192,5208,5224,5240,5256,5272,5288,5304,5320,5336,5352,5368,5384,5400,5416,5432,5448,5464,5480,5496,5512,5528,5544,5560,5576,5592,5608,5624,5640,5656,5672,5688,5704,5720,5736,5752,5768,5784,5800,5816,5832,5848,5864,5880,5896,5912,5928,5944,5960,5976,5992,6008,6024,6040,6056,6072,6088,6104,6120,6136,6152,6168,6184,6200,6216,6232,6248,6264,6280,6296,6312,6328,6344,6360,6376,6392,6408,6424,6440,6456,6472,6488,6504,6520,6536,6552,6568,6584,6600,6616,6632,6648,6664,6680,6696,6712,6728,6744,6760,6776,6792,6808,6824,6840,6856,6872,6888,6904,6920,6936,6952,6968,6984,7000,7016,7032,7048,7064,7080,7096,7112,7128,7144,7160,7176,7192,7208,7224,7240,7256,7272,7288,7304,7320,7336,7352,7368,7384,7400,7416,7432,7448,7464,7480,7496,7512,7528,7544,7560,7576,7592,7608,7624,7640,7656,7672,7688,7704,7720,7736,7752,7768,7784,7800,7816,7832,7848,7864,7880,7896,7912,7928,7944,7960,7976,7992,8008,8024,8040,8056,8072,8088,8104,8120,8136,8152,8168,8184,8200,8216,8232,8248,8264,8280,8296,8312,8328,8344,8360,8376,8392,8408,8424,8440,8456,8472,8488,8504,8520,8536,8552,8568,8584,8600,8616,8632,8648,8664,8680,8696,8712,8728,8744,8760,8776,8792,8808,8824,8840,8856,8872,8888,8904,8920,8936,8952,8968,8984,9000,9016,9032,9048,9064,9080,9096,9112,9128,9144,9160,9176,9192,9208,9224,9240,9256,9272,9288,9304,9320,9336,9352,9368,9384,9400,9416,9432,9448,9464,9480,9496,9512,9528,9544,9560,9576,9592,9608,9624,9640,9656,9672,9688,9704,9720,9736,9752,9768,9784,9800,9816,9832,9848,9864,9880,9896,9912,9928,9944,9960,9976,9992,10008,10024,10040,10056,10072,10088,10104,10120,10136,10152,10168,10184,10200,10216,10232,10248,10264,10280,10296,10312,10328,10344,10360,10376,10392,10408,10424,10440,10456,10472,10488,10504,10520,10536,10552,10568,10584,10600,10616,10632,10648,10664,10680,10696,10712,10728,10744,10760,10776,10792,10808,10824,10840,10856,10872,10888,10904,10920,10936,10952,10968,10984,11000,11016,11032,11048,11064,11080,11096,11112,11128,11144,11160,11176,11192,11208,11224,11240,11256,11272,11288,11304,11320,11336,11352,11368,11384,11400,11416,11432,11448,11464,11480,11496,11512,11528,11544,11560,11576,11592,11608,11624,11640,11656,11672,11688,11704,11720,11736,11752,11768,11784,11800,11816,11832,11848,11864,11880,11896,11912,11928,11944,11960,11976,11992,12008,12024,12040,12056,12072,12088,12104,12120,12136,12152,12168,12184,12200,12216,12232,12248,12264,12280,12296,12312,12328,12344,12360,12376,12392,12408,12424,12440,12456,12472,12488,12504,12520,12536,12552,12568,12584,12600,12616,12632,12648,12664,12680,12696,12712,12728,12744,12760,12776,12792,12808,12824,12840,12856,12872,12888,12904,12920,12936,12952,12968,12984,13000,13016,13032,13048,13064,13080,13096,13112,13128,13144,13160,13176,13192,13208,13224,13240,13256,13272,13288,13304,13320,13336,13352,13368,13384,13400,13416,13432,13448,13464,13480,13496,13512,13528,13544,13560,13576,13592,13608,13624,13640,13656,13672,13688,13704,13720,13736,13752,13768,13784,13800,13816,13832,13848,13864,13880,13896,13912,13928,13944,13960,13976,13992,14008,14024,14040,14056,14072,14088,14104,14120,14136,14152,14168,14184,14200,14216,14232,14248,14264,14280,14296,14312,14328,14344,14360,14376,14392,14408,14424,14440,14456,14472,14488,14504,14520,14536,14552,14568,14584,14600,14616,14632,14648,14664,14680,14696,14712,14728,14744,14760,14776,14792,14808,14824,14840,14856,14872,14888,14904,14920,14936,14952,14968,14984,15000,15016,15032,15048,15064,15080,15096,15112,15128,15144,15160,15176,15192,15208,15224,15240,15256,15272,15288,15304,15320,15336,15352,15368,15384,15400,15416,15432,15448,15464,15480,15496,15512,15528,15544,15560,15576,15592,15608,15624,15640,15656,15672,15688,15704,15720,15736,15752,15768,15784,15800,15816,15832,15848,15864,15880,15896,15912,15928,15944,15960,15976,15992,16008,16024,16040,16056,16072,16088,16104,16120,16136,16152,16168,16184,16200,16216,16232,16248,16264,16280,16296,16312,16328,16344,16360,16376,16392,16408,16424,16440,16456,16472,16488,16504,16520,16536,16552,16568,16584,16600,16616,16632,16648,16664,16680,16696,16712,16728,16744,16760,16776,16792,16808,16824,16840,16856,16872,16888,16904,16920,16936,16952,16968,16984,17000,17016,17032,17048,17064,17080,17096,17112,17128,17144,17160,17176,17192,17208,17224,17240,17256,17272,17288,17304,17320,17336,17352,17368}'::integer[])) +(2 rows) + +-- Query Hash: f8da829631ba24b3db7241bc649461a8 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1032,1064,1096,1128,1160,1192,1224,1256,1288,1320,1352,1384,1416,1448,1480,1512,1544,1576,1608,1640,1672,1704,1736,1768,1800,1832,1864,1896,1928,1960,1992,2024,2056,2088,2120,2152,2184,2216,2248,2280,2312,2344,2376,2408,2440,2472,2504,2536,2568,2600,2632,2664,2696,2728,2760,2792,2824,2856,2888,2920,2952,2984,3016,3048,3080,3112,3144,3176,3208,3240,3272,3304,3336,3368,3400,3432,3464,3496,3528,3560,3592,3624,3656,3688,3720,3752,3784,3816,3848,3880,3912,3944,3976,4008,4040,4072,4104,4136,4168,4200,4232,4264,4296,4328,4360,4392,4424,4456,4488,4520,4552,4584,4616,4648,4680,4712,4744,4776,4808,4840,4872,4904,4936,4968,5000,5032,5064,5096,5128,5160,5192,5224,5256,5288,5320,5352,5384,5416,5448,5480,5512,5544,5576,5608,5640,5672,5704,5736,5768,5800,5832,5864,5896,5928,5960,5992,6024,6056,6088,6120,6152,6184,6216,6248,6280,6312,6344,6376,6408,6440,6472,6504,6536,6568,6600,6632,6664,6696,6728,6760,6792,6824,6856,6888,6920,6952,6984,7016,7048,7080,7112,7144,7176,7208,7240,7272,7304,7336,7368,7400,7432,7464,7496,7528,7560,7592,7624,7656,7688,7720,7752,7784,7816,7848,7880,7912,7944,7976,8008,8040,8072,8104,8136,8168,8200,8232,8264,8296,8328,8360,8392,8424,8456,8488,8520,8552,8584,8616,8648,8680,8712,8744,8776,8808,8840,8872,8904,8936,8968,9000,9032,9064,9096,9128,9160,9192,9224,9256,9288,9320,9352,9384,9416,9448,9480,9512,9544,9576,9608,9640,9672,9704,9736,9768,9800,9832,9864,9896,9928,9960,9992,10024,10056,10088,10120,10152,10184,10216,10248,10280,10312,10344,10376,10408,10440,10472,10504,10536,10568,10600,10632,10664,10696,10728,10760,10792,10824,10856,10888,10920,10952,10984,11016,11048,11080,11112,11144,11176,11208,11240,11272,11304,11336,11368,11400,11432,11464,11496,11528,11560,11592,11624,11656,11688,11720,11752,11784,11816,11848,11880,11912,11944,11976,12008,12040,12072,12104,12136,12168,12200,12232,12264,12296,12328,12360,12392,12424,12456,12488,12520,12552,12584,12616,12648,12680,12712,12744,12776,12808,12840,12872,12904,12936,12968,13000,13032,13064,13096,13128,13160,13192,13224,13256,13288,13320,13352,13384,13416,13448,13480,13512,13544,13576,13608,13640,13672,13704,13736,13768,13800,13832,13864,13896,13928,13960,13992,14024,14056,14088,14120,14152,14184,14216,14248,14280,14312,14344,14376,14408,14440,14472,14504,14536,14568,14600,14632,14664,14696,14728,14760,14792,14824,14856,14888,14920,14952,14984,15016,15048,15080,15112,15144,15176,15208,15240,15272,15304,15336,15368,15400,15432,15464,15496,15528,15560,15592,15624,15656,15688,15720,15752,15784,15816,15848,15880,15912,15944,15976,16008,16040,16072,16104,16136,16168,16200,16232,16264,16296,16328,16360,16392,16424,16456,16488,16520,16552,16584,16616,16648,16680,16712,16744,16776,16808,16840,16872,16904,16936,16968,17000,17032,17064,17096,17128,17160,17192,17224,17256,17288,17320,17352,17384,17416,17448,17480,17512,17544,17576,17608,17640,17672,17704,17736,17768,17800,17832,17864,17896,17928,17960,17992,18024,18056,18088,18120,18152,18184,18216,18248,18280,18312,18344,18376,18408,18440,18472,18504,18536,18568,18600,18632,18664,18696,18728,18760,18792,18824,18856,18888,18920,18952,18984,19016,19048,19080,19112,19144,19176,19208,19240,19272,19304,19336,19368,19400,19432,19464,19496,19528,19560,19592,19624,19656,19688,19720,19752,19784,19816,19848,19880,19912,19944,19976,20008,20040,20072,20104,20136,20168,20200,20232,20264,20296,20328,20360,20392,20424,20456,20488,20520,20552,20584,20616,20648,20680,20712,20744,20776,20808,20840,20872,20904,20936,20968,21000,21032,21064,21096,21128,21160,21192,21224,21256,21288,21320,21352,21384,21416,21448,21480,21512,21544,21576,21608,21640,21672,21704,21736,21768,21800,21832,21864,21896,21928,21960,21992,22024,22056,22088,22120,22152,22184,22216,22248,22280,22312,22344,22376,22408,22440,22472,22504,22536,22568,22600,22632,22664,22696,22728,22760,22792,22824,22856,22888,22920,22952,22984,23016,23048,23080,23112,23144,23176,23208,23240,23272,23304,23336,23368,23400,23432,23464,23496,23528,23560,23592,23624,23656,23688,23720,23752,23784,23816,23848,23880,23912,23944,23976,24008,24040,24072,24104,24136,24168,24200,24232,24264,24296,24328,24360,24392,24424,24456,24488,24520,24552,24584,24616,24648,24680,24712,24744,24776,24808,24840,24872,24904,24936,24968,25000,25032,25064,25096,25128,25160,25192,25224,25256,25288,25320,25352,25384,25416,25448,25480,25512,25544,25576,25608,25640,25672,25704,25736,25768,25800,25832,25864,25896,25928,25960,25992,26024,26056,26088,26120,26152,26184,26216,26248,26280,26312,26344,26376,26408,26440,26472,26504,26536,26568,26600,26632,26664,26696,26728,26760,26792,26824,26856,26888,26920,26952,26984,27016,27048,27080,27112,27144,27176,27208,27240,27272,27304,27336,27368,27400,27432,27464,27496,27528,27560,27592,27624,27656,27688,27720,27752,27784,27816,27848,27880,27912,27944,27976,28008,28040,28072,28104,28136,28168,28200,28232,28264,28296,28328,28360,28392,28424,28456,28488,28520,28552,28584,28616,28648,28680,28712,28744,28776,28808,28840,28872,28904,28936,28968,29000,29032,29064,29096,29128,29160,29192,29224,29256,29288,29320,29352,29384,29416,29448,29480,29512,29544,29576,29608,29640,29672,29704,29736,29768,29800,29832,29864,29896,29928,29960,29992,30024,30056,30088,30120,30152,30184,30216,30248,30280,30312,30344,30376,30408,30440,30472,30504,30536,30568,30600,30632,30664,30696,30728,30760,30792,30824,30856,30888,30920,30952,30984,31016,31048,31080,31112,31144,31176,31208,31240,31272,31304,31336,31368,31400,31432,31464,31496,31528,31560,31592,31624,31656,31688,31720,31752,31784,31816,31848,31880,31912,31944,31976,32008,32040,32072,32104,32136,32168,32200,32232,32264,32296,32328,32360,32392,32424,32456,32488,32520,32552,32584,32616,32648,32680,32712,32744,32776,32808,32840,32872,32904,32936,32968,33000,33032,33064,33096,33128,33160,33192,33224,33256,33288,33320,33352,33384,33416,33448,33480,33512,33544,33576,33608,33640,33672,33704,33736); + QUERY PLAN +------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_1m_pkey on t_range_1m + Index Cond: (id = ANY ('{1000,1032,1064,1096,1128,1160,1192,1224,1256,1288,1320,1352,1384,1416,1448,1480,1512,1544,1576,1608,1640,1672,1704,1736,1768,1800,1832,1864,1896,1928,1960,1992,2024,2056,2088,2120,2152,2184,2216,2248,2280,2312,2344,2376,2408,2440,2472,2504,2536,2568,2600,2632,2664,2696,2728,2760,2792,2824,2856,2888,2920,2952,2984,3016,3048,3080,3112,3144,3176,3208,3240,3272,3304,3336,3368,3400,3432,3464,3496,3528,3560,3592,3624,3656,3688,3720,3752,3784,3816,3848,3880,3912,3944,3976,4008,4040,4072,4104,4136,4168,4200,4232,4264,4296,4328,4360,4392,4424,4456,4488,4520,4552,4584,4616,4648,4680,4712,4744,4776,4808,4840,4872,4904,4936,4968,5000,5032,5064,5096,5128,5160,5192,5224,5256,5288,5320,5352,5384,5416,5448,5480,5512,5544,5576,5608,5640,5672,5704,5736,5768,5800,5832,5864,5896,5928,5960,5992,6024,6056,6088,6120,6152,6184,6216,6248,6280,6312,6344,6376,6408,6440,6472,6504,6536,6568,6600,6632,6664,6696,6728,6760,6792,6824,6856,6888,6920,6952,6984,7016,7048,7080,7112,7144,7176,7208,7240,7272,7304,7336,7368,7400,7432,7464,7496,7528,7560,7592,7624,7656,7688,7720,7752,7784,7816,7848,7880,7912,7944,7976,8008,8040,8072,8104,8136,8168,8200,8232,8264,8296,8328,8360,8392,8424,8456,8488,8520,8552,8584,8616,8648,8680,8712,8744,8776,8808,8840,8872,8904,8936,8968,9000,9032,9064,9096,9128,9160,9192,9224,9256,9288,9320,9352,9384,9416,9448,9480,9512,9544,9576,9608,9640,9672,9704,9736,9768,9800,9832,9864,9896,9928,9960,9992,10024,10056,10088,10120,10152,10184,10216,10248,10280,10312,10344,10376,10408,10440,10472,10504,10536,10568,10600,10632,10664,10696,10728,10760,10792,10824,10856,10888,10920,10952,10984,11016,11048,11080,11112,11144,11176,11208,11240,11272,11304,11336,11368,11400,11432,11464,11496,11528,11560,11592,11624,11656,11688,11720,11752,11784,11816,11848,11880,11912,11944,11976,12008,12040,12072,12104,12136,12168,12200,12232,12264,12296,12328,12360,12392,12424,12456,12488,12520,12552,12584,12616,12648,12680,12712,12744,12776,12808,12840,12872,12904,12936,12968,13000,13032,13064,13096,13128,13160,13192,13224,13256,13288,13320,13352,13384,13416,13448,13480,13512,13544,13576,13608,13640,13672,13704,13736,13768,13800,13832,13864,13896,13928,13960,13992,14024,14056,14088,14120,14152,14184,14216,14248,14280,14312,14344,14376,14408,14440,14472,14504,14536,14568,14600,14632,14664,14696,14728,14760,14792,14824,14856,14888,14920,14952,14984,15016,15048,15080,15112,15144,15176,15208,15240,15272,15304,15336,15368,15400,15432,15464,15496,15528,15560,15592,15624,15656,15688,15720,15752,15784,15816,15848,15880,15912,15944,15976,16008,16040,16072,16104,16136,16168,16200,16232,16264,16296,16328,16360,16392,16424,16456,16488,16520,16552,16584,16616,16648,16680,16712,16744,16776,16808,16840,16872,16904,16936,16968,17000,17032,17064,17096,17128,17160,17192,17224,17256,17288,17320,17352,17384,17416,17448,17480,17512,17544,17576,17608,17640,17672,17704,17736,17768,17800,17832,17864,17896,17928,17960,17992,18024,18056,18088,18120,18152,18184,18216,18248,18280,18312,18344,18376,18408,18440,18472,18504,18536,18568,18600,18632,18664,18696,18728,18760,18792,18824,18856,18888,18920,18952,18984,19016,19048,19080,19112,19144,19176,19208,19240,19272,19304,19336,19368,19400,19432,19464,19496,19528,19560,19592,19624,19656,19688,19720,19752,19784,19816,19848,19880,19912,19944,19976,20008,20040,20072,20104,20136,20168,20200,20232,20264,20296,20328,20360,20392,20424,20456,20488,20520,20552,20584,20616,20648,20680,20712,20744,20776,20808,20840,20872,20904,20936,20968,21000,21032,21064,21096,21128,21160,21192,21224,21256,21288,21320,21352,21384,21416,21448,21480,21512,21544,21576,21608,21640,21672,21704,21736,21768,21800,21832,21864,21896,21928,21960,21992,22024,22056,22088,22120,22152,22184,22216,22248,22280,22312,22344,22376,22408,22440,22472,22504,22536,22568,22600,22632,22664,22696,22728,22760,22792,22824,22856,22888,22920,22952,22984,23016,23048,23080,23112,23144,23176,23208,23240,23272,23304,23336,23368,23400,23432,23464,23496,23528,23560,23592,23624,23656,23688,23720,23752,23784,23816,23848,23880,23912,23944,23976,24008,24040,24072,24104,24136,24168,24200,24232,24264,24296,24328,24360,24392,24424,24456,24488,24520,24552,24584,24616,24648,24680,24712,24744,24776,24808,24840,24872,24904,24936,24968,25000,25032,25064,25096,25128,25160,25192,25224,25256,25288,25320,25352,25384,25416,25448,25480,25512,25544,25576,25608,25640,25672,25704,25736,25768,25800,25832,25864,25896,25928,25960,25992,26024,26056,26088,26120,26152,26184,26216,26248,26280,26312,26344,26376,26408,26440,26472,26504,26536,26568,26600,26632,26664,26696,26728,26760,26792,26824,26856,26888,26920,26952,26984,27016,27048,27080,27112,27144,27176,27208,27240,27272,27304,27336,27368,27400,27432,27464,27496,27528,27560,27592,27624,27656,27688,27720,27752,27784,27816,27848,27880,27912,27944,27976,28008,28040,28072,28104,28136,28168,28200,28232,28264,28296,28328,28360,28392,28424,28456,28488,28520,28552,28584,28616,28648,28680,28712,28744,28776,28808,28840,28872,28904,28936,28968,29000,29032,29064,29096,29128,29160,29192,29224,29256,29288,29320,29352,29384,29416,29448,29480,29512,29544,29576,29608,29640,29672,29704,29736,29768,29800,29832,29864,29896,29928,29960,29992,30024,30056,30088,30120,30152,30184,30216,30248,30280,30312,30344,30376,30408,30440,30472,30504,30536,30568,30600,30632,30664,30696,30728,30760,30792,30824,30856,30888,30920,30952,30984,31016,31048,31080,31112,31144,31176,31208,31240,31272,31304,31336,31368,31400,31432,31464,31496,31528,31560,31592,31624,31656,31688,31720,31752,31784,31816,31848,31880,31912,31944,31976,32008,32040,32072,32104,32136,32168,32200,32232,32264,32296,32328,32360,32392,32424,32456,32488,32520,32552,32584,32616,32648,32680,32712,32744,32776,32808,32840,32872,32904,32936,32968,33000,33032,33064,33096,33128,33160,33192,33224,33256,33288,33320,33352,33384,33416,33448,33480,33512,33544,33576,33608,33640,33672,33704,33736}'::integer[])) +(2 rows) + +-- Query Hash: 63a381a2e9fbaf5fc8674e3b48484155 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1064,1128,1192,1256,1320,1384,1448,1512,1576,1640,1704,1768,1832,1896,1960,2024,2088,2152,2216,2280,2344,2408,2472,2536,2600,2664,2728,2792,2856,2920,2984,3048,3112,3176,3240,3304,3368,3432,3496,3560,3624,3688,3752,3816,3880,3944,4008,4072,4136,4200,4264,4328,4392,4456,4520,4584,4648,4712,4776,4840,4904,4968,5032,5096,5160,5224,5288,5352,5416,5480,5544,5608,5672,5736,5800,5864,5928,5992,6056,6120,6184,6248,6312,6376,6440,6504,6568,6632,6696,6760,6824,6888,6952,7016,7080,7144,7208,7272,7336,7400,7464,7528,7592,7656,7720,7784,7848,7912,7976,8040,8104,8168,8232,8296,8360,8424,8488,8552,8616,8680,8744,8808,8872,8936,9000,9064,9128,9192,9256,9320,9384,9448,9512,9576,9640,9704,9768,9832,9896,9960,10024,10088,10152,10216,10280,10344,10408,10472,10536,10600,10664,10728,10792,10856,10920,10984,11048,11112,11176,11240,11304,11368,11432,11496,11560,11624,11688,11752,11816,11880,11944,12008,12072,12136,12200,12264,12328,12392,12456,12520,12584,12648,12712,12776,12840,12904,12968,13032,13096,13160,13224,13288,13352,13416,13480,13544,13608,13672,13736,13800,13864,13928,13992,14056,14120,14184,14248,14312,14376,14440,14504,14568,14632,14696,14760,14824,14888,14952,15016,15080,15144,15208,15272,15336,15400,15464,15528,15592,15656,15720,15784,15848,15912,15976,16040,16104,16168,16232,16296,16360,16424,16488,16552,16616,16680,16744,16808,16872,16936,17000,17064,17128,17192,17256,17320,17384,17448,17512,17576,17640,17704,17768,17832,17896,17960,18024,18088,18152,18216,18280,18344,18408,18472,18536,18600,18664,18728,18792,18856,18920,18984,19048,19112,19176,19240,19304,19368,19432,19496,19560,19624,19688,19752,19816,19880,19944,20008,20072,20136,20200,20264,20328,20392,20456,20520,20584,20648,20712,20776,20840,20904,20968,21032,21096,21160,21224,21288,21352,21416,21480,21544,21608,21672,21736,21800,21864,21928,21992,22056,22120,22184,22248,22312,22376,22440,22504,22568,22632,22696,22760,22824,22888,22952,23016,23080,23144,23208,23272,23336,23400,23464,23528,23592,23656,23720,23784,23848,23912,23976,24040,24104,24168,24232,24296,24360,24424,24488,24552,24616,24680,24744,24808,24872,24936,25000,25064,25128,25192,25256,25320,25384,25448,25512,25576,25640,25704,25768,25832,25896,25960,26024,26088,26152,26216,26280,26344,26408,26472,26536,26600,26664,26728,26792,26856,26920,26984,27048,27112,27176,27240,27304,27368,27432,27496,27560,27624,27688,27752,27816,27880,27944,28008,28072,28136,28200,28264,28328,28392,28456,28520,28584,28648,28712,28776,28840,28904,28968,29032,29096,29160,29224,29288,29352,29416,29480,29544,29608,29672,29736,29800,29864,29928,29992,30056,30120,30184,30248,30312,30376,30440,30504,30568,30632,30696,30760,30824,30888,30952,31016,31080,31144,31208,31272,31336,31400,31464,31528,31592,31656,31720,31784,31848,31912,31976,32040,32104,32168,32232,32296,32360,32424,32488,32552,32616,32680,32744,32808,32872,32936,33000,33064,33128,33192,33256,33320,33384,33448,33512,33576,33640,33704,33768,33832,33896,33960,34024,34088,34152,34216,34280,34344,34408,34472,34536,34600,34664,34728,34792,34856,34920,34984,35048,35112,35176,35240,35304,35368,35432,35496,35560,35624,35688,35752,35816,35880,35944,36008,36072,36136,36200,36264,36328,36392,36456,36520,36584,36648,36712,36776,36840,36904,36968,37032,37096,37160,37224,37288,37352,37416,37480,37544,37608,37672,37736,37800,37864,37928,37992,38056,38120,38184,38248,38312,38376,38440,38504,38568,38632,38696,38760,38824,38888,38952,39016,39080,39144,39208,39272,39336,39400,39464,39528,39592,39656,39720,39784,39848,39912,39976,40040,40104,40168,40232,40296,40360,40424,40488,40552,40616,40680,40744,40808,40872,40936,41000,41064,41128,41192,41256,41320,41384,41448,41512,41576,41640,41704,41768,41832,41896,41960,42024,42088,42152,42216,42280,42344,42408,42472,42536,42600,42664,42728,42792,42856,42920,42984,43048,43112,43176,43240,43304,43368,43432,43496,43560,43624,43688,43752,43816,43880,43944,44008,44072,44136,44200,44264,44328,44392,44456,44520,44584,44648,44712,44776,44840,44904,44968,45032,45096,45160,45224,45288,45352,45416,45480,45544,45608,45672,45736,45800,45864,45928,45992,46056,46120,46184,46248,46312,46376,46440,46504,46568,46632,46696,46760,46824,46888,46952,47016,47080,47144,47208,47272,47336,47400,47464,47528,47592,47656,47720,47784,47848,47912,47976,48040,48104,48168,48232,48296,48360,48424,48488,48552,48616,48680,48744,48808,48872,48936,49000,49064,49128,49192,49256,49320,49384,49448,49512,49576,49640,49704,49768,49832,49896,49960,50024,50088,50152,50216,50280,50344,50408,50472,50536,50600,50664,50728,50792,50856,50920,50984,51048,51112,51176,51240,51304,51368,51432,51496,51560,51624,51688,51752,51816,51880,51944,52008,52072,52136,52200,52264,52328,52392,52456,52520,52584,52648,52712,52776,52840,52904,52968,53032,53096,53160,53224,53288,53352,53416,53480,53544,53608,53672,53736,53800,53864,53928,53992,54056,54120,54184,54248,54312,54376,54440,54504,54568,54632,54696,54760,54824,54888,54952,55016,55080,55144,55208,55272,55336,55400,55464,55528,55592,55656,55720,55784,55848,55912,55976,56040,56104,56168,56232,56296,56360,56424,56488,56552,56616,56680,56744,56808,56872,56936,57000,57064,57128,57192,57256,57320,57384,57448,57512,57576,57640,57704,57768,57832,57896,57960,58024,58088,58152,58216,58280,58344,58408,58472,58536,58600,58664,58728,58792,58856,58920,58984,59048,59112,59176,59240,59304,59368,59432,59496,59560,59624,59688,59752,59816,59880,59944,60008,60072,60136,60200,60264,60328,60392,60456,60520,60584,60648,60712,60776,60840,60904,60968,61032,61096,61160,61224,61288,61352,61416,61480,61544,61608,61672,61736,61800,61864,61928,61992,62056,62120,62184,62248,62312,62376,62440,62504,62568,62632,62696,62760,62824,62888,62952,63016,63080,63144,63208,63272,63336,63400,63464,63528,63592,63656,63720,63784,63848,63912,63976,64040,64104,64168,64232,64296,64360,64424,64488,64552,64616,64680,64744,64808,64872,64936,65000,65064,65128,65192,65256,65320,65384,65448,65512,65576,65640,65704,65768,65832,65896,65960,66024,66088,66152,66216,66280,66344,66408,66472); + QUERY PLAN +---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_1m_pkey on t_range_1m + Index Cond: (id = ANY ('{1000,1064,1128,1192,1256,1320,1384,1448,1512,1576,1640,1704,1768,1832,1896,1960,2024,2088,2152,2216,2280,2344,2408,2472,2536,2600,2664,2728,2792,2856,2920,2984,3048,3112,3176,3240,3304,3368,3432,3496,3560,3624,3688,3752,3816,3880,3944,4008,4072,4136,4200,4264,4328,4392,4456,4520,4584,4648,4712,4776,4840,4904,4968,5032,5096,5160,5224,5288,5352,5416,5480,5544,5608,5672,5736,5800,5864,5928,5992,6056,6120,6184,6248,6312,6376,6440,6504,6568,6632,6696,6760,6824,6888,6952,7016,7080,7144,7208,7272,7336,7400,7464,7528,7592,7656,7720,7784,7848,7912,7976,8040,8104,8168,8232,8296,8360,8424,8488,8552,8616,8680,8744,8808,8872,8936,9000,9064,9128,9192,9256,9320,9384,9448,9512,9576,9640,9704,9768,9832,9896,9960,10024,10088,10152,10216,10280,10344,10408,10472,10536,10600,10664,10728,10792,10856,10920,10984,11048,11112,11176,11240,11304,11368,11432,11496,11560,11624,11688,11752,11816,11880,11944,12008,12072,12136,12200,12264,12328,12392,12456,12520,12584,12648,12712,12776,12840,12904,12968,13032,13096,13160,13224,13288,13352,13416,13480,13544,13608,13672,13736,13800,13864,13928,13992,14056,14120,14184,14248,14312,14376,14440,14504,14568,14632,14696,14760,14824,14888,14952,15016,15080,15144,15208,15272,15336,15400,15464,15528,15592,15656,15720,15784,15848,15912,15976,16040,16104,16168,16232,16296,16360,16424,16488,16552,16616,16680,16744,16808,16872,16936,17000,17064,17128,17192,17256,17320,17384,17448,17512,17576,17640,17704,17768,17832,17896,17960,18024,18088,18152,18216,18280,18344,18408,18472,18536,18600,18664,18728,18792,18856,18920,18984,19048,19112,19176,19240,19304,19368,19432,19496,19560,19624,19688,19752,19816,19880,19944,20008,20072,20136,20200,20264,20328,20392,20456,20520,20584,20648,20712,20776,20840,20904,20968,21032,21096,21160,21224,21288,21352,21416,21480,21544,21608,21672,21736,21800,21864,21928,21992,22056,22120,22184,22248,22312,22376,22440,22504,22568,22632,22696,22760,22824,22888,22952,23016,23080,23144,23208,23272,23336,23400,23464,23528,23592,23656,23720,23784,23848,23912,23976,24040,24104,24168,24232,24296,24360,24424,24488,24552,24616,24680,24744,24808,24872,24936,25000,25064,25128,25192,25256,25320,25384,25448,25512,25576,25640,25704,25768,25832,25896,25960,26024,26088,26152,26216,26280,26344,26408,26472,26536,26600,26664,26728,26792,26856,26920,26984,27048,27112,27176,27240,27304,27368,27432,27496,27560,27624,27688,27752,27816,27880,27944,28008,28072,28136,28200,28264,28328,28392,28456,28520,28584,28648,28712,28776,28840,28904,28968,29032,29096,29160,29224,29288,29352,29416,29480,29544,29608,29672,29736,29800,29864,29928,29992,30056,30120,30184,30248,30312,30376,30440,30504,30568,30632,30696,30760,30824,30888,30952,31016,31080,31144,31208,31272,31336,31400,31464,31528,31592,31656,31720,31784,31848,31912,31976,32040,32104,32168,32232,32296,32360,32424,32488,32552,32616,32680,32744,32808,32872,32936,33000,33064,33128,33192,33256,33320,33384,33448,33512,33576,33640,33704,33768,33832,33896,33960,34024,34088,34152,34216,34280,34344,34408,34472,34536,34600,34664,34728,34792,34856,34920,34984,35048,35112,35176,35240,35304,35368,35432,35496,35560,35624,35688,35752,35816,35880,35944,36008,36072,36136,36200,36264,36328,36392,36456,36520,36584,36648,36712,36776,36840,36904,36968,37032,37096,37160,37224,37288,37352,37416,37480,37544,37608,37672,37736,37800,37864,37928,37992,38056,38120,38184,38248,38312,38376,38440,38504,38568,38632,38696,38760,38824,38888,38952,39016,39080,39144,39208,39272,39336,39400,39464,39528,39592,39656,39720,39784,39848,39912,39976,40040,40104,40168,40232,40296,40360,40424,40488,40552,40616,40680,40744,40808,40872,40936,41000,41064,41128,41192,41256,41320,41384,41448,41512,41576,41640,41704,41768,41832,41896,41960,42024,42088,42152,42216,42280,42344,42408,42472,42536,42600,42664,42728,42792,42856,42920,42984,43048,43112,43176,43240,43304,43368,43432,43496,43560,43624,43688,43752,43816,43880,43944,44008,44072,44136,44200,44264,44328,44392,44456,44520,44584,44648,44712,44776,44840,44904,44968,45032,45096,45160,45224,45288,45352,45416,45480,45544,45608,45672,45736,45800,45864,45928,45992,46056,46120,46184,46248,46312,46376,46440,46504,46568,46632,46696,46760,46824,46888,46952,47016,47080,47144,47208,47272,47336,47400,47464,47528,47592,47656,47720,47784,47848,47912,47976,48040,48104,48168,48232,48296,48360,48424,48488,48552,48616,48680,48744,48808,48872,48936,49000,49064,49128,49192,49256,49320,49384,49448,49512,49576,49640,49704,49768,49832,49896,49960,50024,50088,50152,50216,50280,50344,50408,50472,50536,50600,50664,50728,50792,50856,50920,50984,51048,51112,51176,51240,51304,51368,51432,51496,51560,51624,51688,51752,51816,51880,51944,52008,52072,52136,52200,52264,52328,52392,52456,52520,52584,52648,52712,52776,52840,52904,52968,53032,53096,53160,53224,53288,53352,53416,53480,53544,53608,53672,53736,53800,53864,53928,53992,54056,54120,54184,54248,54312,54376,54440,54504,54568,54632,54696,54760,54824,54888,54952,55016,55080,55144,55208,55272,55336,55400,55464,55528,55592,55656,55720,55784,55848,55912,55976,56040,56104,56168,56232,56296,56360,56424,56488,56552,56616,56680,56744,56808,56872,56936,57000,57064,57128,57192,57256,57320,57384,57448,57512,57576,57640,57704,57768,57832,57896,57960,58024,58088,58152,58216,58280,58344,58408,58472,58536,58600,58664,58728,58792,58856,58920,58984,59048,59112,59176,59240,59304,59368,59432,59496,59560,59624,59688,59752,59816,59880,59944,60008,60072,60136,60200,60264,60328,60392,60456,60520,60584,60648,60712,60776,60840,60904,60968,61032,61096,61160,61224,61288,61352,61416,61480,61544,61608,61672,61736,61800,61864,61928,61992,62056,62120,62184,62248,62312,62376,62440,62504,62568,62632,62696,62760,62824,62888,62952,63016,63080,63144,63208,63272,63336,63400,63464,63528,63592,63656,63720,63784,63848,63912,63976,64040,64104,64168,64232,64296,64360,64424,64488,64552,64616,64680,64744,64808,64872,64936,65000,65064,65128,65192,65256,65320,65384,65448,65512,65576,65640,65704,65768,65832,65896,65960,66024,66088,66152,66216,66280,66344,66408,66472}'::integer[])) +(2 rows) + +-- Query Hash: e979851191d7883496b42c049695fbd9 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1128,1256,1384,1512,1640,1768,1896,2024,2152,2280,2408,2536,2664,2792,2920,3048,3176,3304,3432,3560,3688,3816,3944,4072,4200,4328,4456,4584,4712,4840,4968,5096,5224,5352,5480,5608,5736,5864,5992,6120,6248,6376,6504,6632,6760,6888,7016,7144,7272,7400,7528,7656,7784,7912,8040,8168,8296,8424,8552,8680,8808,8936,9064,9192,9320,9448,9576,9704,9832,9960,10088,10216,10344,10472,10600,10728,10856,10984,11112,11240,11368,11496,11624,11752,11880,12008,12136,12264,12392,12520,12648,12776,12904,13032,13160,13288,13416,13544,13672,13800,13928,14056,14184,14312,14440,14568,14696,14824,14952,15080,15208,15336,15464,15592,15720,15848,15976,16104,16232,16360,16488,16616,16744,16872,17000,17128,17256,17384,17512,17640,17768,17896,18024,18152,18280,18408,18536,18664,18792,18920,19048,19176,19304,19432,19560,19688,19816,19944,20072,20200,20328,20456,20584,20712,20840,20968,21096,21224,21352,21480,21608,21736,21864,21992,22120,22248,22376,22504,22632,22760,22888,23016,23144,23272,23400,23528,23656,23784,23912,24040,24168,24296,24424,24552,24680,24808,24936,25064,25192,25320,25448,25576,25704,25832,25960,26088,26216,26344,26472,26600,26728,26856,26984,27112,27240,27368,27496,27624,27752,27880,28008,28136,28264,28392,28520,28648,28776,28904,29032,29160,29288,29416,29544,29672,29800,29928,30056,30184,30312,30440,30568,30696,30824,30952,31080,31208,31336,31464,31592,31720,31848,31976,32104,32232,32360,32488,32616,32744,32872,33000,33128,33256,33384,33512,33640,33768,33896,34024,34152,34280,34408,34536,34664,34792,34920,35048,35176,35304,35432,35560,35688,35816,35944,36072,36200,36328,36456,36584,36712,36840,36968,37096,37224,37352,37480,37608,37736,37864,37992,38120,38248,38376,38504,38632,38760,38888,39016,39144,39272,39400,39528,39656,39784,39912,40040,40168,40296,40424,40552,40680,40808,40936,41064,41192,41320,41448,41576,41704,41832,41960,42088,42216,42344,42472,42600,42728,42856,42984,43112,43240,43368,43496,43624,43752,43880,44008,44136,44264,44392,44520,44648,44776,44904,45032,45160,45288,45416,45544,45672,45800,45928,46056,46184,46312,46440,46568,46696,46824,46952,47080,47208,47336,47464,47592,47720,47848,47976,48104,48232,48360,48488,48616,48744,48872,49000,49128,49256,49384,49512,49640,49768,49896,50024,50152,50280,50408,50536,50664,50792,50920,51048,51176,51304,51432,51560,51688,51816,51944,52072,52200,52328,52456,52584,52712,52840,52968,53096,53224,53352,53480,53608,53736,53864,53992,54120,54248,54376,54504,54632,54760,54888,55016,55144,55272,55400,55528,55656,55784,55912,56040,56168,56296,56424,56552,56680,56808,56936,57064,57192,57320,57448,57576,57704,57832,57960,58088,58216,58344,58472,58600,58728,58856,58984,59112,59240,59368,59496,59624,59752,59880,60008,60136,60264,60392,60520,60648,60776,60904,61032,61160,61288,61416,61544,61672,61800,61928,62056,62184,62312,62440,62568,62696,62824,62952,63080,63208,63336,63464,63592,63720,63848,63976,64104,64232,64360,64488,64616,64744,64872,65000,65128,65256,65384,65512,65640,65768,65896,66024,66152,66280,66408,66536,66664,66792,66920,67048,67176,67304,67432,67560,67688,67816,67944,68072,68200,68328,68456,68584,68712,68840,68968,69096,69224,69352,69480,69608,69736,69864,69992,70120,70248,70376,70504,70632,70760,70888,71016,71144,71272,71400,71528,71656,71784,71912,72040,72168,72296,72424,72552,72680,72808,72936,73064,73192,73320,73448,73576,73704,73832,73960,74088,74216,74344,74472,74600,74728,74856,74984,75112,75240,75368,75496,75624,75752,75880,76008,76136,76264,76392,76520,76648,76776,76904,77032,77160,77288,77416,77544,77672,77800,77928,78056,78184,78312,78440,78568,78696,78824,78952,79080,79208,79336,79464,79592,79720,79848,79976,80104,80232,80360,80488,80616,80744,80872,81000,81128,81256,81384,81512,81640,81768,81896,82024,82152,82280,82408,82536,82664,82792,82920,83048,83176,83304,83432,83560,83688,83816,83944,84072,84200,84328,84456,84584,84712,84840,84968,85096,85224,85352,85480,85608,85736,85864,85992,86120,86248,86376,86504,86632,86760,86888,87016,87144,87272,87400,87528,87656,87784,87912,88040,88168,88296,88424,88552,88680,88808,88936,89064,89192,89320,89448,89576,89704,89832,89960,90088,90216,90344,90472,90600,90728,90856,90984,91112,91240,91368,91496,91624,91752,91880,92008,92136,92264,92392,92520,92648,92776,92904,93032,93160,93288,93416,93544,93672,93800,93928,94056,94184,94312,94440,94568,94696,94824,94952,95080,95208,95336,95464,95592,95720,95848,95976,96104,96232,96360,96488,96616,96744,96872,97000,97128,97256,97384,97512,97640,97768,97896,98024,98152,98280,98408,98536,98664,98792,98920,99048,99176,99304,99432,99560,99688,99816,99944,100072,100200,100328,100456,100584,100712,100840,100968,101096,101224,101352,101480,101608,101736,101864,101992,102120,102248,102376,102504,102632,102760,102888,103016,103144,103272,103400,103528,103656,103784,103912,104040,104168,104296,104424,104552,104680,104808,104936,105064,105192,105320,105448,105576,105704,105832,105960,106088,106216,106344,106472,106600,106728,106856,106984,107112,107240,107368,107496,107624,107752,107880,108008,108136,108264,108392,108520,108648,108776,108904,109032,109160,109288,109416,109544,109672,109800,109928,110056,110184,110312,110440,110568,110696,110824,110952,111080,111208,111336,111464,111592,111720,111848,111976,112104,112232,112360,112488,112616,112744,112872,113000,113128,113256,113384,113512,113640,113768,113896,114024,114152,114280,114408,114536,114664,114792,114920,115048,115176,115304,115432,115560,115688,115816,115944,116072,116200,116328,116456,116584,116712,116840,116968,117096,117224,117352,117480,117608,117736,117864,117992,118120,118248,118376,118504,118632,118760,118888,119016,119144,119272,119400,119528,119656,119784,119912,120040,120168,120296,120424,120552,120680,120808,120936,121064,121192,121320,121448,121576,121704,121832,121960,122088,122216,122344,122472,122600,122728,122856,122984,123112,123240,123368,123496,123624,123752,123880,124008,124136,124264,124392,124520,124648,124776,124904,125032,125160,125288,125416,125544,125672,125800,125928,126056,126184,126312,126440,126568,126696,126824,126952,127080,127208,127336,127464,127592,127720,127848,127976,128104,128232,128360,128488,128616,128744,128872,129000,129128,129256,129384,129512,129640,129768,129896,130024,130152,130280,130408,130536,130664,130792,130920,131048,131176,131304,131432,131560,131688,131816,131944); + QUERY PLAN +------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ + Index Scan using t_range_1m_pkey on t_range_1m + Index Cond: (id = ANY ('{1000,1128,1256,1384,1512,1640,1768,1896,2024,2152,2280,2408,2536,2664,2792,2920,3048,3176,3304,3432,3560,3688,3816,3944,4072,4200,4328,4456,4584,4712,4840,4968,5096,5224,5352,5480,5608,5736,5864,5992,6120,6248,6376,6504,6632,6760,6888,7016,7144,7272,7400,7528,7656,7784,7912,8040,8168,8296,8424,8552,8680,8808,8936,9064,9192,9320,9448,9576,9704,9832,9960,10088,10216,10344,10472,10600,10728,10856,10984,11112,11240,11368,11496,11624,11752,11880,12008,12136,12264,12392,12520,12648,12776,12904,13032,13160,13288,13416,13544,13672,13800,13928,14056,14184,14312,14440,14568,14696,14824,14952,15080,15208,15336,15464,15592,15720,15848,15976,16104,16232,16360,16488,16616,16744,16872,17000,17128,17256,17384,17512,17640,17768,17896,18024,18152,18280,18408,18536,18664,18792,18920,19048,19176,19304,19432,19560,19688,19816,19944,20072,20200,20328,20456,20584,20712,20840,20968,21096,21224,21352,21480,21608,21736,21864,21992,22120,22248,22376,22504,22632,22760,22888,23016,23144,23272,23400,23528,23656,23784,23912,24040,24168,24296,24424,24552,24680,24808,24936,25064,25192,25320,25448,25576,25704,25832,25960,26088,26216,26344,26472,26600,26728,26856,26984,27112,27240,27368,27496,27624,27752,27880,28008,28136,28264,28392,28520,28648,28776,28904,29032,29160,29288,29416,29544,29672,29800,29928,30056,30184,30312,30440,30568,30696,30824,30952,31080,31208,31336,31464,31592,31720,31848,31976,32104,32232,32360,32488,32616,32744,32872,33000,33128,33256,33384,33512,33640,33768,33896,34024,34152,34280,34408,34536,34664,34792,34920,35048,35176,35304,35432,35560,35688,35816,35944,36072,36200,36328,36456,36584,36712,36840,36968,37096,37224,37352,37480,37608,37736,37864,37992,38120,38248,38376,38504,38632,38760,38888,39016,39144,39272,39400,39528,39656,39784,39912,40040,40168,40296,40424,40552,40680,40808,40936,41064,41192,41320,41448,41576,41704,41832,41960,42088,42216,42344,42472,42600,42728,42856,42984,43112,43240,43368,43496,43624,43752,43880,44008,44136,44264,44392,44520,44648,44776,44904,45032,45160,45288,45416,45544,45672,45800,45928,46056,46184,46312,46440,46568,46696,46824,46952,47080,47208,47336,47464,47592,47720,47848,47976,48104,48232,48360,48488,48616,48744,48872,49000,49128,49256,49384,49512,49640,49768,49896,50024,50152,50280,50408,50536,50664,50792,50920,51048,51176,51304,51432,51560,51688,51816,51944,52072,52200,52328,52456,52584,52712,52840,52968,53096,53224,53352,53480,53608,53736,53864,53992,54120,54248,54376,54504,54632,54760,54888,55016,55144,55272,55400,55528,55656,55784,55912,56040,56168,56296,56424,56552,56680,56808,56936,57064,57192,57320,57448,57576,57704,57832,57960,58088,58216,58344,58472,58600,58728,58856,58984,59112,59240,59368,59496,59624,59752,59880,60008,60136,60264,60392,60520,60648,60776,60904,61032,61160,61288,61416,61544,61672,61800,61928,62056,62184,62312,62440,62568,62696,62824,62952,63080,63208,63336,63464,63592,63720,63848,63976,64104,64232,64360,64488,64616,64744,64872,65000,65128,65256,65384,65512,65640,65768,65896,66024,66152,66280,66408,66536,66664,66792,66920,67048,67176,67304,67432,67560,67688,67816,67944,68072,68200,68328,68456,68584,68712,68840,68968,69096,69224,69352,69480,69608,69736,69864,69992,70120,70248,70376,70504,70632,70760,70888,71016,71144,71272,71400,71528,71656,71784,71912,72040,72168,72296,72424,72552,72680,72808,72936,73064,73192,73320,73448,73576,73704,73832,73960,74088,74216,74344,74472,74600,74728,74856,74984,75112,75240,75368,75496,75624,75752,75880,76008,76136,76264,76392,76520,76648,76776,76904,77032,77160,77288,77416,77544,77672,77800,77928,78056,78184,78312,78440,78568,78696,78824,78952,79080,79208,79336,79464,79592,79720,79848,79976,80104,80232,80360,80488,80616,80744,80872,81000,81128,81256,81384,81512,81640,81768,81896,82024,82152,82280,82408,82536,82664,82792,82920,83048,83176,83304,83432,83560,83688,83816,83944,84072,84200,84328,84456,84584,84712,84840,84968,85096,85224,85352,85480,85608,85736,85864,85992,86120,86248,86376,86504,86632,86760,86888,87016,87144,87272,87400,87528,87656,87784,87912,88040,88168,88296,88424,88552,88680,88808,88936,89064,89192,89320,89448,89576,89704,89832,89960,90088,90216,90344,90472,90600,90728,90856,90984,91112,91240,91368,91496,91624,91752,91880,92008,92136,92264,92392,92520,92648,92776,92904,93032,93160,93288,93416,93544,93672,93800,93928,94056,94184,94312,94440,94568,94696,94824,94952,95080,95208,95336,95464,95592,95720,95848,95976,96104,96232,96360,96488,96616,96744,96872,97000,97128,97256,97384,97512,97640,97768,97896,98024,98152,98280,98408,98536,98664,98792,98920,99048,99176,99304,99432,99560,99688,99816,99944,100072,100200,100328,100456,100584,100712,100840,100968,101096,101224,101352,101480,101608,101736,101864,101992,102120,102248,102376,102504,102632,102760,102888,103016,103144,103272,103400,103528,103656,103784,103912,104040,104168,104296,104424,104552,104680,104808,104936,105064,105192,105320,105448,105576,105704,105832,105960,106088,106216,106344,106472,106600,106728,106856,106984,107112,107240,107368,107496,107624,107752,107880,108008,108136,108264,108392,108520,108648,108776,108904,109032,109160,109288,109416,109544,109672,109800,109928,110056,110184,110312,110440,110568,110696,110824,110952,111080,111208,111336,111464,111592,111720,111848,111976,112104,112232,112360,112488,112616,112744,112872,113000,113128,113256,113384,113512,113640,113768,113896,114024,114152,114280,114408,114536,114664,114792,114920,115048,115176,115304,115432,115560,115688,115816,115944,116072,116200,116328,116456,116584,116712,116840,116968,117096,117224,117352,117480,117608,117736,117864,117992,118120,118248,118376,118504,118632,118760,118888,119016,119144,119272,119400,119528,119656,119784,119912,120040,120168,120296,120424,120552,120680,120808,120936,121064,121192,121320,121448,121576,121704,121832,121960,122088,122216,122344,122472,122600,122728,122856,122984,123112,123240,123368,123496,123624,123752,123880,124008,124136,124264,124392,124520,124648,124776,124904,125032,125160,125288,125416,125544,125672,125800,125928,126056,126184,126312,126440,126568,126696,126824,126952,127080,127208,127336,127464,127592,127720,127848,127976,128104,128232,128360,128488,128616,128744,128872,129000,129128,129256,129384,129512,129640,129768,129896,130024,130152,130280,130408,130536,130664,130792,130920,131048,131176,131304,131432,131560,131688,131816,131944}'::integer[])) +(2 rows) + +-- Query Hash: 4777b3359cf3c919e54e6a6368b5daec +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1256,1512,1768,2024,2280,2536,2792,3048,3304,3560,3816,4072,4328,4584,4840,5096,5352,5608,5864,6120,6376,6632,6888,7144,7400,7656,7912,8168,8424,8680,8936,9192,9448,9704,9960,10216,10472,10728,10984,11240,11496,11752,12008,12264,12520,12776,13032,13288,13544,13800,14056,14312,14568,14824,15080,15336,15592,15848,16104,16360,16616,16872,17128,17384,17640,17896,18152,18408,18664,18920,19176,19432,19688,19944,20200,20456,20712,20968,21224,21480,21736,21992,22248,22504,22760,23016,23272,23528,23784,24040,24296,24552,24808,25064,25320,25576,25832,26088,26344,26600,26856,27112,27368,27624,27880,28136,28392,28648,28904,29160,29416,29672,29928,30184,30440,30696,30952,31208,31464,31720,31976,32232,32488,32744,33000,33256,33512,33768,34024,34280,34536,34792,35048,35304,35560,35816,36072,36328,36584,36840,37096,37352,37608,37864,38120,38376,38632,38888,39144,39400,39656,39912,40168,40424,40680,40936,41192,41448,41704,41960,42216,42472,42728,42984,43240,43496,43752,44008,44264,44520,44776,45032,45288,45544,45800,46056,46312,46568,46824,47080,47336,47592,47848,48104,48360,48616,48872,49128,49384,49640,49896,50152,50408,50664,50920,51176,51432,51688,51944,52200,52456,52712,52968,53224,53480,53736,53992,54248,54504,54760,55016,55272,55528,55784,56040,56296,56552,56808,57064,57320,57576,57832,58088,58344,58600,58856,59112,59368,59624,59880,60136,60392,60648,60904,61160,61416,61672,61928,62184,62440,62696,62952,63208,63464,63720,63976,64232,64488,64744,65000,65256,65512,65768,66024,66280,66536,66792,67048,67304,67560,67816,68072,68328,68584,68840,69096,69352,69608,69864,70120,70376,70632,70888,71144,71400,71656,71912,72168,72424,72680,72936,73192,73448,73704,73960,74216,74472,74728,74984,75240,75496,75752,76008,76264,76520,76776,77032,77288,77544,77800,78056,78312,78568,78824,79080,79336,79592,79848,80104,80360,80616,80872,81128,81384,81640,81896,82152,82408,82664,82920,83176,83432,83688,83944,84200,84456,84712,84968,85224,85480,85736,85992,86248,86504,86760,87016,87272,87528,87784,88040,88296,88552,88808,89064,89320,89576,89832,90088,90344,90600,90856,91112,91368,91624,91880,92136,92392,92648,92904,93160,93416,93672,93928,94184,94440,94696,94952,95208,95464,95720,95976,96232,96488,96744,97000,97256,97512,97768,98024,98280,98536,98792,99048,99304,99560,99816,100072,100328,100584,100840,101096,101352,101608,101864,102120,102376,102632,102888,103144,103400,103656,103912,104168,104424,104680,104936,105192,105448,105704,105960,106216,106472,106728,106984,107240,107496,107752,108008,108264,108520,108776,109032,109288,109544,109800,110056,110312,110568,110824,111080,111336,111592,111848,112104,112360,112616,112872,113128,113384,113640,113896,114152,114408,114664,114920,115176,115432,115688,115944,116200,116456,116712,116968,117224,117480,117736,117992,118248,118504,118760,119016,119272,119528,119784,120040,120296,120552,120808,121064,121320,121576,121832,122088,122344,122600,122856,123112,123368,123624,123880,124136,124392,124648,124904,125160,125416,125672,125928,126184,126440,126696,126952,127208,127464,127720,127976,128232,128488,128744,129000,129256,129512,129768,130024,130280,130536,130792,131048,131304,131560,131816,132072,132328,132584,132840,133096,133352,133608,133864,134120,134376,134632,134888,135144,135400,135656,135912,136168,136424,136680,136936,137192,137448,137704,137960,138216,138472,138728,138984,139240,139496,139752,140008,140264,140520,140776,141032,141288,141544,141800,142056,142312,142568,142824,143080,143336,143592,143848,144104,144360,144616,144872,145128,145384,145640,145896,146152,146408,146664,146920,147176,147432,147688,147944,148200,148456,148712,148968,149224,149480,149736,149992,150248,150504,150760,151016,151272,151528,151784,152040,152296,152552,152808,153064,153320,153576,153832,154088,154344,154600,154856,155112,155368,155624,155880,156136,156392,156648,156904,157160,157416,157672,157928,158184,158440,158696,158952,159208,159464,159720,159976,160232,160488,160744,161000,161256,161512,161768,162024,162280,162536,162792,163048,163304,163560,163816,164072,164328,164584,164840,165096,165352,165608,165864,166120,166376,166632,166888,167144,167400,167656,167912,168168,168424,168680,168936,169192,169448,169704,169960,170216,170472,170728,170984,171240,171496,171752,172008,172264,172520,172776,173032,173288,173544,173800,174056,174312,174568,174824,175080,175336,175592,175848,176104,176360,176616,176872,177128,177384,177640,177896,178152,178408,178664,178920,179176,179432,179688,179944,180200,180456,180712,180968,181224,181480,181736,181992,182248,182504,182760,183016,183272,183528,183784,184040,184296,184552,184808,185064,185320,185576,185832,186088,186344,186600,186856,187112,187368,187624,187880,188136,188392,188648,188904,189160,189416,189672,189928,190184,190440,190696,190952,191208,191464,191720,191976,192232,192488,192744,193000,193256,193512,193768,194024,194280,194536,194792,195048,195304,195560,195816,196072,196328,196584,196840,197096,197352,197608,197864,198120,198376,198632,198888,199144,199400,199656,199912,200168,200424,200680,200936,201192,201448,201704,201960,202216,202472,202728,202984,203240,203496,203752,204008,204264,204520,204776,205032,205288,205544,205800,206056,206312,206568,206824,207080,207336,207592,207848,208104,208360,208616,208872,209128,209384,209640,209896,210152,210408,210664,210920,211176,211432,211688,211944,212200,212456,212712,212968,213224,213480,213736,213992,214248,214504,214760,215016,215272,215528,215784,216040,216296,216552,216808,217064,217320,217576,217832,218088,218344,218600,218856,219112,219368,219624,219880,220136,220392,220648,220904,221160,221416,221672,221928,222184,222440,222696,222952,223208,223464,223720,223976,224232,224488,224744,225000,225256,225512,225768,226024,226280,226536,226792,227048,227304,227560,227816,228072,228328,228584,228840,229096,229352,229608,229864,230120,230376,230632,230888,231144,231400,231656,231912,232168,232424,232680,232936,233192,233448,233704,233960,234216,234472,234728,234984,235240,235496,235752,236008,236264,236520,236776,237032,237288,237544,237800,238056,238312,238568,238824,239080,239336,239592,239848,240104,240360,240616,240872,241128,241384,241640,241896,242152,242408,242664,242920,243176,243432,243688,243944,244200,244456,244712,244968,245224,245480,245736,245992,246248,246504,246760,247016,247272,247528,247784,248040,248296,248552,248808,249064,249320,249576,249832,250088,250344,250600,250856,251112,251368,251624,251880,252136,252392,252648,252904,253160,253416,253672,253928,254184,254440,254696,254952,255208,255464,255720,255976,256232,256488,256744,257000,257256,257512,257768,258024,258280,258536,258792,259048,259304,259560,259816,260072,260328,260584,260840,261096,261352,261608,261864,262120,262376,262632,262888); + QUERY PLAN +-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_1m_pkey on t_range_1m + Index Cond: (id = ANY ('{1000,1256,1512,1768,2024,2280,2536,2792,3048,3304,3560,3816,4072,4328,4584,4840,5096,5352,5608,5864,6120,6376,6632,6888,7144,7400,7656,7912,8168,8424,8680,8936,9192,9448,9704,9960,10216,10472,10728,10984,11240,11496,11752,12008,12264,12520,12776,13032,13288,13544,13800,14056,14312,14568,14824,15080,15336,15592,15848,16104,16360,16616,16872,17128,17384,17640,17896,18152,18408,18664,18920,19176,19432,19688,19944,20200,20456,20712,20968,21224,21480,21736,21992,22248,22504,22760,23016,23272,23528,23784,24040,24296,24552,24808,25064,25320,25576,25832,26088,26344,26600,26856,27112,27368,27624,27880,28136,28392,28648,28904,29160,29416,29672,29928,30184,30440,30696,30952,31208,31464,31720,31976,32232,32488,32744,33000,33256,33512,33768,34024,34280,34536,34792,35048,35304,35560,35816,36072,36328,36584,36840,37096,37352,37608,37864,38120,38376,38632,38888,39144,39400,39656,39912,40168,40424,40680,40936,41192,41448,41704,41960,42216,42472,42728,42984,43240,43496,43752,44008,44264,44520,44776,45032,45288,45544,45800,46056,46312,46568,46824,47080,47336,47592,47848,48104,48360,48616,48872,49128,49384,49640,49896,50152,50408,50664,50920,51176,51432,51688,51944,52200,52456,52712,52968,53224,53480,53736,53992,54248,54504,54760,55016,55272,55528,55784,56040,56296,56552,56808,57064,57320,57576,57832,58088,58344,58600,58856,59112,59368,59624,59880,60136,60392,60648,60904,61160,61416,61672,61928,62184,62440,62696,62952,63208,63464,63720,63976,64232,64488,64744,65000,65256,65512,65768,66024,66280,66536,66792,67048,67304,67560,67816,68072,68328,68584,68840,69096,69352,69608,69864,70120,70376,70632,70888,71144,71400,71656,71912,72168,72424,72680,72936,73192,73448,73704,73960,74216,74472,74728,74984,75240,75496,75752,76008,76264,76520,76776,77032,77288,77544,77800,78056,78312,78568,78824,79080,79336,79592,79848,80104,80360,80616,80872,81128,81384,81640,81896,82152,82408,82664,82920,83176,83432,83688,83944,84200,84456,84712,84968,85224,85480,85736,85992,86248,86504,86760,87016,87272,87528,87784,88040,88296,88552,88808,89064,89320,89576,89832,90088,90344,90600,90856,91112,91368,91624,91880,92136,92392,92648,92904,93160,93416,93672,93928,94184,94440,94696,94952,95208,95464,95720,95976,96232,96488,96744,97000,97256,97512,97768,98024,98280,98536,98792,99048,99304,99560,99816,100072,100328,100584,100840,101096,101352,101608,101864,102120,102376,102632,102888,103144,103400,103656,103912,104168,104424,104680,104936,105192,105448,105704,105960,106216,106472,106728,106984,107240,107496,107752,108008,108264,108520,108776,109032,109288,109544,109800,110056,110312,110568,110824,111080,111336,111592,111848,112104,112360,112616,112872,113128,113384,113640,113896,114152,114408,114664,114920,115176,115432,115688,115944,116200,116456,116712,116968,117224,117480,117736,117992,118248,118504,118760,119016,119272,119528,119784,120040,120296,120552,120808,121064,121320,121576,121832,122088,122344,122600,122856,123112,123368,123624,123880,124136,124392,124648,124904,125160,125416,125672,125928,126184,126440,126696,126952,127208,127464,127720,127976,128232,128488,128744,129000,129256,129512,129768,130024,130280,130536,130792,131048,131304,131560,131816,132072,132328,132584,132840,133096,133352,133608,133864,134120,134376,134632,134888,135144,135400,135656,135912,136168,136424,136680,136936,137192,137448,137704,137960,138216,138472,138728,138984,139240,139496,139752,140008,140264,140520,140776,141032,141288,141544,141800,142056,142312,142568,142824,143080,143336,143592,143848,144104,144360,144616,144872,145128,145384,145640,145896,146152,146408,146664,146920,147176,147432,147688,147944,148200,148456,148712,148968,149224,149480,149736,149992,150248,150504,150760,151016,151272,151528,151784,152040,152296,152552,152808,153064,153320,153576,153832,154088,154344,154600,154856,155112,155368,155624,155880,156136,156392,156648,156904,157160,157416,157672,157928,158184,158440,158696,158952,159208,159464,159720,159976,160232,160488,160744,161000,161256,161512,161768,162024,162280,162536,162792,163048,163304,163560,163816,164072,164328,164584,164840,165096,165352,165608,165864,166120,166376,166632,166888,167144,167400,167656,167912,168168,168424,168680,168936,169192,169448,169704,169960,170216,170472,170728,170984,171240,171496,171752,172008,172264,172520,172776,173032,173288,173544,173800,174056,174312,174568,174824,175080,175336,175592,175848,176104,176360,176616,176872,177128,177384,177640,177896,178152,178408,178664,178920,179176,179432,179688,179944,180200,180456,180712,180968,181224,181480,181736,181992,182248,182504,182760,183016,183272,183528,183784,184040,184296,184552,184808,185064,185320,185576,185832,186088,186344,186600,186856,187112,187368,187624,187880,188136,188392,188648,188904,189160,189416,189672,189928,190184,190440,190696,190952,191208,191464,191720,191976,192232,192488,192744,193000,193256,193512,193768,194024,194280,194536,194792,195048,195304,195560,195816,196072,196328,196584,196840,197096,197352,197608,197864,198120,198376,198632,198888,199144,199400,199656,199912,200168,200424,200680,200936,201192,201448,201704,201960,202216,202472,202728,202984,203240,203496,203752,204008,204264,204520,204776,205032,205288,205544,205800,206056,206312,206568,206824,207080,207336,207592,207848,208104,208360,208616,208872,209128,209384,209640,209896,210152,210408,210664,210920,211176,211432,211688,211944,212200,212456,212712,212968,213224,213480,213736,213992,214248,214504,214760,215016,215272,215528,215784,216040,216296,216552,216808,217064,217320,217576,217832,218088,218344,218600,218856,219112,219368,219624,219880,220136,220392,220648,220904,221160,221416,221672,221928,222184,222440,222696,222952,223208,223464,223720,223976,224232,224488,224744,225000,225256,225512,225768,226024,226280,226536,226792,227048,227304,227560,227816,228072,228328,228584,228840,229096,229352,229608,229864,230120,230376,230632,230888,231144,231400,231656,231912,232168,232424,232680,232936,233192,233448,233704,233960,234216,234472,234728,234984,235240,235496,235752,236008,236264,236520,236776,237032,237288,237544,237800,238056,238312,238568,238824,239080,239336,239592,239848,240104,240360,240616,240872,241128,241384,241640,241896,242152,242408,242664,242920,243176,243432,243688,243944,244200,244456,244712,244968,245224,245480,245736,245992,246248,246504,246760,247016,247272,247528,247784,248040,248296,248552,248808,249064,249320,249576,249832,250088,250344,250600,250856,251112,251368,251624,251880,252136,252392,252648,252904,253160,253416,253672,253928,254184,254440,254696,254952,255208,255464,255720,255976,256232,256488,256744,257000,257256,257512,257768,258024,258280,258536,258792,259048,259304,259560,259816,260072,260328,260584,260840,261096,261352,261608,261864,262120,262376,262632,262888}'::integer[])) +(2 rows) + +-- Query Hash: 29adb2092878b6b245bee82f409a5fc3 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1512,2024,2536,3048,3560,4072,4584,5096,5608,6120,6632,7144,7656,8168,8680,9192,9704,10216,10728,11240,11752,12264,12776,13288,13800,14312,14824,15336,15848,16360,16872,17384,17896,18408,18920,19432,19944,20456,20968,21480,21992,22504,23016,23528,24040,24552,25064,25576,26088,26600,27112,27624,28136,28648,29160,29672,30184,30696,31208,31720,32232,32744,33256,33768,34280,34792,35304,35816,36328,36840,37352,37864,38376,38888,39400,39912,40424,40936,41448,41960,42472,42984,43496,44008,44520,45032,45544,46056,46568,47080,47592,48104,48616,49128,49640,50152,50664,51176,51688,52200,52712,53224,53736,54248,54760,55272,55784,56296,56808,57320,57832,58344,58856,59368,59880,60392,60904,61416,61928,62440,62952,63464,63976,64488,65000,65512,66024,66536,67048,67560,68072,68584,69096,69608,70120,70632,71144,71656,72168,72680,73192,73704,74216,74728,75240,75752,76264,76776,77288,77800,78312,78824,79336,79848,80360,80872,81384,81896,82408,82920,83432,83944,84456,84968,85480,85992,86504,87016,87528,88040,88552,89064,89576,90088,90600,91112,91624,92136,92648,93160,93672,94184,94696,95208,95720,96232,96744,97256,97768,98280,98792,99304,99816,100328,100840,101352,101864,102376,102888,103400,103912,104424,104936,105448,105960,106472,106984,107496,108008,108520,109032,109544,110056,110568,111080,111592,112104,112616,113128,113640,114152,114664,115176,115688,116200,116712,117224,117736,118248,118760,119272,119784,120296,120808,121320,121832,122344,122856,123368,123880,124392,124904,125416,125928,126440,126952,127464,127976,128488,129000,129512,130024,130536,131048,131560,132072,132584,133096,133608,134120,134632,135144,135656,136168,136680,137192,137704,138216,138728,139240,139752,140264,140776,141288,141800,142312,142824,143336,143848,144360,144872,145384,145896,146408,146920,147432,147944,148456,148968,149480,149992,150504,151016,151528,152040,152552,153064,153576,154088,154600,155112,155624,156136,156648,157160,157672,158184,158696,159208,159720,160232,160744,161256,161768,162280,162792,163304,163816,164328,164840,165352,165864,166376,166888,167400,167912,168424,168936,169448,169960,170472,170984,171496,172008,172520,173032,173544,174056,174568,175080,175592,176104,176616,177128,177640,178152,178664,179176,179688,180200,180712,181224,181736,182248,182760,183272,183784,184296,184808,185320,185832,186344,186856,187368,187880,188392,188904,189416,189928,190440,190952,191464,191976,192488,193000,193512,194024,194536,195048,195560,196072,196584,197096,197608,198120,198632,199144,199656,200168,200680,201192,201704,202216,202728,203240,203752,204264,204776,205288,205800,206312,206824,207336,207848,208360,208872,209384,209896,210408,210920,211432,211944,212456,212968,213480,213992,214504,215016,215528,216040,216552,217064,217576,218088,218600,219112,219624,220136,220648,221160,221672,222184,222696,223208,223720,224232,224744,225256,225768,226280,226792,227304,227816,228328,228840,229352,229864,230376,230888,231400,231912,232424,232936,233448,233960,234472,234984,235496,236008,236520,237032,237544,238056,238568,239080,239592,240104,240616,241128,241640,242152,242664,243176,243688,244200,244712,245224,245736,246248,246760,247272,247784,248296,248808,249320,249832,250344,250856,251368,251880,252392,252904,253416,253928,254440,254952,255464,255976,256488,257000,257512,258024,258536,259048,259560,260072,260584,261096,261608,262120,262632,263144,263656,264168,264680,265192,265704,266216,266728,267240,267752,268264,268776,269288,269800,270312,270824,271336,271848,272360,272872,273384,273896,274408,274920,275432,275944,276456,276968,277480,277992,278504,279016,279528,280040,280552,281064,281576,282088,282600,283112,283624,284136,284648,285160,285672,286184,286696,287208,287720,288232,288744,289256,289768,290280,290792,291304,291816,292328,292840,293352,293864,294376,294888,295400,295912,296424,296936,297448,297960,298472,298984,299496,300008,300520,301032,301544,302056,302568,303080,303592,304104,304616,305128,305640,306152,306664,307176,307688,308200,308712,309224,309736,310248,310760,311272,311784,312296,312808,313320,313832,314344,314856,315368,315880,316392,316904,317416,317928,318440,318952,319464,319976,320488,321000,321512,322024,322536,323048,323560,324072,324584,325096,325608,326120,326632,327144,327656,328168,328680,329192,329704,330216,330728,331240,331752,332264,332776,333288,333800,334312,334824,335336,335848,336360,336872,337384,337896,338408,338920,339432,339944,340456,340968,341480,341992,342504,343016,343528,344040,344552,345064,345576,346088,346600,347112,347624,348136,348648,349160,349672,350184,350696,351208,351720,352232,352744,353256,353768,354280,354792,355304,355816,356328,356840,357352,357864,358376,358888,359400,359912,360424,360936,361448,361960,362472,362984,363496,364008,364520,365032,365544,366056,366568,367080,367592,368104,368616,369128,369640,370152,370664,371176,371688,372200,372712,373224,373736,374248,374760,375272,375784,376296,376808,377320,377832,378344,378856,379368,379880,380392,380904,381416,381928,382440,382952,383464,383976,384488,385000,385512,386024,386536,387048,387560,388072,388584,389096,389608,390120,390632,391144,391656,392168,392680,393192,393704,394216,394728,395240,395752,396264,396776,397288,397800,398312,398824,399336,399848,400360,400872,401384,401896,402408,402920,403432,403944,404456,404968,405480,405992,406504,407016,407528,408040,408552,409064,409576,410088,410600,411112,411624,412136,412648,413160,413672,414184,414696,415208,415720,416232,416744,417256,417768,418280,418792,419304,419816,420328,420840,421352,421864,422376,422888,423400,423912,424424,424936,425448,425960,426472,426984,427496,428008,428520,429032,429544,430056,430568,431080,431592,432104,432616,433128,433640,434152,434664,435176,435688,436200,436712,437224,437736,438248,438760,439272,439784,440296,440808,441320,441832,442344,442856,443368,443880,444392,444904,445416,445928,446440,446952,447464,447976,448488,449000,449512,450024,450536,451048,451560,452072,452584,453096,453608,454120,454632,455144,455656,456168,456680,457192,457704,458216,458728,459240,459752,460264,460776,461288,461800,462312,462824,463336,463848,464360,464872,465384,465896,466408,466920,467432,467944,468456,468968,469480,469992,470504,471016,471528,472040,472552,473064,473576,474088,474600,475112,475624,476136,476648,477160,477672,478184,478696,479208,479720,480232,480744,481256,481768,482280,482792,483304,483816,484328,484840,485352,485864,486376,486888,487400,487912,488424,488936,489448,489960,490472,490984,491496,492008,492520,493032,493544,494056,494568,495080,495592,496104,496616,497128,497640,498152,498664,499176,499688,500200,500712,501224,501736,502248,502760,503272,503784,504296,504808,505320,505832,506344,506856,507368,507880,508392,508904,509416,509928,510440,510952,511464,511976,512488,513000,513512,514024,514536,515048,515560,516072,516584,517096,517608,518120,518632,519144,519656,520168,520680,521192,521704,522216,522728,523240,523752,524264,524776); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_1m_pkey on t_range_1m + Index Cond: (id = ANY ('{1000,1512,2024,2536,3048,3560,4072,4584,5096,5608,6120,6632,7144,7656,8168,8680,9192,9704,10216,10728,11240,11752,12264,12776,13288,13800,14312,14824,15336,15848,16360,16872,17384,17896,18408,18920,19432,19944,20456,20968,21480,21992,22504,23016,23528,24040,24552,25064,25576,26088,26600,27112,27624,28136,28648,29160,29672,30184,30696,31208,31720,32232,32744,33256,33768,34280,34792,35304,35816,36328,36840,37352,37864,38376,38888,39400,39912,40424,40936,41448,41960,42472,42984,43496,44008,44520,45032,45544,46056,46568,47080,47592,48104,48616,49128,49640,50152,50664,51176,51688,52200,52712,53224,53736,54248,54760,55272,55784,56296,56808,57320,57832,58344,58856,59368,59880,60392,60904,61416,61928,62440,62952,63464,63976,64488,65000,65512,66024,66536,67048,67560,68072,68584,69096,69608,70120,70632,71144,71656,72168,72680,73192,73704,74216,74728,75240,75752,76264,76776,77288,77800,78312,78824,79336,79848,80360,80872,81384,81896,82408,82920,83432,83944,84456,84968,85480,85992,86504,87016,87528,88040,88552,89064,89576,90088,90600,91112,91624,92136,92648,93160,93672,94184,94696,95208,95720,96232,96744,97256,97768,98280,98792,99304,99816,100328,100840,101352,101864,102376,102888,103400,103912,104424,104936,105448,105960,106472,106984,107496,108008,108520,109032,109544,110056,110568,111080,111592,112104,112616,113128,113640,114152,114664,115176,115688,116200,116712,117224,117736,118248,118760,119272,119784,120296,120808,121320,121832,122344,122856,123368,123880,124392,124904,125416,125928,126440,126952,127464,127976,128488,129000,129512,130024,130536,131048,131560,132072,132584,133096,133608,134120,134632,135144,135656,136168,136680,137192,137704,138216,138728,139240,139752,140264,140776,141288,141800,142312,142824,143336,143848,144360,144872,145384,145896,146408,146920,147432,147944,148456,148968,149480,149992,150504,151016,151528,152040,152552,153064,153576,154088,154600,155112,155624,156136,156648,157160,157672,158184,158696,159208,159720,160232,160744,161256,161768,162280,162792,163304,163816,164328,164840,165352,165864,166376,166888,167400,167912,168424,168936,169448,169960,170472,170984,171496,172008,172520,173032,173544,174056,174568,175080,175592,176104,176616,177128,177640,178152,178664,179176,179688,180200,180712,181224,181736,182248,182760,183272,183784,184296,184808,185320,185832,186344,186856,187368,187880,188392,188904,189416,189928,190440,190952,191464,191976,192488,193000,193512,194024,194536,195048,195560,196072,196584,197096,197608,198120,198632,199144,199656,200168,200680,201192,201704,202216,202728,203240,203752,204264,204776,205288,205800,206312,206824,207336,207848,208360,208872,209384,209896,210408,210920,211432,211944,212456,212968,213480,213992,214504,215016,215528,216040,216552,217064,217576,218088,218600,219112,219624,220136,220648,221160,221672,222184,222696,223208,223720,224232,224744,225256,225768,226280,226792,227304,227816,228328,228840,229352,229864,230376,230888,231400,231912,232424,232936,233448,233960,234472,234984,235496,236008,236520,237032,237544,238056,238568,239080,239592,240104,240616,241128,241640,242152,242664,243176,243688,244200,244712,245224,245736,246248,246760,247272,247784,248296,248808,249320,249832,250344,250856,251368,251880,252392,252904,253416,253928,254440,254952,255464,255976,256488,257000,257512,258024,258536,259048,259560,260072,260584,261096,261608,262120,262632,263144,263656,264168,264680,265192,265704,266216,266728,267240,267752,268264,268776,269288,269800,270312,270824,271336,271848,272360,272872,273384,273896,274408,274920,275432,275944,276456,276968,277480,277992,278504,279016,279528,280040,280552,281064,281576,282088,282600,283112,283624,284136,284648,285160,285672,286184,286696,287208,287720,288232,288744,289256,289768,290280,290792,291304,291816,292328,292840,293352,293864,294376,294888,295400,295912,296424,296936,297448,297960,298472,298984,299496,300008,300520,301032,301544,302056,302568,303080,303592,304104,304616,305128,305640,306152,306664,307176,307688,308200,308712,309224,309736,310248,310760,311272,311784,312296,312808,313320,313832,314344,314856,315368,315880,316392,316904,317416,317928,318440,318952,319464,319976,320488,321000,321512,322024,322536,323048,323560,324072,324584,325096,325608,326120,326632,327144,327656,328168,328680,329192,329704,330216,330728,331240,331752,332264,332776,333288,333800,334312,334824,335336,335848,336360,336872,337384,337896,338408,338920,339432,339944,340456,340968,341480,341992,342504,343016,343528,344040,344552,345064,345576,346088,346600,347112,347624,348136,348648,349160,349672,350184,350696,351208,351720,352232,352744,353256,353768,354280,354792,355304,355816,356328,356840,357352,357864,358376,358888,359400,359912,360424,360936,361448,361960,362472,362984,363496,364008,364520,365032,365544,366056,366568,367080,367592,368104,368616,369128,369640,370152,370664,371176,371688,372200,372712,373224,373736,374248,374760,375272,375784,376296,376808,377320,377832,378344,378856,379368,379880,380392,380904,381416,381928,382440,382952,383464,383976,384488,385000,385512,386024,386536,387048,387560,388072,388584,389096,389608,390120,390632,391144,391656,392168,392680,393192,393704,394216,394728,395240,395752,396264,396776,397288,397800,398312,398824,399336,399848,400360,400872,401384,401896,402408,402920,403432,403944,404456,404968,405480,405992,406504,407016,407528,408040,408552,409064,409576,410088,410600,411112,411624,412136,412648,413160,413672,414184,414696,415208,415720,416232,416744,417256,417768,418280,418792,419304,419816,420328,420840,421352,421864,422376,422888,423400,423912,424424,424936,425448,425960,426472,426984,427496,428008,428520,429032,429544,430056,430568,431080,431592,432104,432616,433128,433640,434152,434664,435176,435688,436200,436712,437224,437736,438248,438760,439272,439784,440296,440808,441320,441832,442344,442856,443368,443880,444392,444904,445416,445928,446440,446952,447464,447976,448488,449000,449512,450024,450536,451048,451560,452072,452584,453096,453608,454120,454632,455144,455656,456168,456680,457192,457704,458216,458728,459240,459752,460264,460776,461288,461800,462312,462824,463336,463848,464360,464872,465384,465896,466408,466920,467432,467944,468456,468968,469480,469992,470504,471016,471528,472040,472552,473064,473576,474088,474600,475112,475624,476136,476648,477160,477672,478184,478696,479208,479720,480232,480744,481256,481768,482280,482792,483304,483816,484328,484840,485352,485864,486376,486888,487400,487912,488424,488936,489448,489960,490472,490984,491496,492008,492520,493032,493544,494056,494568,495080,495592,496104,496616,497128,497640,498152,498664,499176,499688,500200,500712,501224,501736,502248,502760,503272,503784,504296,504808,505320,505832,506344,506856,507368,507880,508392,508904,509416,509928,510440,510952,511464,511976,512488,513000,513512,514024,514536,515048,515560,516072,516584,517096,517608,518120,518632,519144,519656,520168,520680,521192,521704,522216,522728,523240,523752,524264,524776}'::integer[])) +(2 rows) + +-- Query Hash: d22c2e8fce342bd83398e5c1574c5b23 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,21480,41960,62440,82920,103400,123880,144360,164840,185320,205800,226280,246760,267240,287720,308200,328680,349160,369640,390120,410600,431080,451560,472040,492520,513000,533480,553960,574440,594920,615400,635880); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_1m_pkey on t_range_1m + Index Cond: (id = ANY ('{1000,21480,41960,62440,82920,103400,123880,144360,164840,185320,205800,226280,246760,267240,287720,308200,328680,349160,369640,390120,410600,431080,451560,472040,492520,513000,533480,553960,574440,594920,615400,635880}'::integer[])) +(2 rows) + +-- Query Hash: 233effbf5f668d651f11a4ab853a6b00 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,11240,21480,31720,41960,52200,62440,72680,82920,93160,103400,113640,123880,134120,144360,154600,164840,175080,185320,195560,205800,216040,226280,236520,246760,257000,267240,277480,287720,297960,308200,318440,328680,338920,349160,359400,369640,379880,390120,400360,410600,420840,431080,441320,451560,461800,472040,482280,492520,502760,513000,523240,533480,543720,553960,564200,574440,584680,594920,605160,615400,625640,635880,646120); + QUERY PLAN +------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ + Index Scan using t_range_1m_pkey on t_range_1m + Index Cond: (id = ANY ('{1000,11240,21480,31720,41960,52200,62440,72680,82920,93160,103400,113640,123880,134120,144360,154600,164840,175080,185320,195560,205800,216040,226280,236520,246760,257000,267240,277480,287720,297960,308200,318440,328680,338920,349160,359400,369640,379880,390120,400360,410600,420840,431080,441320,451560,461800,472040,482280,492520,502760,513000,523240,533480,543720,553960,564200,574440,584680,594920,605160,615400,625640,635880,646120}'::integer[])) +(2 rows) + +-- Query Hash: 84b5c9fc4a13ea5ec97d1cbd9309221a +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,6120,11240,16360,21480,26600,31720,36840,41960,47080,52200,57320,62440,67560,72680,77800,82920,88040,93160,98280,103400,108520,113640,118760,123880,129000,134120,139240,144360,149480,154600,159720,164840,169960,175080,180200,185320,190440,195560,200680,205800,210920,216040,221160,226280,231400,236520,241640,246760,251880,257000,262120,267240,272360,277480,282600,287720,292840,297960,303080,308200,313320,318440,323560,328680,333800,338920,344040,349160,354280,359400,364520,369640,374760,379880,385000,390120,395240,400360,405480,410600,415720,420840,425960,431080,436200,441320,446440,451560,456680,461800,466920,472040,477160,482280,487400,492520,497640,502760,507880,513000,518120,523240,528360,533480,538600,543720,548840,553960,559080,564200,569320,574440,579560,584680,589800,594920,600040,605160,610280,615400,620520,625640,630760,635880,641000,646120,651240); + QUERY PLAN +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_1m_pkey on t_range_1m + Index Cond: (id = ANY ('{1000,6120,11240,16360,21480,26600,31720,36840,41960,47080,52200,57320,62440,67560,72680,77800,82920,88040,93160,98280,103400,108520,113640,118760,123880,129000,134120,139240,144360,149480,154600,159720,164840,169960,175080,180200,185320,190440,195560,200680,205800,210920,216040,221160,226280,231400,236520,241640,246760,251880,257000,262120,267240,272360,277480,282600,287720,292840,297960,303080,308200,313320,318440,323560,328680,333800,338920,344040,349160,354280,359400,364520,369640,374760,379880,385000,390120,395240,400360,405480,410600,415720,420840,425960,431080,436200,441320,446440,451560,456680,461800,466920,472040,477160,482280,487400,492520,497640,502760,507880,513000,518120,523240,528360,533480,538600,543720,548840,553960,559080,564200,569320,574440,579560,584680,589800,594920,600040,605160,610280,615400,620520,625640,630760,635880,641000,646120,651240}'::integer[])) +(2 rows) + +-- Query Hash: 01c06e209b2d767dd50cb075188a2096 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,3560,6120,8680,11240,13800,16360,18920,21480,24040,26600,29160,31720,34280,36840,39400,41960,44520,47080,49640,52200,54760,57320,59880,62440,65000,67560,70120,72680,75240,77800,80360,82920,85480,88040,90600,93160,95720,98280,100840,103400,105960,108520,111080,113640,116200,118760,121320,123880,126440,129000,131560,134120,136680,139240,141800,144360,146920,149480,152040,154600,157160,159720,162280,164840,167400,169960,172520,175080,177640,180200,182760,185320,187880,190440,193000,195560,198120,200680,203240,205800,208360,210920,213480,216040,218600,221160,223720,226280,228840,231400,233960,236520,239080,241640,244200,246760,249320,251880,254440,257000,259560,262120,264680,267240,269800,272360,274920,277480,280040,282600,285160,287720,290280,292840,295400,297960,300520,303080,305640,308200,310760,313320,315880,318440,321000,323560,326120,328680,331240,333800,336360,338920,341480,344040,346600,349160,351720,354280,356840,359400,361960,364520,367080,369640,372200,374760,377320,379880,382440,385000,387560,390120,392680,395240,397800,400360,402920,405480,408040,410600,413160,415720,418280,420840,423400,425960,428520,431080,433640,436200,438760,441320,443880,446440,449000,451560,454120,456680,459240,461800,464360,466920,469480,472040,474600,477160,479720,482280,484840,487400,489960,492520,495080,497640,500200,502760,505320,507880,510440,513000,515560,518120,520680,523240,525800,528360,530920,533480,536040,538600,541160,543720,546280,548840,551400,553960,556520,559080,561640,564200,566760,569320,571880,574440,577000,579560,582120,584680,587240,589800,592360,594920,597480,600040,602600,605160,607720,610280,612840,615400,617960,620520,623080,625640,628200,630760,633320,635880,638440,641000,643560,646120,648680,651240,653800); + QUERY PLAN +---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_1m_pkey on t_range_1m + Index Cond: (id = ANY ('{1000,3560,6120,8680,11240,13800,16360,18920,21480,24040,26600,29160,31720,34280,36840,39400,41960,44520,47080,49640,52200,54760,57320,59880,62440,65000,67560,70120,72680,75240,77800,80360,82920,85480,88040,90600,93160,95720,98280,100840,103400,105960,108520,111080,113640,116200,118760,121320,123880,126440,129000,131560,134120,136680,139240,141800,144360,146920,149480,152040,154600,157160,159720,162280,164840,167400,169960,172520,175080,177640,180200,182760,185320,187880,190440,193000,195560,198120,200680,203240,205800,208360,210920,213480,216040,218600,221160,223720,226280,228840,231400,233960,236520,239080,241640,244200,246760,249320,251880,254440,257000,259560,262120,264680,267240,269800,272360,274920,277480,280040,282600,285160,287720,290280,292840,295400,297960,300520,303080,305640,308200,310760,313320,315880,318440,321000,323560,326120,328680,331240,333800,336360,338920,341480,344040,346600,349160,351720,354280,356840,359400,361960,364520,367080,369640,372200,374760,377320,379880,382440,385000,387560,390120,392680,395240,397800,400360,402920,405480,408040,410600,413160,415720,418280,420840,423400,425960,428520,431080,433640,436200,438760,441320,443880,446440,449000,451560,454120,456680,459240,461800,464360,466920,469480,472040,474600,477160,479720,482280,484840,487400,489960,492520,495080,497640,500200,502760,505320,507880,510440,513000,515560,518120,520680,523240,525800,528360,530920,533480,536040,538600,541160,543720,546280,548840,551400,553960,556520,559080,561640,564200,566760,569320,571880,574440,577000,579560,582120,584680,587240,589800,592360,594920,597480,600040,602600,605160,607720,610280,612840,615400,617960,620520,623080,625640,628200,630760,633320,635880,638440,641000,643560,646120,648680,651240,653800}'::integer[])) +(2 rows) + +-- Query Hash: 7fbe567a05d79f23888cb6ccadd6875f +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,2280,3560,4840,6120,7400,8680,9960,11240,12520,13800,15080,16360,17640,18920,20200,21480,22760,24040,25320,26600,27880,29160,30440,31720,33000,34280,35560,36840,38120,39400,40680,41960,43240,44520,45800,47080,48360,49640,50920,52200,53480,54760,56040,57320,58600,59880,61160,62440,63720,65000,66280,67560,68840,70120,71400,72680,73960,75240,76520,77800,79080,80360,81640,82920,84200,85480,86760,88040,89320,90600,91880,93160,94440,95720,97000,98280,99560,100840,102120,103400,104680,105960,107240,108520,109800,111080,112360,113640,114920,116200,117480,118760,120040,121320,122600,123880,125160,126440,127720,129000,130280,131560,132840,134120,135400,136680,137960,139240,140520,141800,143080,144360,145640,146920,148200,149480,150760,152040,153320,154600,155880,157160,158440,159720,161000,162280,163560,164840,166120,167400,168680,169960,171240,172520,173800,175080,176360,177640,178920,180200,181480,182760,184040,185320,186600,187880,189160,190440,191720,193000,194280,195560,196840,198120,199400,200680,201960,203240,204520,205800,207080,208360,209640,210920,212200,213480,214760,216040,217320,218600,219880,221160,222440,223720,225000,226280,227560,228840,230120,231400,232680,233960,235240,236520,237800,239080,240360,241640,242920,244200,245480,246760,248040,249320,250600,251880,253160,254440,255720,257000,258280,259560,260840,262120,263400,264680,265960,267240,268520,269800,271080,272360,273640,274920,276200,277480,278760,280040,281320,282600,283880,285160,286440,287720,289000,290280,291560,292840,294120,295400,296680,297960,299240,300520,301800,303080,304360,305640,306920,308200,309480,310760,312040,313320,314600,315880,317160,318440,319720,321000,322280,323560,324840,326120,327400,328680,329960,331240,332520,333800,335080,336360,337640,338920,340200,341480,342760,344040,345320,346600,347880,349160,350440,351720,353000,354280,355560,356840,358120,359400,360680,361960,363240,364520,365800,367080,368360,369640,370920,372200,373480,374760,376040,377320,378600,379880,381160,382440,383720,385000,386280,387560,388840,390120,391400,392680,393960,395240,396520,397800,399080,400360,401640,402920,404200,405480,406760,408040,409320,410600,411880,413160,414440,415720,417000,418280,419560,420840,422120,423400,424680,425960,427240,428520,429800,431080,432360,433640,434920,436200,437480,438760,440040,441320,442600,443880,445160,446440,447720,449000,450280,451560,452840,454120,455400,456680,457960,459240,460520,461800,463080,464360,465640,466920,468200,469480,470760,472040,473320,474600,475880,477160,478440,479720,481000,482280,483560,484840,486120,487400,488680,489960,491240,492520,493800,495080,496360,497640,498920,500200,501480,502760,504040,505320,506600,507880,509160,510440,511720,513000,514280,515560,516840,518120,519400,520680,521960,523240,524520,525800,527080,528360,529640,530920,532200,533480,534760,536040,537320,538600,539880,541160,542440,543720,545000,546280,547560,548840,550120,551400,552680,553960,555240,556520,557800,559080,560360,561640,562920,564200,565480,566760,568040,569320,570600,571880,573160,574440,575720,577000,578280,579560,580840,582120,583400,584680,585960,587240,588520,589800,591080,592360,593640,594920,596200,597480,598760,600040,601320,602600,603880,605160,606440,607720,609000,610280,611560,612840,614120,615400,616680,617960,619240,620520,621800,623080,624360,625640,626920,628200,629480,630760,632040,633320,634600,635880,637160,638440,639720,641000,642280,643560,644840,646120,647400,648680,649960,651240,652520,653800,655080); + QUERY PLAN +------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_1m_pkey on t_range_1m + Index Cond: (id = ANY ('{1000,2280,3560,4840,6120,7400,8680,9960,11240,12520,13800,15080,16360,17640,18920,20200,21480,22760,24040,25320,26600,27880,29160,30440,31720,33000,34280,35560,36840,38120,39400,40680,41960,43240,44520,45800,47080,48360,49640,50920,52200,53480,54760,56040,57320,58600,59880,61160,62440,63720,65000,66280,67560,68840,70120,71400,72680,73960,75240,76520,77800,79080,80360,81640,82920,84200,85480,86760,88040,89320,90600,91880,93160,94440,95720,97000,98280,99560,100840,102120,103400,104680,105960,107240,108520,109800,111080,112360,113640,114920,116200,117480,118760,120040,121320,122600,123880,125160,126440,127720,129000,130280,131560,132840,134120,135400,136680,137960,139240,140520,141800,143080,144360,145640,146920,148200,149480,150760,152040,153320,154600,155880,157160,158440,159720,161000,162280,163560,164840,166120,167400,168680,169960,171240,172520,173800,175080,176360,177640,178920,180200,181480,182760,184040,185320,186600,187880,189160,190440,191720,193000,194280,195560,196840,198120,199400,200680,201960,203240,204520,205800,207080,208360,209640,210920,212200,213480,214760,216040,217320,218600,219880,221160,222440,223720,225000,226280,227560,228840,230120,231400,232680,233960,235240,236520,237800,239080,240360,241640,242920,244200,245480,246760,248040,249320,250600,251880,253160,254440,255720,257000,258280,259560,260840,262120,263400,264680,265960,267240,268520,269800,271080,272360,273640,274920,276200,277480,278760,280040,281320,282600,283880,285160,286440,287720,289000,290280,291560,292840,294120,295400,296680,297960,299240,300520,301800,303080,304360,305640,306920,308200,309480,310760,312040,313320,314600,315880,317160,318440,319720,321000,322280,323560,324840,326120,327400,328680,329960,331240,332520,333800,335080,336360,337640,338920,340200,341480,342760,344040,345320,346600,347880,349160,350440,351720,353000,354280,355560,356840,358120,359400,360680,361960,363240,364520,365800,367080,368360,369640,370920,372200,373480,374760,376040,377320,378600,379880,381160,382440,383720,385000,386280,387560,388840,390120,391400,392680,393960,395240,396520,397800,399080,400360,401640,402920,404200,405480,406760,408040,409320,410600,411880,413160,414440,415720,417000,418280,419560,420840,422120,423400,424680,425960,427240,428520,429800,431080,432360,433640,434920,436200,437480,438760,440040,441320,442600,443880,445160,446440,447720,449000,450280,451560,452840,454120,455400,456680,457960,459240,460520,461800,463080,464360,465640,466920,468200,469480,470760,472040,473320,474600,475880,477160,478440,479720,481000,482280,483560,484840,486120,487400,488680,489960,491240,492520,493800,495080,496360,497640,498920,500200,501480,502760,504040,505320,506600,507880,509160,510440,511720,513000,514280,515560,516840,518120,519400,520680,521960,523240,524520,525800,527080,528360,529640,530920,532200,533480,534760,536040,537320,538600,539880,541160,542440,543720,545000,546280,547560,548840,550120,551400,552680,553960,555240,556520,557800,559080,560360,561640,562920,564200,565480,566760,568040,569320,570600,571880,573160,574440,575720,577000,578280,579560,580840,582120,583400,584680,585960,587240,588520,589800,591080,592360,593640,594920,596200,597480,598760,600040,601320,602600,603880,605160,606440,607720,609000,610280,611560,612840,614120,615400,616680,617960,619240,620520,621800,623080,624360,625640,626920,628200,629480,630760,632040,633320,634600,635880,637160,638440,639720,641000,642280,643560,644840,646120,647400,648680,649960,651240,652520,653800,655080}'::integer[])) +(2 rows) + +-- Query Hash: 777f07dd51183ae5e812b49bde3b5f3d +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1640,2280,2920,3560,4200,4840,5480,6120,6760,7400,8040,8680,9320,9960,10600,11240,11880,12520,13160,13800,14440,15080,15720,16360,17000,17640,18280,18920,19560,20200,20840,21480,22120,22760,23400,24040,24680,25320,25960,26600,27240,27880,28520,29160,29800,30440,31080,31720,32360,33000,33640,34280,34920,35560,36200,36840,37480,38120,38760,39400,40040,40680,41320,41960,42600,43240,43880,44520,45160,45800,46440,47080,47720,48360,49000,49640,50280,50920,51560,52200,52840,53480,54120,54760,55400,56040,56680,57320,57960,58600,59240,59880,60520,61160,61800,62440,63080,63720,64360,65000,65640,66280,66920,67560,68200,68840,69480,70120,70760,71400,72040,72680,73320,73960,74600,75240,75880,76520,77160,77800,78440,79080,79720,80360,81000,81640,82280,82920,83560,84200,84840,85480,86120,86760,87400,88040,88680,89320,89960,90600,91240,91880,92520,93160,93800,94440,95080,95720,96360,97000,97640,98280,98920,99560,100200,100840,101480,102120,102760,103400,104040,104680,105320,105960,106600,107240,107880,108520,109160,109800,110440,111080,111720,112360,113000,113640,114280,114920,115560,116200,116840,117480,118120,118760,119400,120040,120680,121320,121960,122600,123240,123880,124520,125160,125800,126440,127080,127720,128360,129000,129640,130280,130920,131560,132200,132840,133480,134120,134760,135400,136040,136680,137320,137960,138600,139240,139880,140520,141160,141800,142440,143080,143720,144360,145000,145640,146280,146920,147560,148200,148840,149480,150120,150760,151400,152040,152680,153320,153960,154600,155240,155880,156520,157160,157800,158440,159080,159720,160360,161000,161640,162280,162920,163560,164200,164840,165480,166120,166760,167400,168040,168680,169320,169960,170600,171240,171880,172520,173160,173800,174440,175080,175720,176360,177000,177640,178280,178920,179560,180200,180840,181480,182120,182760,183400,184040,184680,185320,185960,186600,187240,187880,188520,189160,189800,190440,191080,191720,192360,193000,193640,194280,194920,195560,196200,196840,197480,198120,198760,199400,200040,200680,201320,201960,202600,203240,203880,204520,205160,205800,206440,207080,207720,208360,209000,209640,210280,210920,211560,212200,212840,213480,214120,214760,215400,216040,216680,217320,217960,218600,219240,219880,220520,221160,221800,222440,223080,223720,224360,225000,225640,226280,226920,227560,228200,228840,229480,230120,230760,231400,232040,232680,233320,233960,234600,235240,235880,236520,237160,237800,238440,239080,239720,240360,241000,241640,242280,242920,243560,244200,244840,245480,246120,246760,247400,248040,248680,249320,249960,250600,251240,251880,252520,253160,253800,254440,255080,255720,256360,257000,257640,258280,258920,259560,260200,260840,261480,262120,262760,263400,264040,264680,265320,265960,266600,267240,267880,268520,269160,269800,270440,271080,271720,272360,273000,273640,274280,274920,275560,276200,276840,277480,278120,278760,279400,280040,280680,281320,281960,282600,283240,283880,284520,285160,285800,286440,287080,287720,288360,289000,289640,290280,290920,291560,292200,292840,293480,294120,294760,295400,296040,296680,297320,297960,298600,299240,299880,300520,301160,301800,302440,303080,303720,304360,305000,305640,306280,306920,307560,308200,308840,309480,310120,310760,311400,312040,312680,313320,313960,314600,315240,315880,316520,317160,317800,318440,319080,319720,320360,321000,321640,322280,322920,323560,324200,324840,325480,326120,326760,327400,328040,328680,329320,329960,330600,331240,331880,332520,333160,333800,334440,335080,335720,336360,337000,337640,338280,338920,339560,340200,340840,341480,342120,342760,343400,344040,344680,345320,345960,346600,347240,347880,348520,349160,349800,350440,351080,351720,352360,353000,353640,354280,354920,355560,356200,356840,357480,358120,358760,359400,360040,360680,361320,361960,362600,363240,363880,364520,365160,365800,366440,367080,367720,368360,369000,369640,370280,370920,371560,372200,372840,373480,374120,374760,375400,376040,376680,377320,377960,378600,379240,379880,380520,381160,381800,382440,383080,383720,384360,385000,385640,386280,386920,387560,388200,388840,389480,390120,390760,391400,392040,392680,393320,393960,394600,395240,395880,396520,397160,397800,398440,399080,399720,400360,401000,401640,402280,402920,403560,404200,404840,405480,406120,406760,407400,408040,408680,409320,409960,410600,411240,411880,412520,413160,413800,414440,415080,415720,416360,417000,417640,418280,418920,419560,420200,420840,421480,422120,422760,423400,424040,424680,425320,425960,426600,427240,427880,428520,429160,429800,430440,431080,431720,432360,433000,433640,434280,434920,435560,436200,436840,437480,438120,438760,439400,440040,440680,441320,441960,442600,443240,443880,444520,445160,445800,446440,447080,447720,448360,449000,449640,450280,450920,451560,452200,452840,453480,454120,454760,455400,456040,456680,457320,457960,458600,459240,459880,460520,461160,461800,462440,463080,463720,464360,465000,465640,466280,466920,467560,468200,468840,469480,470120,470760,471400,472040,472680,473320,473960,474600,475240,475880,476520,477160,477800,478440,479080,479720,480360,481000,481640,482280,482920,483560,484200,484840,485480,486120,486760,487400,488040,488680,489320,489960,490600,491240,491880,492520,493160,493800,494440,495080,495720,496360,497000,497640,498280,498920,499560,500200,500840,501480,502120,502760,503400,504040,504680,505320,505960,506600,507240,507880,508520,509160,509800,510440,511080,511720,512360,513000,513640,514280,514920,515560,516200,516840,517480,518120,518760,519400,520040,520680,521320,521960,522600,523240,523880,524520,525160,525800,526440,527080,527720,528360,529000,529640,530280,530920,531560,532200,532840,533480,534120,534760,535400,536040,536680,537320,537960,538600,539240,539880,540520,541160,541800,542440,543080,543720,544360,545000,545640,546280,546920,547560,548200,548840,549480,550120,550760,551400,552040,552680,553320,553960,554600,555240,555880,556520,557160,557800,558440,559080,559720,560360,561000,561640,562280,562920,563560,564200,564840,565480,566120,566760,567400,568040,568680,569320,569960,570600,571240,571880,572520,573160,573800,574440,575080,575720,576360,577000,577640,578280,578920,579560,580200,580840,581480,582120,582760,583400,584040,584680,585320,585960,586600,587240,587880,588520,589160,589800,590440,591080,591720,592360,593000,593640,594280,594920,595560,596200,596840,597480,598120,598760,599400,600040,600680,601320,601960,602600,603240,603880,604520,605160,605800,606440,607080,607720,608360,609000,609640,610280,610920,611560,612200,612840,613480,614120,614760,615400,616040,616680,617320,617960,618600,619240,619880,620520,621160,621800,622440,623080,623720,624360,625000,625640,626280,626920,627560,628200,628840,629480,630120,630760,631400,632040,632680,633320,633960,634600,635240,635880,636520,637160,637800,638440,639080,639720,640360,641000,641640,642280,642920,643560,644200,644840,645480,646120,646760,647400,648040,648680,649320,649960,650600,651240,651880,652520,653160,653800,654440,655080,655720); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_1m_pkey on t_range_1m + Index Cond: (id = ANY ('{1000,1640,2280,2920,3560,4200,4840,5480,6120,6760,7400,8040,8680,9320,9960,10600,11240,11880,12520,13160,13800,14440,15080,15720,16360,17000,17640,18280,18920,19560,20200,20840,21480,22120,22760,23400,24040,24680,25320,25960,26600,27240,27880,28520,29160,29800,30440,31080,31720,32360,33000,33640,34280,34920,35560,36200,36840,37480,38120,38760,39400,40040,40680,41320,41960,42600,43240,43880,44520,45160,45800,46440,47080,47720,48360,49000,49640,50280,50920,51560,52200,52840,53480,54120,54760,55400,56040,56680,57320,57960,58600,59240,59880,60520,61160,61800,62440,63080,63720,64360,65000,65640,66280,66920,67560,68200,68840,69480,70120,70760,71400,72040,72680,73320,73960,74600,75240,75880,76520,77160,77800,78440,79080,79720,80360,81000,81640,82280,82920,83560,84200,84840,85480,86120,86760,87400,88040,88680,89320,89960,90600,91240,91880,92520,93160,93800,94440,95080,95720,96360,97000,97640,98280,98920,99560,100200,100840,101480,102120,102760,103400,104040,104680,105320,105960,106600,107240,107880,108520,109160,109800,110440,111080,111720,112360,113000,113640,114280,114920,115560,116200,116840,117480,118120,118760,119400,120040,120680,121320,121960,122600,123240,123880,124520,125160,125800,126440,127080,127720,128360,129000,129640,130280,130920,131560,132200,132840,133480,134120,134760,135400,136040,136680,137320,137960,138600,139240,139880,140520,141160,141800,142440,143080,143720,144360,145000,145640,146280,146920,147560,148200,148840,149480,150120,150760,151400,152040,152680,153320,153960,154600,155240,155880,156520,157160,157800,158440,159080,159720,160360,161000,161640,162280,162920,163560,164200,164840,165480,166120,166760,167400,168040,168680,169320,169960,170600,171240,171880,172520,173160,173800,174440,175080,175720,176360,177000,177640,178280,178920,179560,180200,180840,181480,182120,182760,183400,184040,184680,185320,185960,186600,187240,187880,188520,189160,189800,190440,191080,191720,192360,193000,193640,194280,194920,195560,196200,196840,197480,198120,198760,199400,200040,200680,201320,201960,202600,203240,203880,204520,205160,205800,206440,207080,207720,208360,209000,209640,210280,210920,211560,212200,212840,213480,214120,214760,215400,216040,216680,217320,217960,218600,219240,219880,220520,221160,221800,222440,223080,223720,224360,225000,225640,226280,226920,227560,228200,228840,229480,230120,230760,231400,232040,232680,233320,233960,234600,235240,235880,236520,237160,237800,238440,239080,239720,240360,241000,241640,242280,242920,243560,244200,244840,245480,246120,246760,247400,248040,248680,249320,249960,250600,251240,251880,252520,253160,253800,254440,255080,255720,256360,257000,257640,258280,258920,259560,260200,260840,261480,262120,262760,263400,264040,264680,265320,265960,266600,267240,267880,268520,269160,269800,270440,271080,271720,272360,273000,273640,274280,274920,275560,276200,276840,277480,278120,278760,279400,280040,280680,281320,281960,282600,283240,283880,284520,285160,285800,286440,287080,287720,288360,289000,289640,290280,290920,291560,292200,292840,293480,294120,294760,295400,296040,296680,297320,297960,298600,299240,299880,300520,301160,301800,302440,303080,303720,304360,305000,305640,306280,306920,307560,308200,308840,309480,310120,310760,311400,312040,312680,313320,313960,314600,315240,315880,316520,317160,317800,318440,319080,319720,320360,321000,321640,322280,322920,323560,324200,324840,325480,326120,326760,327400,328040,328680,329320,329960,330600,331240,331880,332520,333160,333800,334440,335080,335720,336360,337000,337640,338280,338920,339560,340200,340840,341480,342120,342760,343400,344040,344680,345320,345960,346600,347240,347880,348520,349160,349800,350440,351080,351720,352360,353000,353640,354280,354920,355560,356200,356840,357480,358120,358760,359400,360040,360680,361320,361960,362600,363240,363880,364520,365160,365800,366440,367080,367720,368360,369000,369640,370280,370920,371560,372200,372840,373480,374120,374760,375400,376040,376680,377320,377960,378600,379240,379880,380520,381160,381800,382440,383080,383720,384360,385000,385640,386280,386920,387560,388200,388840,389480,390120,390760,391400,392040,392680,393320,393960,394600,395240,395880,396520,397160,397800,398440,399080,399720,400360,401000,401640,402280,402920,403560,404200,404840,405480,406120,406760,407400,408040,408680,409320,409960,410600,411240,411880,412520,413160,413800,414440,415080,415720,416360,417000,417640,418280,418920,419560,420200,420840,421480,422120,422760,423400,424040,424680,425320,425960,426600,427240,427880,428520,429160,429800,430440,431080,431720,432360,433000,433640,434280,434920,435560,436200,436840,437480,438120,438760,439400,440040,440680,441320,441960,442600,443240,443880,444520,445160,445800,446440,447080,447720,448360,449000,449640,450280,450920,451560,452200,452840,453480,454120,454760,455400,456040,456680,457320,457960,458600,459240,459880,460520,461160,461800,462440,463080,463720,464360,465000,465640,466280,466920,467560,468200,468840,469480,470120,470760,471400,472040,472680,473320,473960,474600,475240,475880,476520,477160,477800,478440,479080,479720,480360,481000,481640,482280,482920,483560,484200,484840,485480,486120,486760,487400,488040,488680,489320,489960,490600,491240,491880,492520,493160,493800,494440,495080,495720,496360,497000,497640,498280,498920,499560,500200,500840,501480,502120,502760,503400,504040,504680,505320,505960,506600,507240,507880,508520,509160,509800,510440,511080,511720,512360,513000,513640,514280,514920,515560,516200,516840,517480,518120,518760,519400,520040,520680,521320,521960,522600,523240,523880,524520,525160,525800,526440,527080,527720,528360,529000,529640,530280,530920,531560,532200,532840,533480,534120,534760,535400,536040,536680,537320,537960,538600,539240,539880,540520,541160,541800,542440,543080,543720,544360,545000,545640,546280,546920,547560,548200,548840,549480,550120,550760,551400,552040,552680,553320,553960,554600,555240,555880,556520,557160,557800,558440,559080,559720,560360,561000,561640,562280,562920,563560,564200,564840,565480,566120,566760,567400,568040,568680,569320,569960,570600,571240,571880,572520,573160,573800,574440,575080,575720,576360,577000,577640,578280,578920,579560,580200,580840,581480,582120,582760,583400,584040,584680,585320,585960,586600,587240,587880,588520,589160,589800,590440,591080,591720,592360,593000,593640,594280,594920,595560,596200,596840,597480,598120,598760,599400,600040,600680,601320,601960,602600,603240,603880,604520,605160,605800,606440,607080,607720,608360,609000,609640,610280,610920,611560,612200,612840,613480,614120,614760,615400,616040,616680,617320,617960,618600,619240,619880,620520,621160,621800,622440,623080,623720,624360,625000,625640,626280,626920,627560,628200,628840,629480,630120,630760,631400,632040,632680,633320,633960,634600,635240,635880,636520,637160,637800,638440,639080,639720,640360,641000,641640,642280,642920,643560,644200,644840,645480,646120,646760,647400,648040,648680,649320,649960,650600,651240,651880,652520,653160,653800,654440,655080,655720}'::integer[])) +(2 rows) + +-- Query Hash: 409a0e3ed7a8e7b2104cae43159a3666 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1320,1640,1960,2280,2600,2920,3240,3560,3880,4200,4520,4840,5160,5480,5800,6120,6440,6760,7080,7400,7720,8040,8360,8680,9000,9320,9640,9960,10280,10600,10920,11240,11560,11880,12200,12520,12840,13160,13480,13800,14120,14440,14760,15080,15400,15720,16040,16360,16680,17000,17320,17640,17960,18280,18600,18920,19240,19560,19880,20200,20520,20840,21160,21480,21800,22120,22440,22760,23080,23400,23720,24040,24360,24680,25000,25320,25640,25960,26280,26600,26920,27240,27560,27880,28200,28520,28840,29160,29480,29800,30120,30440,30760,31080,31400,31720,32040,32360,32680,33000,33320,33640,33960,34280,34600,34920,35240,35560,35880,36200,36520,36840,37160,37480,37800,38120,38440,38760,39080,39400,39720,40040,40360,40680,41000,41320,41640,41960,42280,42600,42920,43240,43560,43880,44200,44520,44840,45160,45480,45800,46120,46440,46760,47080,47400,47720,48040,48360,48680,49000,49320,49640,49960,50280,50600,50920,51240,51560,51880,52200,52520,52840,53160,53480,53800,54120,54440,54760,55080,55400,55720,56040,56360,56680,57000,57320,57640,57960,58280,58600,58920,59240,59560,59880,60200,60520,60840,61160,61480,61800,62120,62440,62760,63080,63400,63720,64040,64360,64680,65000,65320,65640,65960,66280,66600,66920,67240,67560,67880,68200,68520,68840,69160,69480,69800,70120,70440,70760,71080,71400,71720,72040,72360,72680,73000,73320,73640,73960,74280,74600,74920,75240,75560,75880,76200,76520,76840,77160,77480,77800,78120,78440,78760,79080,79400,79720,80040,80360,80680,81000,81320,81640,81960,82280,82600,82920,83240,83560,83880,84200,84520,84840,85160,85480,85800,86120,86440,86760,87080,87400,87720,88040,88360,88680,89000,89320,89640,89960,90280,90600,90920,91240,91560,91880,92200,92520,92840,93160,93480,93800,94120,94440,94760,95080,95400,95720,96040,96360,96680,97000,97320,97640,97960,98280,98600,98920,99240,99560,99880,100200,100520,100840,101160,101480,101800,102120,102440,102760,103080,103400,103720,104040,104360,104680,105000,105320,105640,105960,106280,106600,106920,107240,107560,107880,108200,108520,108840,109160,109480,109800,110120,110440,110760,111080,111400,111720,112040,112360,112680,113000,113320,113640,113960,114280,114600,114920,115240,115560,115880,116200,116520,116840,117160,117480,117800,118120,118440,118760,119080,119400,119720,120040,120360,120680,121000,121320,121640,121960,122280,122600,122920,123240,123560,123880,124200,124520,124840,125160,125480,125800,126120,126440,126760,127080,127400,127720,128040,128360,128680,129000,129320,129640,129960,130280,130600,130920,131240,131560,131880,132200,132520,132840,133160,133480,133800,134120,134440,134760,135080,135400,135720,136040,136360,136680,137000,137320,137640,137960,138280,138600,138920,139240,139560,139880,140200,140520,140840,141160,141480,141800,142120,142440,142760,143080,143400,143720,144040,144360,144680,145000,145320,145640,145960,146280,146600,146920,147240,147560,147880,148200,148520,148840,149160,149480,149800,150120,150440,150760,151080,151400,151720,152040,152360,152680,153000,153320,153640,153960,154280,154600,154920,155240,155560,155880,156200,156520,156840,157160,157480,157800,158120,158440,158760,159080,159400,159720,160040,160360,160680,161000,161320,161640,161960,162280,162600,162920,163240,163560,163880,164200,164520,164840,165160,165480,165800,166120,166440,166760,167080,167400,167720,168040,168360,168680,169000,169320,169640,169960,170280,170600,170920,171240,171560,171880,172200,172520,172840,173160,173480,173800,174120,174440,174760,175080,175400,175720,176040,176360,176680,177000,177320,177640,177960,178280,178600,178920,179240,179560,179880,180200,180520,180840,181160,181480,181800,182120,182440,182760,183080,183400,183720,184040,184360,184680,185000,185320,185640,185960,186280,186600,186920,187240,187560,187880,188200,188520,188840,189160,189480,189800,190120,190440,190760,191080,191400,191720,192040,192360,192680,193000,193320,193640,193960,194280,194600,194920,195240,195560,195880,196200,196520,196840,197160,197480,197800,198120,198440,198760,199080,199400,199720,200040,200360,200680,201000,201320,201640,201960,202280,202600,202920,203240,203560,203880,204200,204520,204840,205160,205480,205800,206120,206440,206760,207080,207400,207720,208040,208360,208680,209000,209320,209640,209960,210280,210600,210920,211240,211560,211880,212200,212520,212840,213160,213480,213800,214120,214440,214760,215080,215400,215720,216040,216360,216680,217000,217320,217640,217960,218280,218600,218920,219240,219560,219880,220200,220520,220840,221160,221480,221800,222120,222440,222760,223080,223400,223720,224040,224360,224680,225000,225320,225640,225960,226280,226600,226920,227240,227560,227880,228200,228520,228840,229160,229480,229800,230120,230440,230760,231080,231400,231720,232040,232360,232680,233000,233320,233640,233960,234280,234600,234920,235240,235560,235880,236200,236520,236840,237160,237480,237800,238120,238440,238760,239080,239400,239720,240040,240360,240680,241000,241320,241640,241960,242280,242600,242920,243240,243560,243880,244200,244520,244840,245160,245480,245800,246120,246440,246760,247080,247400,247720,248040,248360,248680,249000,249320,249640,249960,250280,250600,250920,251240,251560,251880,252200,252520,252840,253160,253480,253800,254120,254440,254760,255080,255400,255720,256040,256360,256680,257000,257320,257640,257960,258280,258600,258920,259240,259560,259880,260200,260520,260840,261160,261480,261800,262120,262440,262760,263080,263400,263720,264040,264360,264680,265000,265320,265640,265960,266280,266600,266920,267240,267560,267880,268200,268520,268840,269160,269480,269800,270120,270440,270760,271080,271400,271720,272040,272360,272680,273000,273320,273640,273960,274280,274600,274920,275240,275560,275880,276200,276520,276840,277160,277480,277800,278120,278440,278760,279080,279400,279720,280040,280360,280680,281000,281320,281640,281960,282280,282600,282920,283240,283560,283880,284200,284520,284840,285160,285480,285800,286120,286440,286760,287080,287400,287720,288040,288360,288680,289000,289320,289640,289960,290280,290600,290920,291240,291560,291880,292200,292520,292840,293160,293480,293800,294120,294440,294760,295080,295400,295720,296040,296360,296680,297000,297320,297640,297960,298280,298600,298920,299240,299560,299880,300200,300520,300840,301160,301480,301800,302120,302440,302760,303080,303400,303720,304040,304360,304680,305000,305320,305640,305960,306280,306600,306920,307240,307560,307880,308200,308520,308840,309160,309480,309800,310120,310440,310760,311080,311400,311720,312040,312360,312680,313000,313320,313640,313960,314280,314600,314920,315240,315560,315880,316200,316520,316840,317160,317480,317800,318120,318440,318760,319080,319400,319720,320040,320360,320680,321000,321320,321640,321960,322280,322600,322920,323240,323560,323880,324200,324520,324840,325160,325480,325800,326120,326440,326760,327080,327400,327720,328040,328360,328680,329000,329320,329640,329960,330280,330600,330920,331240,331560,331880,332200,332520,332840,333160,333480,333800,334120,334440,334760,335080,335400,335720,336040,336360,336680,337000,337320,337640,337960,338280,338600,338920,339240,339560,339880,340200,340520,340840,341160,341480,341800,342120,342440,342760,343080,343400,343720,344040,344360,344680,345000,345320,345640,345960,346280,346600,346920,347240,347560,347880,348200,348520,348840,349160,349480,349800,350120,350440,350760,351080,351400,351720,352040,352360,352680,353000,353320,353640,353960,354280,354600,354920,355240,355560,355880,356200,356520,356840,357160,357480,357800,358120,358440,358760,359080,359400,359720,360040,360360,360680,361000,361320,361640,361960,362280,362600,362920,363240,363560,363880,364200,364520,364840,365160,365480,365800,366120,366440,366760,367080,367400,367720,368040,368360,368680,369000,369320,369640,369960,370280,370600,370920,371240,371560,371880,372200,372520,372840,373160,373480,373800,374120,374440,374760,375080,375400,375720,376040,376360,376680,377000,377320,377640,377960,378280,378600,378920,379240,379560,379880,380200,380520,380840,381160,381480,381800,382120,382440,382760,383080,383400,383720,384040,384360,384680,385000,385320,385640,385960,386280,386600,386920,387240,387560,387880,388200,388520,388840,389160,389480,389800,390120,390440,390760,391080,391400,391720,392040,392360,392680,393000,393320,393640,393960,394280,394600,394920,395240,395560,395880,396200,396520,396840,397160,397480,397800,398120,398440,398760,399080,399400,399720,400040,400360,400680,401000,401320,401640,401960,402280,402600,402920,403240,403560,403880,404200,404520,404840,405160,405480,405800,406120,406440,406760,407080,407400,407720,408040,408360,408680,409000,409320,409640,409960,410280,410600,410920,411240,411560,411880,412200,412520,412840,413160,413480,413800,414120,414440,414760,415080,415400,415720,416040,416360,416680,417000,417320,417640,417960,418280,418600,418920,419240,419560,419880,420200,420520,420840,421160,421480,421800,422120,422440,422760,423080,423400,423720,424040,424360,424680,425000,425320,425640,425960,426280,426600,426920,427240,427560,427880,428200,428520,428840,429160,429480,429800,430120,430440,430760,431080,431400,431720,432040,432360,432680,433000,433320,433640,433960,434280,434600,434920,435240,435560,435880,436200,436520,436840,437160,437480,437800,438120,438440,438760,439080,439400,439720,440040,440360,440680,441000,441320,441640,441960,442280,442600,442920,443240,443560,443880,444200,444520,444840,445160,445480,445800,446120,446440,446760,447080,447400,447720,448040,448360,448680,449000,449320,449640,449960,450280,450600,450920,451240,451560,451880,452200,452520,452840,453160,453480,453800,454120,454440,454760,455080,455400,455720,456040,456360,456680,457000,457320,457640,457960,458280,458600,458920,459240,459560,459880,460200,460520,460840,461160,461480,461800,462120,462440,462760,463080,463400,463720,464040,464360,464680,465000,465320,465640,465960,466280,466600,466920,467240,467560,467880,468200,468520,468840,469160,469480,469800,470120,470440,470760,471080,471400,471720,472040,472360,472680,473000,473320,473640,473960,474280,474600,474920,475240,475560,475880,476200,476520,476840,477160,477480,477800,478120,478440,478760,479080,479400,479720,480040,480360,480680,481000,481320,481640,481960,482280,482600,482920,483240,483560,483880,484200,484520,484840,485160,485480,485800,486120,486440,486760,487080,487400,487720,488040,488360,488680,489000,489320,489640,489960,490280,490600,490920,491240,491560,491880,492200,492520,492840,493160,493480,493800,494120,494440,494760,495080,495400,495720,496040,496360,496680,497000,497320,497640,497960,498280,498600,498920,499240,499560,499880,500200,500520,500840,501160,501480,501800,502120,502440,502760,503080,503400,503720,504040,504360,504680,505000,505320,505640,505960,506280,506600,506920,507240,507560,507880,508200,508520,508840,509160,509480,509800,510120,510440,510760,511080,511400,511720,512040,512360,512680,513000,513320,513640,513960,514280,514600,514920,515240,515560,515880,516200,516520,516840,517160,517480,517800,518120,518440,518760,519080,519400,519720,520040,520360,520680,521000,521320,521640,521960,522280,522600,522920,523240,523560,523880,524200,524520,524840,525160,525480,525800,526120,526440,526760,527080,527400,527720,528040,528360,528680,529000,529320,529640,529960,530280,530600,530920,531240,531560,531880,532200,532520,532840,533160,533480,533800,534120,534440,534760,535080,535400,535720,536040,536360,536680,537000,537320,537640,537960,538280,538600,538920,539240,539560,539880,540200,540520,540840,541160,541480,541800,542120,542440,542760,543080,543400,543720,544040,544360,544680,545000,545320,545640,545960,546280,546600,546920,547240,547560,547880,548200,548520,548840,549160,549480,549800,550120,550440,550760,551080,551400,551720,552040,552360,552680,553000,553320,553640,553960,554280,554600,554920,555240,555560,555880,556200,556520,556840,557160,557480,557800,558120,558440,558760,559080,559400,559720,560040,560360,560680,561000,561320,561640,561960,562280,562600,562920,563240,563560,563880,564200,564520,564840,565160,565480,565800,566120,566440,566760,567080,567400,567720,568040,568360,568680,569000,569320,569640,569960,570280,570600,570920,571240,571560,571880,572200,572520,572840,573160,573480,573800,574120,574440,574760,575080,575400,575720,576040,576360,576680,577000,577320,577640,577960,578280,578600,578920,579240,579560,579880,580200,580520,580840,581160,581480,581800,582120,582440,582760,583080,583400,583720,584040,584360,584680,585000,585320,585640,585960,586280,586600,586920,587240,587560,587880,588200,588520,588840,589160,589480,589800,590120,590440,590760,591080,591400,591720,592040,592360,592680,593000,593320,593640,593960,594280,594600,594920,595240,595560,595880,596200,596520,596840,597160,597480,597800,598120,598440,598760,599080,599400,599720,600040,600360,600680,601000,601320,601640,601960,602280,602600,602920,603240,603560,603880,604200,604520,604840,605160,605480,605800,606120,606440,606760,607080,607400,607720,608040,608360,608680,609000,609320,609640,609960,610280,610600,610920,611240,611560,611880,612200,612520,612840,613160,613480,613800,614120,614440,614760,615080,615400,615720,616040,616360,616680,617000,617320,617640,617960,618280,618600,618920,619240,619560,619880,620200,620520,620840,621160,621480,621800,622120,622440,622760,623080,623400,623720,624040,624360,624680,625000,625320,625640,625960,626280,626600,626920,627240,627560,627880,628200,628520,628840,629160,629480,629800,630120,630440,630760,631080,631400,631720,632040,632360,632680,633000,633320,633640,633960,634280,634600,634920,635240,635560,635880,636200,636520,636840,637160,637480,637800,638120,638440,638760,639080,639400,639720,640040,640360,640680,641000,641320,641640,641960,642280,642600,642920,643240,643560,643880,644200,644520,644840,645160,645480,645800,646120,646440,646760,647080,647400,647720,648040,648360,648680,649000,649320,649640,649960,650280,650600,650920,651240,651560,651880,652200,652520,652840,653160,653480,653800,654120,654440,654760,655080,655400,655720,656040); + QUERY PLAN +------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ + Index Scan using t_range_1m_pkey on t_range_1m + Index Cond: (id = ANY ('{1000,1320,1640,1960,2280,2600,2920,3240,3560,3880,4200,4520,4840,5160,5480,5800,6120,6440,6760,7080,7400,7720,8040,8360,8680,9000,9320,9640,9960,10280,10600,10920,11240,11560,11880,12200,12520,12840,13160,13480,13800,14120,14440,14760,15080,15400,15720,16040,16360,16680,17000,17320,17640,17960,18280,18600,18920,19240,19560,19880,20200,20520,20840,21160,21480,21800,22120,22440,22760,23080,23400,23720,24040,24360,24680,25000,25320,25640,25960,26280,26600,26920,27240,27560,27880,28200,28520,28840,29160,29480,29800,30120,30440,30760,31080,31400,31720,32040,32360,32680,33000,33320,33640,33960,34280,34600,34920,35240,35560,35880,36200,36520,36840,37160,37480,37800,38120,38440,38760,39080,39400,39720,40040,40360,40680,41000,41320,41640,41960,42280,42600,42920,43240,43560,43880,44200,44520,44840,45160,45480,45800,46120,46440,46760,47080,47400,47720,48040,48360,48680,49000,49320,49640,49960,50280,50600,50920,51240,51560,51880,52200,52520,52840,53160,53480,53800,54120,54440,54760,55080,55400,55720,56040,56360,56680,57000,57320,57640,57960,58280,58600,58920,59240,59560,59880,60200,60520,60840,61160,61480,61800,62120,62440,62760,63080,63400,63720,64040,64360,64680,65000,65320,65640,65960,66280,66600,66920,67240,67560,67880,68200,68520,68840,69160,69480,69800,70120,70440,70760,71080,71400,71720,72040,72360,72680,73000,73320,73640,73960,74280,74600,74920,75240,75560,75880,76200,76520,76840,77160,77480,77800,78120,78440,78760,79080,79400,79720,80040,80360,80680,81000,81320,81640,81960,82280,82600,82920,83240,83560,83880,84200,84520,84840,85160,85480,85800,86120,86440,86760,87080,87400,87720,88040,88360,88680,89000,89320,89640,89960,90280,90600,90920,91240,91560,91880,92200,92520,92840,93160,93480,93800,94120,94440,94760,95080,95400,95720,96040,96360,96680,97000,97320,97640,97960,98280,98600,98920,99240,99560,99880,100200,100520,100840,101160,101480,101800,102120,102440,102760,103080,103400,103720,104040,104360,104680,105000,105320,105640,105960,106280,106600,106920,107240,107560,107880,108200,108520,108840,109160,109480,109800,110120,110440,110760,111080,111400,111720,112040,112360,112680,113000,113320,113640,113960,114280,114600,114920,115240,115560,115880,116200,116520,116840,117160,117480,117800,118120,118440,118760,119080,119400,119720,120040,120360,120680,121000,121320,121640,121960,122280,122600,122920,123240,123560,123880,124200,124520,124840,125160,125480,125800,126120,126440,126760,127080,127400,127720,128040,128360,128680,129000,129320,129640,129960,130280,130600,130920,131240,131560,131880,132200,132520,132840,133160,133480,133800,134120,134440,134760,135080,135400,135720,136040,136360,136680,137000,137320,137640,137960,138280,138600,138920,139240,139560,139880,140200,140520,140840,141160,141480,141800,142120,142440,142760,143080,143400,143720,144040,144360,144680,145000,145320,145640,145960,146280,146600,146920,147240,147560,147880,148200,148520,148840,149160,149480,149800,150120,150440,150760,151080,151400,151720,152040,152360,152680,153000,153320,153640,153960,154280,154600,154920,155240,155560,155880,156200,156520,156840,157160,157480,157800,158120,158440,158760,159080,159400,159720,160040,160360,160680,161000,161320,161640,161960,162280,162600,162920,163240,163560,163880,164200,164520,164840,165160,165480,165800,166120,166440,166760,167080,167400,167720,168040,168360,168680,169000,169320,169640,169960,170280,170600,170920,171240,171560,171880,172200,172520,172840,173160,173480,173800,174120,174440,174760,175080,175400,175720,176040,176360,176680,177000,177320,177640,177960,178280,178600,178920,179240,179560,179880,180200,180520,180840,181160,181480,181800,182120,182440,182760,183080,183400,183720,184040,184360,184680,185000,185320,185640,185960,186280,186600,186920,187240,187560,187880,188200,188520,188840,189160,189480,189800,190120,190440,190760,191080,191400,191720,192040,192360,192680,193000,193320,193640,193960,194280,194600,194920,195240,195560,195880,196200,196520,196840,197160,197480,197800,198120,198440,198760,199080,199400,199720,200040,200360,200680,201000,201320,201640,201960,202280,202600,202920,203240,203560,203880,204200,204520,204840,205160,205480,205800,206120,206440,206760,207080,207400,207720,208040,208360,208680,209000,209320,209640,209960,210280,210600,210920,211240,211560,211880,212200,212520,212840,213160,213480,213800,214120,214440,214760,215080,215400,215720,216040,216360,216680,217000,217320,217640,217960,218280,218600,218920,219240,219560,219880,220200,220520,220840,221160,221480,221800,222120,222440,222760,223080,223400,223720,224040,224360,224680,225000,225320,225640,225960,226280,226600,226920,227240,227560,227880,228200,228520,228840,229160,229480,229800,230120,230440,230760,231080,231400,231720,232040,232360,232680,233000,233320,233640,233960,234280,234600,234920,235240,235560,235880,236200,236520,236840,237160,237480,237800,238120,238440,238760,239080,239400,239720,240040,240360,240680,241000,241320,241640,241960,242280,242600,242920,243240,243560,243880,244200,244520,244840,245160,245480,245800,246120,246440,246760,247080,247400,247720,248040,248360,248680,249000,249320,249640,249960,250280,250600,250920,251240,251560,251880,252200,252520,252840,253160,253480,253800,254120,254440,254760,255080,255400,255720,256040,256360,256680,257000,257320,257640,257960,258280,258600,258920,259240,259560,259880,260200,260520,260840,261160,261480,261800,262120,262440,262760,263080,263400,263720,264040,264360,264680,265000,265320,265640,265960,266280,266600,266920,267240,267560,267880,268200,268520,268840,269160,269480,269800,270120,270440,270760,271080,271400,271720,272040,272360,272680,273000,273320,273640,273960,274280,274600,274920,275240,275560,275880,276200,276520,276840,277160,277480,277800,278120,278440,278760,279080,279400,279720,280040,280360,280680,281000,281320,281640,281960,282280,282600,282920,283240,283560,283880,284200,284520,284840,285160,285480,285800,286120,286440,286760,287080,287400,287720,288040,288360,288680,289000,289320,289640,289960,290280,290600,290920,291240,291560,291880,292200,292520,292840,293160,293480,293800,294120,294440,294760,295080,295400,295720,296040,296360,296680,297000,297320,297640,297960,298280,298600,298920,299240,299560,299880,300200,300520,300840,301160,301480,301800,302120,302440,302760,303080,303400,303720,304040,304360,304680,305000,305320,305640,305960,306280,306600,306920,307240,307560,307880,308200,308520,308840,309160,309480,309800,310120,310440,310760,311080,311400,311720,312040,312360,312680,313000,313320,313640,313960,314280,314600,314920,315240,315560,315880,316200,316520,316840,317160,317480,317800,318120,318440,318760,319080,319400,319720,320040,320360,320680,321000,321320,321640,321960,322280,322600,322920,323240,323560,323880,324200,324520,324840,325160,325480,325800,326120,326440,326760,327080,327400,327720,328040,328360,328680,329000,329320,329640,329960,330280,330600,330920,331240,331560,331880,332200,332520,332840,333160,333480,333800,334120,334440,334760,335080,335400,335720,336040,336360,336680,337000,337320,337640,337960,338280,338600,338920,339240,339560,339880,340200,340520,340840,341160,341480,341800,342120,342440,342760,343080,343400,343720,344040,344360,344680,345000,345320,345640,345960,346280,346600,346920,347240,347560,347880,348200,348520,348840,349160,349480,349800,350120,350440,350760,351080,351400,351720,352040,352360,352680,353000,353320,353640,353960,354280,354600,354920,355240,355560,355880,356200,356520,356840,357160,357480,357800,358120,358440,358760,359080,359400,359720,360040,360360,360680,361000,361320,361640,361960,362280,362600,362920,363240,363560,363880,364200,364520,364840,365160,365480,365800,366120,366440,366760,367080,367400,367720,368040,368360,368680,369000,369320,369640,369960,370280,370600,370920,371240,371560,371880,372200,372520,372840,373160,373480,373800,374120,374440,374760,375080,375400,375720,376040,376360,376680,377000,377320,377640,377960,378280,378600,378920,379240,379560,379880,380200,380520,380840,381160,381480,381800,382120,382440,382760,383080,383400,383720,384040,384360,384680,385000,385320,385640,385960,386280,386600,386920,387240,387560,387880,388200,388520,388840,389160,389480,389800,390120,390440,390760,391080,391400,391720,392040,392360,392680,393000,393320,393640,393960,394280,394600,394920,395240,395560,395880,396200,396520,396840,397160,397480,397800,398120,398440,398760,399080,399400,399720,400040,400360,400680,401000,401320,401640,401960,402280,402600,402920,403240,403560,403880,404200,404520,404840,405160,405480,405800,406120,406440,406760,407080,407400,407720,408040,408360,408680,409000,409320,409640,409960,410280,410600,410920,411240,411560,411880,412200,412520,412840,413160,413480,413800,414120,414440,414760,415080,415400,415720,416040,416360,416680,417000,417320,417640,417960,418280,418600,418920,419240,419560,419880,420200,420520,420840,421160,421480,421800,422120,422440,422760,423080,423400,423720,424040,424360,424680,425000,425320,425640,425960,426280,426600,426920,427240,427560,427880,428200,428520,428840,429160,429480,429800,430120,430440,430760,431080,431400,431720,432040,432360,432680,433000,433320,433640,433960,434280,434600,434920,435240,435560,435880,436200,436520,436840,437160,437480,437800,438120,438440,438760,439080,439400,439720,440040,440360,440680,441000,441320,441640,441960,442280,442600,442920,443240,443560,443880,444200,444520,444840,445160,445480,445800,446120,446440,446760,447080,447400,447720,448040,448360,448680,449000,449320,449640,449960,450280,450600,450920,451240,451560,451880,452200,452520,452840,453160,453480,453800,454120,454440,454760,455080,455400,455720,456040,456360,456680,457000,457320,457640,457960,458280,458600,458920,459240,459560,459880,460200,460520,460840,461160,461480,461800,462120,462440,462760,463080,463400,463720,464040,464360,464680,465000,465320,465640,465960,466280,466600,466920,467240,467560,467880,468200,468520,468840,469160,469480,469800,470120,470440,470760,471080,471400,471720,472040,472360,472680,473000,473320,473640,473960,474280,474600,474920,475240,475560,475880,476200,476520,476840,477160,477480,477800,478120,478440,478760,479080,479400,479720,480040,480360,480680,481000,481320,481640,481960,482280,482600,482920,483240,483560,483880,484200,484520,484840,485160,485480,485800,486120,486440,486760,487080,487400,487720,488040,488360,488680,489000,489320,489640,489960,490280,490600,490920,491240,491560,491880,492200,492520,492840,493160,493480,493800,494120,494440,494760,495080,495400,495720,496040,496360,496680,497000,497320,497640,497960,498280,498600,498920,499240,499560,499880,500200,500520,500840,501160,501480,501800,502120,502440,502760,503080,503400,503720,504040,504360,504680,505000,505320,505640,505960,506280,506600,506920,507240,507560,507880,508200,508520,508840,509160,509480,509800,510120,510440,510760,511080,511400,511720,512040,512360,512680,513000,513320,513640,513960,514280,514600,514920,515240,515560,515880,516200,516520,516840,517160,517480,517800,518120,518440,518760,519080,519400,519720,520040,520360,520680,521000,521320,521640,521960,522280,522600,522920,523240,523560,523880,524200,524520,524840,525160,525480,525800,526120,526440,526760,527080,527400,527720,528040,528360,528680,529000,529320,529640,529960,530280,530600,530920,531240,531560,531880,532200,532520,532840,533160,533480,533800,534120,534440,534760,535080,535400,535720,536040,536360,536680,537000,537320,537640,537960,538280,538600,538920,539240,539560,539880,540200,540520,540840,541160,541480,541800,542120,542440,542760,543080,543400,543720,544040,544360,544680,545000,545320,545640,545960,546280,546600,546920,547240,547560,547880,548200,548520,548840,549160,549480,549800,550120,550440,550760,551080,551400,551720,552040,552360,552680,553000,553320,553640,553960,554280,554600,554920,555240,555560,555880,556200,556520,556840,557160,557480,557800,558120,558440,558760,559080,559400,559720,560040,560360,560680,561000,561320,561640,561960,562280,562600,562920,563240,563560,563880,564200,564520,564840,565160,565480,565800,566120,566440,566760,567080,567400,567720,568040,568360,568680,569000,569320,569640,569960,570280,570600,570920,571240,571560,571880,572200,572520,572840,573160,573480,573800,574120,574440,574760,575080,575400,575720,576040,576360,576680,577000,577320,577640,577960,578280,578600,578920,579240,579560,579880,580200,580520,580840,581160,581480,581800,582120,582440,582760,583080,583400,583720,584040,584360,584680,585000,585320,585640,585960,586280,586600,586920,587240,587560,587880,588200,588520,588840,589160,589480,589800,590120,590440,590760,591080,591400,591720,592040,592360,592680,593000,593320,593640,593960,594280,594600,594920,595240,595560,595880,596200,596520,596840,597160,597480,597800,598120,598440,598760,599080,599400,599720,600040,600360,600680,601000,601320,601640,601960,602280,602600,602920,603240,603560,603880,604200,604520,604840,605160,605480,605800,606120,606440,606760,607080,607400,607720,608040,608360,608680,609000,609320,609640,609960,610280,610600,610920,611240,611560,611880,612200,612520,612840,613160,613480,613800,614120,614440,614760,615080,615400,615720,616040,616360,616680,617000,617320,617640,617960,618280,618600,618920,619240,619560,619880,620200,620520,620840,621160,621480,621800,622120,622440,622760,623080,623400,623720,624040,624360,624680,625000,625320,625640,625960,626280,626600,626920,627240,627560,627880,628200,628520,628840,629160,629480,629800,630120,630440,630760,631080,631400,631720,632040,632360,632680,633000,633320,633640,633960,634280,634600,634920,635240,635560,635880,636200,636520,636840,637160,637480,637800,638120,638440,638760,639080,639400,639720,640040,640360,640680,641000,641320,641640,641960,642280,642600,642920,643240,643560,643880,644200,644520,644840,645160,645480,645800,646120,646440,646760,647080,647400,647720,648040,648360,648680,649000,649320,649640,649960,650280,650600,650920,651240,651560,651880,652200,652520,652840,653160,653480,653800,654120,654440,654760,655080,655400,655720,656040}'::integer[])) +(2 rows) + +-- Query Hash: b1ce7d8c906b7a9b11e97d49e8c80ad2 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1160,1320,1480,1640,1800,1960,2120,2280,2440,2600,2760,2920,3080,3240,3400,3560,3720,3880,4040,4200,4360,4520,4680,4840,5000,5160,5320,5480,5640,5800,5960,6120,6280,6440,6600,6760,6920,7080,7240,7400,7560,7720,7880,8040,8200,8360,8520,8680,8840,9000,9160,9320,9480,9640,9800,9960,10120,10280,10440,10600,10760,10920,11080,11240,11400,11560,11720,11880,12040,12200,12360,12520,12680,12840,13000,13160,13320,13480,13640,13800,13960,14120,14280,14440,14600,14760,14920,15080,15240,15400,15560,15720,15880,16040,16200,16360,16520,16680,16840,17000,17160,17320,17480,17640,17800,17960,18120,18280,18440,18600,18760,18920,19080,19240,19400,19560,19720,19880,20040,20200,20360,20520,20680,20840,21000,21160,21320,21480,21640,21800,21960,22120,22280,22440,22600,22760,22920,23080,23240,23400,23560,23720,23880,24040,24200,24360,24520,24680,24840,25000,25160,25320,25480,25640,25800,25960,26120,26280,26440,26600,26760,26920,27080,27240,27400,27560,27720,27880,28040,28200,28360,28520,28680,28840,29000,29160,29320,29480,29640,29800,29960,30120,30280,30440,30600,30760,30920,31080,31240,31400,31560,31720,31880,32040,32200,32360,32520,32680,32840,33000,33160,33320,33480,33640,33800,33960,34120,34280,34440,34600,34760,34920,35080,35240,35400,35560,35720,35880,36040,36200,36360,36520,36680,36840,37000,37160,37320,37480,37640,37800,37960,38120,38280,38440,38600,38760,38920,39080,39240,39400,39560,39720,39880,40040,40200,40360,40520,40680,40840,41000,41160,41320,41480,41640,41800,41960,42120,42280,42440,42600,42760,42920,43080,43240,43400,43560,43720,43880,44040,44200,44360,44520,44680,44840,45000,45160,45320,45480,45640,45800,45960,46120,46280,46440,46600,46760,46920,47080,47240,47400,47560,47720,47880,48040,48200,48360,48520,48680,48840,49000,49160,49320,49480,49640,49800,49960,50120,50280,50440,50600,50760,50920,51080,51240,51400,51560,51720,51880,52040,52200,52360,52520,52680,52840,53000,53160,53320,53480,53640,53800,53960,54120,54280,54440,54600,54760,54920,55080,55240,55400,55560,55720,55880,56040,56200,56360,56520,56680,56840,57000,57160,57320,57480,57640,57800,57960,58120,58280,58440,58600,58760,58920,59080,59240,59400,59560,59720,59880,60040,60200,60360,60520,60680,60840,61000,61160,61320,61480,61640,61800,61960,62120,62280,62440,62600,62760,62920,63080,63240,63400,63560,63720,63880,64040,64200,64360,64520,64680,64840,65000,65160,65320,65480,65640,65800,65960,66120,66280,66440,66600,66760,66920,67080,67240,67400,67560,67720,67880,68040,68200,68360,68520,68680,68840,69000,69160,69320,69480,69640,69800,69960,70120,70280,70440,70600,70760,70920,71080,71240,71400,71560,71720,71880,72040,72200,72360,72520,72680,72840,73000,73160,73320,73480,73640,73800,73960,74120,74280,74440,74600,74760,74920,75080,75240,75400,75560,75720,75880,76040,76200,76360,76520,76680,76840,77000,77160,77320,77480,77640,77800,77960,78120,78280,78440,78600,78760,78920,79080,79240,79400,79560,79720,79880,80040,80200,80360,80520,80680,80840,81000,81160,81320,81480,81640,81800,81960,82120,82280,82440,82600,82760,82920,83080,83240,83400,83560,83720,83880,84040,84200,84360,84520,84680,84840,85000,85160,85320,85480,85640,85800,85960,86120,86280,86440,86600,86760,86920,87080,87240,87400,87560,87720,87880,88040,88200,88360,88520,88680,88840,89000,89160,89320,89480,89640,89800,89960,90120,90280,90440,90600,90760,90920,91080,91240,91400,91560,91720,91880,92040,92200,92360,92520,92680,92840,93000,93160,93320,93480,93640,93800,93960,94120,94280,94440,94600,94760,94920,95080,95240,95400,95560,95720,95880,96040,96200,96360,96520,96680,96840,97000,97160,97320,97480,97640,97800,97960,98120,98280,98440,98600,98760,98920,99080,99240,99400,99560,99720,99880,100040,100200,100360,100520,100680,100840,101000,101160,101320,101480,101640,101800,101960,102120,102280,102440,102600,102760,102920,103080,103240,103400,103560,103720,103880,104040,104200,104360,104520,104680,104840,105000,105160,105320,105480,105640,105800,105960,106120,106280,106440,106600,106760,106920,107080,107240,107400,107560,107720,107880,108040,108200,108360,108520,108680,108840,109000,109160,109320,109480,109640,109800,109960,110120,110280,110440,110600,110760,110920,111080,111240,111400,111560,111720,111880,112040,112200,112360,112520,112680,112840,113000,113160,113320,113480,113640,113800,113960,114120,114280,114440,114600,114760,114920,115080,115240,115400,115560,115720,115880,116040,116200,116360,116520,116680,116840,117000,117160,117320,117480,117640,117800,117960,118120,118280,118440,118600,118760,118920,119080,119240,119400,119560,119720,119880,120040,120200,120360,120520,120680,120840,121000,121160,121320,121480,121640,121800,121960,122120,122280,122440,122600,122760,122920,123080,123240,123400,123560,123720,123880,124040,124200,124360,124520,124680,124840,125000,125160,125320,125480,125640,125800,125960,126120,126280,126440,126600,126760,126920,127080,127240,127400,127560,127720,127880,128040,128200,128360,128520,128680,128840,129000,129160,129320,129480,129640,129800,129960,130120,130280,130440,130600,130760,130920,131080,131240,131400,131560,131720,131880,132040,132200,132360,132520,132680,132840,133000,133160,133320,133480,133640,133800,133960,134120,134280,134440,134600,134760,134920,135080,135240,135400,135560,135720,135880,136040,136200,136360,136520,136680,136840,137000,137160,137320,137480,137640,137800,137960,138120,138280,138440,138600,138760,138920,139080,139240,139400,139560,139720,139880,140040,140200,140360,140520,140680,140840,141000,141160,141320,141480,141640,141800,141960,142120,142280,142440,142600,142760,142920,143080,143240,143400,143560,143720,143880,144040,144200,144360,144520,144680,144840,145000,145160,145320,145480,145640,145800,145960,146120,146280,146440,146600,146760,146920,147080,147240,147400,147560,147720,147880,148040,148200,148360,148520,148680,148840,149000,149160,149320,149480,149640,149800,149960,150120,150280,150440,150600,150760,150920,151080,151240,151400,151560,151720,151880,152040,152200,152360,152520,152680,152840,153000,153160,153320,153480,153640,153800,153960,154120,154280,154440,154600,154760,154920,155080,155240,155400,155560,155720,155880,156040,156200,156360,156520,156680,156840,157000,157160,157320,157480,157640,157800,157960,158120,158280,158440,158600,158760,158920,159080,159240,159400,159560,159720,159880,160040,160200,160360,160520,160680,160840,161000,161160,161320,161480,161640,161800,161960,162120,162280,162440,162600,162760,162920,163080,163240,163400,163560,163720,163880,164040,164200,164360,164520,164680,164840,165000,165160,165320,165480,165640,165800,165960,166120,166280,166440,166600,166760,166920,167080,167240,167400,167560,167720,167880,168040,168200,168360,168520,168680,168840,169000,169160,169320,169480,169640,169800,169960,170120,170280,170440,170600,170760,170920,171080,171240,171400,171560,171720,171880,172040,172200,172360,172520,172680,172840,173000,173160,173320,173480,173640,173800,173960,174120,174280,174440,174600,174760,174920,175080,175240,175400,175560,175720,175880,176040,176200,176360,176520,176680,176840,177000,177160,177320,177480,177640,177800,177960,178120,178280,178440,178600,178760,178920,179080,179240,179400,179560,179720,179880,180040,180200,180360,180520,180680,180840,181000,181160,181320,181480,181640,181800,181960,182120,182280,182440,182600,182760,182920,183080,183240,183400,183560,183720,183880,184040,184200,184360,184520,184680,184840,185000,185160,185320,185480,185640,185800,185960,186120,186280,186440,186600,186760,186920,187080,187240,187400,187560,187720,187880,188040,188200,188360,188520,188680,188840,189000,189160,189320,189480,189640,189800,189960,190120,190280,190440,190600,190760,190920,191080,191240,191400,191560,191720,191880,192040,192200,192360,192520,192680,192840,193000,193160,193320,193480,193640,193800,193960,194120,194280,194440,194600,194760,194920,195080,195240,195400,195560,195720,195880,196040,196200,196360,196520,196680,196840,197000,197160,197320,197480,197640,197800,197960,198120,198280,198440,198600,198760,198920,199080,199240,199400,199560,199720,199880,200040,200200,200360,200520,200680,200840,201000,201160,201320,201480,201640,201800,201960,202120,202280,202440,202600,202760,202920,203080,203240,203400,203560,203720,203880,204040,204200,204360,204520,204680,204840,205000,205160,205320,205480,205640,205800,205960,206120,206280,206440,206600,206760,206920,207080,207240,207400,207560,207720,207880,208040,208200,208360,208520,208680,208840,209000,209160,209320,209480,209640,209800,209960,210120,210280,210440,210600,210760,210920,211080,211240,211400,211560,211720,211880,212040,212200,212360,212520,212680,212840,213000,213160,213320,213480,213640,213800,213960,214120,214280,214440,214600,214760,214920,215080,215240,215400,215560,215720,215880,216040,216200,216360,216520,216680,216840,217000,217160,217320,217480,217640,217800,217960,218120,218280,218440,218600,218760,218920,219080,219240,219400,219560,219720,219880,220040,220200,220360,220520,220680,220840,221000,221160,221320,221480,221640,221800,221960,222120,222280,222440,222600,222760,222920,223080,223240,223400,223560,223720,223880,224040,224200,224360,224520,224680,224840,225000,225160,225320,225480,225640,225800,225960,226120,226280,226440,226600,226760,226920,227080,227240,227400,227560,227720,227880,228040,228200,228360,228520,228680,228840,229000,229160,229320,229480,229640,229800,229960,230120,230280,230440,230600,230760,230920,231080,231240,231400,231560,231720,231880,232040,232200,232360,232520,232680,232840,233000,233160,233320,233480,233640,233800,233960,234120,234280,234440,234600,234760,234920,235080,235240,235400,235560,235720,235880,236040,236200,236360,236520,236680,236840,237000,237160,237320,237480,237640,237800,237960,238120,238280,238440,238600,238760,238920,239080,239240,239400,239560,239720,239880,240040,240200,240360,240520,240680,240840,241000,241160,241320,241480,241640,241800,241960,242120,242280,242440,242600,242760,242920,243080,243240,243400,243560,243720,243880,244040,244200,244360,244520,244680,244840,245000,245160,245320,245480,245640,245800,245960,246120,246280,246440,246600,246760,246920,247080,247240,247400,247560,247720,247880,248040,248200,248360,248520,248680,248840,249000,249160,249320,249480,249640,249800,249960,250120,250280,250440,250600,250760,250920,251080,251240,251400,251560,251720,251880,252040,252200,252360,252520,252680,252840,253000,253160,253320,253480,253640,253800,253960,254120,254280,254440,254600,254760,254920,255080,255240,255400,255560,255720,255880,256040,256200,256360,256520,256680,256840,257000,257160,257320,257480,257640,257800,257960,258120,258280,258440,258600,258760,258920,259080,259240,259400,259560,259720,259880,260040,260200,260360,260520,260680,260840,261000,261160,261320,261480,261640,261800,261960,262120,262280,262440,262600,262760,262920,263080,263240,263400,263560,263720,263880,264040,264200,264360,264520,264680,264840,265000,265160,265320,265480,265640,265800,265960,266120,266280,266440,266600,266760,266920,267080,267240,267400,267560,267720,267880,268040,268200,268360,268520,268680,268840,269000,269160,269320,269480,269640,269800,269960,270120,270280,270440,270600,270760,270920,271080,271240,271400,271560,271720,271880,272040,272200,272360,272520,272680,272840,273000,273160,273320,273480,273640,273800,273960,274120,274280,274440,274600,274760,274920,275080,275240,275400,275560,275720,275880,276040,276200,276360,276520,276680,276840,277000,277160,277320,277480,277640,277800,277960,278120,278280,278440,278600,278760,278920,279080,279240,279400,279560,279720,279880,280040,280200,280360,280520,280680,280840,281000,281160,281320,281480,281640,281800,281960,282120,282280,282440,282600,282760,282920,283080,283240,283400,283560,283720,283880,284040,284200,284360,284520,284680,284840,285000,285160,285320,285480,285640,285800,285960,286120,286280,286440,286600,286760,286920,287080,287240,287400,287560,287720,287880,288040,288200,288360,288520,288680,288840,289000,289160,289320,289480,289640,289800,289960,290120,290280,290440,290600,290760,290920,291080,291240,291400,291560,291720,291880,292040,292200,292360,292520,292680,292840,293000,293160,293320,293480,293640,293800,293960,294120,294280,294440,294600,294760,294920,295080,295240,295400,295560,295720,295880,296040,296200,296360,296520,296680,296840,297000,297160,297320,297480,297640,297800,297960,298120,298280,298440,298600,298760,298920,299080,299240,299400,299560,299720,299880,300040,300200,300360,300520,300680,300840,301000,301160,301320,301480,301640,301800,301960,302120,302280,302440,302600,302760,302920,303080,303240,303400,303560,303720,303880,304040,304200,304360,304520,304680,304840,305000,305160,305320,305480,305640,305800,305960,306120,306280,306440,306600,306760,306920,307080,307240,307400,307560,307720,307880,308040,308200,308360,308520,308680,308840,309000,309160,309320,309480,309640,309800,309960,310120,310280,310440,310600,310760,310920,311080,311240,311400,311560,311720,311880,312040,312200,312360,312520,312680,312840,313000,313160,313320,313480,313640,313800,313960,314120,314280,314440,314600,314760,314920,315080,315240,315400,315560,315720,315880,316040,316200,316360,316520,316680,316840,317000,317160,317320,317480,317640,317800,317960,318120,318280,318440,318600,318760,318920,319080,319240,319400,319560,319720,319880,320040,320200,320360,320520,320680,320840,321000,321160,321320,321480,321640,321800,321960,322120,322280,322440,322600,322760,322920,323080,323240,323400,323560,323720,323880,324040,324200,324360,324520,324680,324840,325000,325160,325320,325480,325640,325800,325960,326120,326280,326440,326600,326760,326920,327080,327240,327400,327560,327720,327880,328040,328200,328360,328520,328680,328840,329000,329160,329320,329480,329640,329800,329960,330120,330280,330440,330600,330760,330920,331080,331240,331400,331560,331720,331880,332040,332200,332360,332520,332680,332840,333000,333160,333320,333480,333640,333800,333960,334120,334280,334440,334600,334760,334920,335080,335240,335400,335560,335720,335880,336040,336200,336360,336520,336680,336840,337000,337160,337320,337480,337640,337800,337960,338120,338280,338440,338600,338760,338920,339080,339240,339400,339560,339720,339880,340040,340200,340360,340520,340680,340840,341000,341160,341320,341480,341640,341800,341960,342120,342280,342440,342600,342760,342920,343080,343240,343400,343560,343720,343880,344040,344200,344360,344520,344680,344840,345000,345160,345320,345480,345640,345800,345960,346120,346280,346440,346600,346760,346920,347080,347240,347400,347560,347720,347880,348040,348200,348360,348520,348680,348840,349000,349160,349320,349480,349640,349800,349960,350120,350280,350440,350600,350760,350920,351080,351240,351400,351560,351720,351880,352040,352200,352360,352520,352680,352840,353000,353160,353320,353480,353640,353800,353960,354120,354280,354440,354600,354760,354920,355080,355240,355400,355560,355720,355880,356040,356200,356360,356520,356680,356840,357000,357160,357320,357480,357640,357800,357960,358120,358280,358440,358600,358760,358920,359080,359240,359400,359560,359720,359880,360040,360200,360360,360520,360680,360840,361000,361160,361320,361480,361640,361800,361960,362120,362280,362440,362600,362760,362920,363080,363240,363400,363560,363720,363880,364040,364200,364360,364520,364680,364840,365000,365160,365320,365480,365640,365800,365960,366120,366280,366440,366600,366760,366920,367080,367240,367400,367560,367720,367880,368040,368200,368360,368520,368680,368840,369000,369160,369320,369480,369640,369800,369960,370120,370280,370440,370600,370760,370920,371080,371240,371400,371560,371720,371880,372040,372200,372360,372520,372680,372840,373000,373160,373320,373480,373640,373800,373960,374120,374280,374440,374600,374760,374920,375080,375240,375400,375560,375720,375880,376040,376200,376360,376520,376680,376840,377000,377160,377320,377480,377640,377800,377960,378120,378280,378440,378600,378760,378920,379080,379240,379400,379560,379720,379880,380040,380200,380360,380520,380680,380840,381000,381160,381320,381480,381640,381800,381960,382120,382280,382440,382600,382760,382920,383080,383240,383400,383560,383720,383880,384040,384200,384360,384520,384680,384840,385000,385160,385320,385480,385640,385800,385960,386120,386280,386440,386600,386760,386920,387080,387240,387400,387560,387720,387880,388040,388200,388360,388520,388680,388840,389000,389160,389320,389480,389640,389800,389960,390120,390280,390440,390600,390760,390920,391080,391240,391400,391560,391720,391880,392040,392200,392360,392520,392680,392840,393000,393160,393320,393480,393640,393800,393960,394120,394280,394440,394600,394760,394920,395080,395240,395400,395560,395720,395880,396040,396200,396360,396520,396680,396840,397000,397160,397320,397480,397640,397800,397960,398120,398280,398440,398600,398760,398920,399080,399240,399400,399560,399720,399880,400040,400200,400360,400520,400680,400840,401000,401160,401320,401480,401640,401800,401960,402120,402280,402440,402600,402760,402920,403080,403240,403400,403560,403720,403880,404040,404200,404360,404520,404680,404840,405000,405160,405320,405480,405640,405800,405960,406120,406280,406440,406600,406760,406920,407080,407240,407400,407560,407720,407880,408040,408200,408360,408520,408680,408840,409000,409160,409320,409480,409640,409800,409960,410120,410280,410440,410600,410760,410920,411080,411240,411400,411560,411720,411880,412040,412200,412360,412520,412680,412840,413000,413160,413320,413480,413640,413800,413960,414120,414280,414440,414600,414760,414920,415080,415240,415400,415560,415720,415880,416040,416200,416360,416520,416680,416840,417000,417160,417320,417480,417640,417800,417960,418120,418280,418440,418600,418760,418920,419080,419240,419400,419560,419720,419880,420040,420200,420360,420520,420680,420840,421000,421160,421320,421480,421640,421800,421960,422120,422280,422440,422600,422760,422920,423080,423240,423400,423560,423720,423880,424040,424200,424360,424520,424680,424840,425000,425160,425320,425480,425640,425800,425960,426120,426280,426440,426600,426760,426920,427080,427240,427400,427560,427720,427880,428040,428200,428360,428520,428680,428840,429000,429160,429320,429480,429640,429800,429960,430120,430280,430440,430600,430760,430920,431080,431240,431400,431560,431720,431880,432040,432200,432360,432520,432680,432840,433000,433160,433320,433480,433640,433800,433960,434120,434280,434440,434600,434760,434920,435080,435240,435400,435560,435720,435880,436040,436200,436360,436520,436680,436840,437000,437160,437320,437480,437640,437800,437960,438120,438280,438440,438600,438760,438920,439080,439240,439400,439560,439720,439880,440040,440200,440360,440520,440680,440840,441000,441160,441320,441480,441640,441800,441960,442120,442280,442440,442600,442760,442920,443080,443240,443400,443560,443720,443880,444040,444200,444360,444520,444680,444840,445000,445160,445320,445480,445640,445800,445960,446120,446280,446440,446600,446760,446920,447080,447240,447400,447560,447720,447880,448040,448200,448360,448520,448680,448840,449000,449160,449320,449480,449640,449800,449960,450120,450280,450440,450600,450760,450920,451080,451240,451400,451560,451720,451880,452040,452200,452360,452520,452680,452840,453000,453160,453320,453480,453640,453800,453960,454120,454280,454440,454600,454760,454920,455080,455240,455400,455560,455720,455880,456040,456200,456360,456520,456680,456840,457000,457160,457320,457480,457640,457800,457960,458120,458280,458440,458600,458760,458920,459080,459240,459400,459560,459720,459880,460040,460200,460360,460520,460680,460840,461000,461160,461320,461480,461640,461800,461960,462120,462280,462440,462600,462760,462920,463080,463240,463400,463560,463720,463880,464040,464200,464360,464520,464680,464840,465000,465160,465320,465480,465640,465800,465960,466120,466280,466440,466600,466760,466920,467080,467240,467400,467560,467720,467880,468040,468200,468360,468520,468680,468840,469000,469160,469320,469480,469640,469800,469960,470120,470280,470440,470600,470760,470920,471080,471240,471400,471560,471720,471880,472040,472200,472360,472520,472680,472840,473000,473160,473320,473480,473640,473800,473960,474120,474280,474440,474600,474760,474920,475080,475240,475400,475560,475720,475880,476040,476200,476360,476520,476680,476840,477000,477160,477320,477480,477640,477800,477960,478120,478280,478440,478600,478760,478920,479080,479240,479400,479560,479720,479880,480040,480200,480360,480520,480680,480840,481000,481160,481320,481480,481640,481800,481960,482120,482280,482440,482600,482760,482920,483080,483240,483400,483560,483720,483880,484040,484200,484360,484520,484680,484840,485000,485160,485320,485480,485640,485800,485960,486120,486280,486440,486600,486760,486920,487080,487240,487400,487560,487720,487880,488040,488200,488360,488520,488680,488840,489000,489160,489320,489480,489640,489800,489960,490120,490280,490440,490600,490760,490920,491080,491240,491400,491560,491720,491880,492040,492200,492360,492520,492680,492840,493000,493160,493320,493480,493640,493800,493960,494120,494280,494440,494600,494760,494920,495080,495240,495400,495560,495720,495880,496040,496200,496360,496520,496680,496840,497000,497160,497320,497480,497640,497800,497960,498120,498280,498440,498600,498760,498920,499080,499240,499400,499560,499720,499880,500040,500200,500360,500520,500680,500840,501000,501160,501320,501480,501640,501800,501960,502120,502280,502440,502600,502760,502920,503080,503240,503400,503560,503720,503880,504040,504200,504360,504520,504680,504840,505000,505160,505320,505480,505640,505800,505960,506120,506280,506440,506600,506760,506920,507080,507240,507400,507560,507720,507880,508040,508200,508360,508520,508680,508840,509000,509160,509320,509480,509640,509800,509960,510120,510280,510440,510600,510760,510920,511080,511240,511400,511560,511720,511880,512040,512200,512360,512520,512680,512840,513000,513160,513320,513480,513640,513800,513960,514120,514280,514440,514600,514760,514920,515080,515240,515400,515560,515720,515880,516040,516200,516360,516520,516680,516840,517000,517160,517320,517480,517640,517800,517960,518120,518280,518440,518600,518760,518920,519080,519240,519400,519560,519720,519880,520040,520200,520360,520520,520680,520840,521000,521160,521320,521480,521640,521800,521960,522120,522280,522440,522600,522760,522920,523080,523240,523400,523560,523720,523880,524040,524200,524360,524520,524680,524840,525000,525160,525320,525480,525640,525800,525960,526120,526280,526440,526600,526760,526920,527080,527240,527400,527560,527720,527880,528040,528200,528360,528520,528680,528840,529000,529160,529320,529480,529640,529800,529960,530120,530280,530440,530600,530760,530920,531080,531240,531400,531560,531720,531880,532040,532200,532360,532520,532680,532840,533000,533160,533320,533480,533640,533800,533960,534120,534280,534440,534600,534760,534920,535080,535240,535400,535560,535720,535880,536040,536200,536360,536520,536680,536840,537000,537160,537320,537480,537640,537800,537960,538120,538280,538440,538600,538760,538920,539080,539240,539400,539560,539720,539880,540040,540200,540360,540520,540680,540840,541000,541160,541320,541480,541640,541800,541960,542120,542280,542440,542600,542760,542920,543080,543240,543400,543560,543720,543880,544040,544200,544360,544520,544680,544840,545000,545160,545320,545480,545640,545800,545960,546120,546280,546440,546600,546760,546920,547080,547240,547400,547560,547720,547880,548040,548200,548360,548520,548680,548840,549000,549160,549320,549480,549640,549800,549960,550120,550280,550440,550600,550760,550920,551080,551240,551400,551560,551720,551880,552040,552200,552360,552520,552680,552840,553000,553160,553320,553480,553640,553800,553960,554120,554280,554440,554600,554760,554920,555080,555240,555400,555560,555720,555880,556040,556200,556360,556520,556680,556840,557000,557160,557320,557480,557640,557800,557960,558120,558280,558440,558600,558760,558920,559080,559240,559400,559560,559720,559880,560040,560200,560360,560520,560680,560840,561000,561160,561320,561480,561640,561800,561960,562120,562280,562440,562600,562760,562920,563080,563240,563400,563560,563720,563880,564040,564200,564360,564520,564680,564840,565000,565160,565320,565480,565640,565800,565960,566120,566280,566440,566600,566760,566920,567080,567240,567400,567560,567720,567880,568040,568200,568360,568520,568680,568840,569000,569160,569320,569480,569640,569800,569960,570120,570280,570440,570600,570760,570920,571080,571240,571400,571560,571720,571880,572040,572200,572360,572520,572680,572840,573000,573160,573320,573480,573640,573800,573960,574120,574280,574440,574600,574760,574920,575080,575240,575400,575560,575720,575880,576040,576200,576360,576520,576680,576840,577000,577160,577320,577480,577640,577800,577960,578120,578280,578440,578600,578760,578920,579080,579240,579400,579560,579720,579880,580040,580200,580360,580520,580680,580840,581000,581160,581320,581480,581640,581800,581960,582120,582280,582440,582600,582760,582920,583080,583240,583400,583560,583720,583880,584040,584200,584360,584520,584680,584840,585000,585160,585320,585480,585640,585800,585960,586120,586280,586440,586600,586760,586920,587080,587240,587400,587560,587720,587880,588040,588200,588360,588520,588680,588840,589000,589160,589320,589480,589640,589800,589960,590120,590280,590440,590600,590760,590920,591080,591240,591400,591560,591720,591880,592040,592200,592360,592520,592680,592840,593000,593160,593320,593480,593640,593800,593960,594120,594280,594440,594600,594760,594920,595080,595240,595400,595560,595720,595880,596040,596200,596360,596520,596680,596840,597000,597160,597320,597480,597640,597800,597960,598120,598280,598440,598600,598760,598920,599080,599240,599400,599560,599720,599880,600040,600200,600360,600520,600680,600840,601000,601160,601320,601480,601640,601800,601960,602120,602280,602440,602600,602760,602920,603080,603240,603400,603560,603720,603880,604040,604200,604360,604520,604680,604840,605000,605160,605320,605480,605640,605800,605960,606120,606280,606440,606600,606760,606920,607080,607240,607400,607560,607720,607880,608040,608200,608360,608520,608680,608840,609000,609160,609320,609480,609640,609800,609960,610120,610280,610440,610600,610760,610920,611080,611240,611400,611560,611720,611880,612040,612200,612360,612520,612680,612840,613000,613160,613320,613480,613640,613800,613960,614120,614280,614440,614600,614760,614920,615080,615240,615400,615560,615720,615880,616040,616200,616360,616520,616680,616840,617000,617160,617320,617480,617640,617800,617960,618120,618280,618440,618600,618760,618920,619080,619240,619400,619560,619720,619880,620040,620200,620360,620520,620680,620840,621000,621160,621320,621480,621640,621800,621960,622120,622280,622440,622600,622760,622920,623080,623240,623400,623560,623720,623880,624040,624200,624360,624520,624680,624840,625000,625160,625320,625480,625640,625800,625960,626120,626280,626440,626600,626760,626920,627080,627240,627400,627560,627720,627880,628040,628200,628360,628520,628680,628840,629000,629160,629320,629480,629640,629800,629960,630120,630280,630440,630600,630760,630920,631080,631240,631400,631560,631720,631880,632040,632200,632360,632520,632680,632840,633000,633160,633320,633480,633640,633800,633960,634120,634280,634440,634600,634760,634920,635080,635240,635400,635560,635720,635880,636040,636200,636360,636520,636680,636840,637000,637160,637320,637480,637640,637800,637960,638120,638280,638440,638600,638760,638920,639080,639240,639400,639560,639720,639880,640040,640200,640360,640520,640680,640840,641000,641160,641320,641480,641640,641800,641960,642120,642280,642440,642600,642760,642920,643080,643240,643400,643560,643720,643880,644040,644200,644360,644520,644680,644840,645000,645160,645320,645480,645640,645800,645960,646120,646280,646440,646600,646760,646920,647080,647240,647400,647560,647720,647880,648040,648200,648360,648520,648680,648840,649000,649160,649320,649480,649640,649800,649960,650120,650280,650440,650600,650760,650920,651080,651240,651400,651560,651720,651880,652040,652200,652360,652520,652680,652840,653000,653160,653320,653480,653640,653800,653960,654120,654280,654440,654600,654760,654920,655080,655240,655400,655560,655720,655880,656040,656200); + QUERY PLAN +------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_1m_pkey on t_range_1m + Index Cond: (id = ANY ('{1000,1160,1320,1480,1640,1800,1960,2120,2280,2440,2600,2760,2920,3080,3240,3400,3560,3720,3880,4040,4200,4360,4520,4680,4840,5000,5160,5320,5480,5640,5800,5960,6120,6280,6440,6600,6760,6920,7080,7240,7400,7560,7720,7880,8040,8200,8360,8520,8680,8840,9000,9160,9320,9480,9640,9800,9960,10120,10280,10440,10600,10760,10920,11080,11240,11400,11560,11720,11880,12040,12200,12360,12520,12680,12840,13000,13160,13320,13480,13640,13800,13960,14120,14280,14440,14600,14760,14920,15080,15240,15400,15560,15720,15880,16040,16200,16360,16520,16680,16840,17000,17160,17320,17480,17640,17800,17960,18120,18280,18440,18600,18760,18920,19080,19240,19400,19560,19720,19880,20040,20200,20360,20520,20680,20840,21000,21160,21320,21480,21640,21800,21960,22120,22280,22440,22600,22760,22920,23080,23240,23400,23560,23720,23880,24040,24200,24360,24520,24680,24840,25000,25160,25320,25480,25640,25800,25960,26120,26280,26440,26600,26760,26920,27080,27240,27400,27560,27720,27880,28040,28200,28360,28520,28680,28840,29000,29160,29320,29480,29640,29800,29960,30120,30280,30440,30600,30760,30920,31080,31240,31400,31560,31720,31880,32040,32200,32360,32520,32680,32840,33000,33160,33320,33480,33640,33800,33960,34120,34280,34440,34600,34760,34920,35080,35240,35400,35560,35720,35880,36040,36200,36360,36520,36680,36840,37000,37160,37320,37480,37640,37800,37960,38120,38280,38440,38600,38760,38920,39080,39240,39400,39560,39720,39880,40040,40200,40360,40520,40680,40840,41000,41160,41320,41480,41640,41800,41960,42120,42280,42440,42600,42760,42920,43080,43240,43400,43560,43720,43880,44040,44200,44360,44520,44680,44840,45000,45160,45320,45480,45640,45800,45960,46120,46280,46440,46600,46760,46920,47080,47240,47400,47560,47720,47880,48040,48200,48360,48520,48680,48840,49000,49160,49320,49480,49640,49800,49960,50120,50280,50440,50600,50760,50920,51080,51240,51400,51560,51720,51880,52040,52200,52360,52520,52680,52840,53000,53160,53320,53480,53640,53800,53960,54120,54280,54440,54600,54760,54920,55080,55240,55400,55560,55720,55880,56040,56200,56360,56520,56680,56840,57000,57160,57320,57480,57640,57800,57960,58120,58280,58440,58600,58760,58920,59080,59240,59400,59560,59720,59880,60040,60200,60360,60520,60680,60840,61000,61160,61320,61480,61640,61800,61960,62120,62280,62440,62600,62760,62920,63080,63240,63400,63560,63720,63880,64040,64200,64360,64520,64680,64840,65000,65160,65320,65480,65640,65800,65960,66120,66280,66440,66600,66760,66920,67080,67240,67400,67560,67720,67880,68040,68200,68360,68520,68680,68840,69000,69160,69320,69480,69640,69800,69960,70120,70280,70440,70600,70760,70920,71080,71240,71400,71560,71720,71880,72040,72200,72360,72520,72680,72840,73000,73160,73320,73480,73640,73800,73960,74120,74280,74440,74600,74760,74920,75080,75240,75400,75560,75720,75880,76040,76200,76360,76520,76680,76840,77000,77160,77320,77480,77640,77800,77960,78120,78280,78440,78600,78760,78920,79080,79240,79400,79560,79720,79880,80040,80200,80360,80520,80680,80840,81000,81160,81320,81480,81640,81800,81960,82120,82280,82440,82600,82760,82920,83080,83240,83400,83560,83720,83880,84040,84200,84360,84520,84680,84840,85000,85160,85320,85480,85640,85800,85960,86120,86280,86440,86600,86760,86920,87080,87240,87400,87560,87720,87880,88040,88200,88360,88520,88680,88840,89000,89160,89320,89480,89640,89800,89960,90120,90280,90440,90600,90760,90920,91080,91240,91400,91560,91720,91880,92040,92200,92360,92520,92680,92840,93000,93160,93320,93480,93640,93800,93960,94120,94280,94440,94600,94760,94920,95080,95240,95400,95560,95720,95880,96040,96200,96360,96520,96680,96840,97000,97160,97320,97480,97640,97800,97960,98120,98280,98440,98600,98760,98920,99080,99240,99400,99560,99720,99880,100040,100200,100360,100520,100680,100840,101000,101160,101320,101480,101640,101800,101960,102120,102280,102440,102600,102760,102920,103080,103240,103400,103560,103720,103880,104040,104200,104360,104520,104680,104840,105000,105160,105320,105480,105640,105800,105960,106120,106280,106440,106600,106760,106920,107080,107240,107400,107560,107720,107880,108040,108200,108360,108520,108680,108840,109000,109160,109320,109480,109640,109800,109960,110120,110280,110440,110600,110760,110920,111080,111240,111400,111560,111720,111880,112040,112200,112360,112520,112680,112840,113000,113160,113320,113480,113640,113800,113960,114120,114280,114440,114600,114760,114920,115080,115240,115400,115560,115720,115880,116040,116200,116360,116520,116680,116840,117000,117160,117320,117480,117640,117800,117960,118120,118280,118440,118600,118760,118920,119080,119240,119400,119560,119720,119880,120040,120200,120360,120520,120680,120840,121000,121160,121320,121480,121640,121800,121960,122120,122280,122440,122600,122760,122920,123080,123240,123400,123560,123720,123880,124040,124200,124360,124520,124680,124840,125000,125160,125320,125480,125640,125800,125960,126120,126280,126440,126600,126760,126920,127080,127240,127400,127560,127720,127880,128040,128200,128360,128520,128680,128840,129000,129160,129320,129480,129640,129800,129960,130120,130280,130440,130600,130760,130920,131080,131240,131400,131560,131720,131880,132040,132200,132360,132520,132680,132840,133000,133160,133320,133480,133640,133800,133960,134120,134280,134440,134600,134760,134920,135080,135240,135400,135560,135720,135880,136040,136200,136360,136520,136680,136840,137000,137160,137320,137480,137640,137800,137960,138120,138280,138440,138600,138760,138920,139080,139240,139400,139560,139720,139880,140040,140200,140360,140520,140680,140840,141000,141160,141320,141480,141640,141800,141960,142120,142280,142440,142600,142760,142920,143080,143240,143400,143560,143720,143880,144040,144200,144360,144520,144680,144840,145000,145160,145320,145480,145640,145800,145960,146120,146280,146440,146600,146760,146920,147080,147240,147400,147560,147720,147880,148040,148200,148360,148520,148680,148840,149000,149160,149320,149480,149640,149800,149960,150120,150280,150440,150600,150760,150920,151080,151240,151400,151560,151720,151880,152040,152200,152360,152520,152680,152840,153000,153160,153320,153480,153640,153800,153960,154120,154280,154440,154600,154760,154920,155080,155240,155400,155560,155720,155880,156040,156200,156360,156520,156680,156840,157000,157160,157320,157480,157640,157800,157960,158120,158280,158440,158600,158760,158920,159080,159240,159400,159560,159720,159880,160040,160200,160360,160520,160680,160840,161000,161160,161320,161480,161640,161800,161960,162120,162280,162440,162600,162760,162920,163080,163240,163400,163560,163720,163880,164040,164200,164360,164520,164680,164840,165000,165160,165320,165480,165640,165800,165960,166120,166280,166440,166600,166760,166920,167080,167240,167400,167560,167720,167880,168040,168200,168360,168520,168680,168840,169000,169160,169320,169480,169640,169800,169960,170120,170280,170440,170600,170760,170920,171080,171240,171400,171560,171720,171880,172040,172200,172360,172520,172680,172840,173000,173160,173320,173480,173640,173800,173960,174120,174280,174440,174600,174760,174920,175080,175240,175400,175560,175720,175880,176040,176200,176360,176520,176680,176840,177000,177160,177320,177480,177640,177800,177960,178120,178280,178440,178600,178760,178920,179080,179240,179400,179560,179720,179880,180040,180200,180360,180520,180680,180840,181000,181160,181320,181480,181640,181800,181960,182120,182280,182440,182600,182760,182920,183080,183240,183400,183560,183720,183880,184040,184200,184360,184520,184680,184840,185000,185160,185320,185480,185640,185800,185960,186120,186280,186440,186600,186760,186920,187080,187240,187400,187560,187720,187880,188040,188200,188360,188520,188680,188840,189000,189160,189320,189480,189640,189800,189960,190120,190280,190440,190600,190760,190920,191080,191240,191400,191560,191720,191880,192040,192200,192360,192520,192680,192840,193000,193160,193320,193480,193640,193800,193960,194120,194280,194440,194600,194760,194920,195080,195240,195400,195560,195720,195880,196040,196200,196360,196520,196680,196840,197000,197160,197320,197480,197640,197800,197960,198120,198280,198440,198600,198760,198920,199080,199240,199400,199560,199720,199880,200040,200200,200360,200520,200680,200840,201000,201160,201320,201480,201640,201800,201960,202120,202280,202440,202600,202760,202920,203080,203240,203400,203560,203720,203880,204040,204200,204360,204520,204680,204840,205000,205160,205320,205480,205640,205800,205960,206120,206280,206440,206600,206760,206920,207080,207240,207400,207560,207720,207880,208040,208200,208360,208520,208680,208840,209000,209160,209320,209480,209640,209800,209960,210120,210280,210440,210600,210760,210920,211080,211240,211400,211560,211720,211880,212040,212200,212360,212520,212680,212840,213000,213160,213320,213480,213640,213800,213960,214120,214280,214440,214600,214760,214920,215080,215240,215400,215560,215720,215880,216040,216200,216360,216520,216680,216840,217000,217160,217320,217480,217640,217800,217960,218120,218280,218440,218600,218760,218920,219080,219240,219400,219560,219720,219880,220040,220200,220360,220520,220680,220840,221000,221160,221320,221480,221640,221800,221960,222120,222280,222440,222600,222760,222920,223080,223240,223400,223560,223720,223880,224040,224200,224360,224520,224680,224840,225000,225160,225320,225480,225640,225800,225960,226120,226280,226440,226600,226760,226920,227080,227240,227400,227560,227720,227880,228040,228200,228360,228520,228680,228840,229000,229160,229320,229480,229640,229800,229960,230120,230280,230440,230600,230760,230920,231080,231240,231400,231560,231720,231880,232040,232200,232360,232520,232680,232840,233000,233160,233320,233480,233640,233800,233960,234120,234280,234440,234600,234760,234920,235080,235240,235400,235560,235720,235880,236040,236200,236360,236520,236680,236840,237000,237160,237320,237480,237640,237800,237960,238120,238280,238440,238600,238760,238920,239080,239240,239400,239560,239720,239880,240040,240200,240360,240520,240680,240840,241000,241160,241320,241480,241640,241800,241960,242120,242280,242440,242600,242760,242920,243080,243240,243400,243560,243720,243880,244040,244200,244360,244520,244680,244840,245000,245160,245320,245480,245640,245800,245960,246120,246280,246440,246600,246760,246920,247080,247240,247400,247560,247720,247880,248040,248200,248360,248520,248680,248840,249000,249160,249320,249480,249640,249800,249960,250120,250280,250440,250600,250760,250920,251080,251240,251400,251560,251720,251880,252040,252200,252360,252520,252680,252840,253000,253160,253320,253480,253640,253800,253960,254120,254280,254440,254600,254760,254920,255080,255240,255400,255560,255720,255880,256040,256200,256360,256520,256680,256840,257000,257160,257320,257480,257640,257800,257960,258120,258280,258440,258600,258760,258920,259080,259240,259400,259560,259720,259880,260040,260200,260360,260520,260680,260840,261000,261160,261320,261480,261640,261800,261960,262120,262280,262440,262600,262760,262920,263080,263240,263400,263560,263720,263880,264040,264200,264360,264520,264680,264840,265000,265160,265320,265480,265640,265800,265960,266120,266280,266440,266600,266760,266920,267080,267240,267400,267560,267720,267880,268040,268200,268360,268520,268680,268840,269000,269160,269320,269480,269640,269800,269960,270120,270280,270440,270600,270760,270920,271080,271240,271400,271560,271720,271880,272040,272200,272360,272520,272680,272840,273000,273160,273320,273480,273640,273800,273960,274120,274280,274440,274600,274760,274920,275080,275240,275400,275560,275720,275880,276040,276200,276360,276520,276680,276840,277000,277160,277320,277480,277640,277800,277960,278120,278280,278440,278600,278760,278920,279080,279240,279400,279560,279720,279880,280040,280200,280360,280520,280680,280840,281000,281160,281320,281480,281640,281800,281960,282120,282280,282440,282600,282760,282920,283080,283240,283400,283560,283720,283880,284040,284200,284360,284520,284680,284840,285000,285160,285320,285480,285640,285800,285960,286120,286280,286440,286600,286760,286920,287080,287240,287400,287560,287720,287880,288040,288200,288360,288520,288680,288840,289000,289160,289320,289480,289640,289800,289960,290120,290280,290440,290600,290760,290920,291080,291240,291400,291560,291720,291880,292040,292200,292360,292520,292680,292840,293000,293160,293320,293480,293640,293800,293960,294120,294280,294440,294600,294760,294920,295080,295240,295400,295560,295720,295880,296040,296200,296360,296520,296680,296840,297000,297160,297320,297480,297640,297800,297960,298120,298280,298440,298600,298760,298920,299080,299240,299400,299560,299720,299880,300040,300200,300360,300520,300680,300840,301000,301160,301320,301480,301640,301800,301960,302120,302280,302440,302600,302760,302920,303080,303240,303400,303560,303720,303880,304040,304200,304360,304520,304680,304840,305000,305160,305320,305480,305640,305800,305960,306120,306280,306440,306600,306760,306920,307080,307240,307400,307560,307720,307880,308040,308200,308360,308520,308680,308840,309000,309160,309320,309480,309640,309800,309960,310120,310280,310440,310600,310760,310920,311080,311240,311400,311560,311720,311880,312040,312200,312360,312520,312680,312840,313000,313160,313320,313480,313640,313800,313960,314120,314280,314440,314600,314760,314920,315080,315240,315400,315560,315720,315880,316040,316200,316360,316520,316680,316840,317000,317160,317320,317480,317640,317800,317960,318120,318280,318440,318600,318760,318920,319080,319240,319400,319560,319720,319880,320040,320200,320360,320520,320680,320840,321000,321160,321320,321480,321640,321800,321960,322120,322280,322440,322600,322760,322920,323080,323240,323400,323560,323720,323880,324040,324200,324360,324520,324680,324840,325000,325160,325320,325480,325640,325800,325960,326120,326280,326440,326600,326760,326920,327080,327240,327400,327560,327720,327880,328040,328200,328360,328520,328680,328840,329000,329160,329320,329480,329640,329800,329960,330120,330280,330440,330600,330760,330920,331080,331240,331400,331560,331720,331880,332040,332200,332360,332520,332680,332840,333000,333160,333320,333480,333640,333800,333960,334120,334280,334440,334600,334760,334920,335080,335240,335400,335560,335720,335880,336040,336200,336360,336520,336680,336840,337000,337160,337320,337480,337640,337800,337960,338120,338280,338440,338600,338760,338920,339080,339240,339400,339560,339720,339880,340040,340200,340360,340520,340680,340840,341000,341160,341320,341480,341640,341800,341960,342120,342280,342440,342600,342760,342920,343080,343240,343400,343560,343720,343880,344040,344200,344360,344520,344680,344840,345000,345160,345320,345480,345640,345800,345960,346120,346280,346440,346600,346760,346920,347080,347240,347400,347560,347720,347880,348040,348200,348360,348520,348680,348840,349000,349160,349320,349480,349640,349800,349960,350120,350280,350440,350600,350760,350920,351080,351240,351400,351560,351720,351880,352040,352200,352360,352520,352680,352840,353000,353160,353320,353480,353640,353800,353960,354120,354280,354440,354600,354760,354920,355080,355240,355400,355560,355720,355880,356040,356200,356360,356520,356680,356840,357000,357160,357320,357480,357640,357800,357960,358120,358280,358440,358600,358760,358920,359080,359240,359400,359560,359720,359880,360040,360200,360360,360520,360680,360840,361000,361160,361320,361480,361640,361800,361960,362120,362280,362440,362600,362760,362920,363080,363240,363400,363560,363720,363880,364040,364200,364360,364520,364680,364840,365000,365160,365320,365480,365640,365800,365960,366120,366280,366440,366600,366760,366920,367080,367240,367400,367560,367720,367880,368040,368200,368360,368520,368680,368840,369000,369160,369320,369480,369640,369800,369960,370120,370280,370440,370600,370760,370920,371080,371240,371400,371560,371720,371880,372040,372200,372360,372520,372680,372840,373000,373160,373320,373480,373640,373800,373960,374120,374280,374440,374600,374760,374920,375080,375240,375400,375560,375720,375880,376040,376200,376360,376520,376680,376840,377000,377160,377320,377480,377640,377800,377960,378120,378280,378440,378600,378760,378920,379080,379240,379400,379560,379720,379880,380040,380200,380360,380520,380680,380840,381000,381160,381320,381480,381640,381800,381960,382120,382280,382440,382600,382760,382920,383080,383240,383400,383560,383720,383880,384040,384200,384360,384520,384680,384840,385000,385160,385320,385480,385640,385800,385960,386120,386280,386440,386600,386760,386920,387080,387240,387400,387560,387720,387880,388040,388200,388360,388520,388680,388840,389000,389160,389320,389480,389640,389800,389960,390120,390280,390440,390600,390760,390920,391080,391240,391400,391560,391720,391880,392040,392200,392360,392520,392680,392840,393000,393160,393320,393480,393640,393800,393960,394120,394280,394440,394600,394760,394920,395080,395240,395400,395560,395720,395880,396040,396200,396360,396520,396680,396840,397000,397160,397320,397480,397640,397800,397960,398120,398280,398440,398600,398760,398920,399080,399240,399400,399560,399720,399880,400040,400200,400360,400520,400680,400840,401000,401160,401320,401480,401640,401800,401960,402120,402280,402440,402600,402760,402920,403080,403240,403400,403560,403720,403880,404040,404200,404360,404520,404680,404840,405000,405160,405320,405480,405640,405800,405960,406120,406280,406440,406600,406760,406920,407080,407240,407400,407560,407720,407880,408040,408200,408360,408520,408680,408840,409000,409160,409320,409480,409640,409800,409960,410120,410280,410440,410600,410760,410920,411080,411240,411400,411560,411720,411880,412040,412200,412360,412520,412680,412840,413000,413160,413320,413480,413640,413800,413960,414120,414280,414440,414600,414760,414920,415080,415240,415400,415560,415720,415880,416040,416200,416360,416520,416680,416840,417000,417160,417320,417480,417640,417800,417960,418120,418280,418440,418600,418760,418920,419080,419240,419400,419560,419720,419880,420040,420200,420360,420520,420680,420840,421000,421160,421320,421480,421640,421800,421960,422120,422280,422440,422600,422760,422920,423080,423240,423400,423560,423720,423880,424040,424200,424360,424520,424680,424840,425000,425160,425320,425480,425640,425800,425960,426120,426280,426440,426600,426760,426920,427080,427240,427400,427560,427720,427880,428040,428200,428360,428520,428680,428840,429000,429160,429320,429480,429640,429800,429960,430120,430280,430440,430600,430760,430920,431080,431240,431400,431560,431720,431880,432040,432200,432360,432520,432680,432840,433000,433160,433320,433480,433640,433800,433960,434120,434280,434440,434600,434760,434920,435080,435240,435400,435560,435720,435880,436040,436200,436360,436520,436680,436840,437000,437160,437320,437480,437640,437800,437960,438120,438280,438440,438600,438760,438920,439080,439240,439400,439560,439720,439880,440040,440200,440360,440520,440680,440840,441000,441160,441320,441480,441640,441800,441960,442120,442280,442440,442600,442760,442920,443080,443240,443400,443560,443720,443880,444040,444200,444360,444520,444680,444840,445000,445160,445320,445480,445640,445800,445960,446120,446280,446440,446600,446760,446920,447080,447240,447400,447560,447720,447880,448040,448200,448360,448520,448680,448840,449000,449160,449320,449480,449640,449800,449960,450120,450280,450440,450600,450760,450920,451080,451240,451400,451560,451720,451880,452040,452200,452360,452520,452680,452840,453000,453160,453320,453480,453640,453800,453960,454120,454280,454440,454600,454760,454920,455080,455240,455400,455560,455720,455880,456040,456200,456360,456520,456680,456840,457000,457160,457320,457480,457640,457800,457960,458120,458280,458440,458600,458760,458920,459080,459240,459400,459560,459720,459880,460040,460200,460360,460520,460680,460840,461000,461160,461320,461480,461640,461800,461960,462120,462280,462440,462600,462760,462920,463080,463240,463400,463560,463720,463880,464040,464200,464360,464520,464680,464840,465000,465160,465320,465480,465640,465800,465960,466120,466280,466440,466600,466760,466920,467080,467240,467400,467560,467720,467880,468040,468200,468360,468520,468680,468840,469000,469160,469320,469480,469640,469800,469960,470120,470280,470440,470600,470760,470920,471080,471240,471400,471560,471720,471880,472040,472200,472360,472520,472680,472840,473000,473160,473320,473480,473640,473800,473960,474120,474280,474440,474600,474760,474920,475080,475240,475400,475560,475720,475880,476040,476200,476360,476520,476680,476840,477000,477160,477320,477480,477640,477800,477960,478120,478280,478440,478600,478760,478920,479080,479240,479400,479560,479720,479880,480040,480200,480360,480520,480680,480840,481000,481160,481320,481480,481640,481800,481960,482120,482280,482440,482600,482760,482920,483080,483240,483400,483560,483720,483880,484040,484200,484360,484520,484680,484840,485000,485160,485320,485480,485640,485800,485960,486120,486280,486440,486600,486760,486920,487080,487240,487400,487560,487720,487880,488040,488200,488360,488520,488680,488840,489000,489160,489320,489480,489640,489800,489960,490120,490280,490440,490600,490760,490920,491080,491240,491400,491560,491720,491880,492040,492200,492360,492520,492680,492840,493000,493160,493320,493480,493640,493800,493960,494120,494280,494440,494600,494760,494920,495080,495240,495400,495560,495720,495880,496040,496200,496360,496520,496680,496840,497000,497160,497320,497480,497640,497800,497960,498120,498280,498440,498600,498760,498920,499080,499240,499400,499560,499720,499880,500040,500200,500360,500520,500680,500840,501000,501160,501320,501480,501640,501800,501960,502120,502280,502440,502600,502760,502920,503080,503240,503400,503560,503720,503880,504040,504200,504360,504520,504680,504840,505000,505160,505320,505480,505640,505800,505960,506120,506280,506440,506600,506760,506920,507080,507240,507400,507560,507720,507880,508040,508200,508360,508520,508680,508840,509000,509160,509320,509480,509640,509800,509960,510120,510280,510440,510600,510760,510920,511080,511240,511400,511560,511720,511880,512040,512200,512360,512520,512680,512840,513000,513160,513320,513480,513640,513800,513960,514120,514280,514440,514600,514760,514920,515080,515240,515400,515560,515720,515880,516040,516200,516360,516520,516680,516840,517000,517160,517320,517480,517640,517800,517960,518120,518280,518440,518600,518760,518920,519080,519240,519400,519560,519720,519880,520040,520200,520360,520520,520680,520840,521000,521160,521320,521480,521640,521800,521960,522120,522280,522440,522600,522760,522920,523080,523240,523400,523560,523720,523880,524040,524200,524360,524520,524680,524840,525000,525160,525320,525480,525640,525800,525960,526120,526280,526440,526600,526760,526920,527080,527240,527400,527560,527720,527880,528040,528200,528360,528520,528680,528840,529000,529160,529320,529480,529640,529800,529960,530120,530280,530440,530600,530760,530920,531080,531240,531400,531560,531720,531880,532040,532200,532360,532520,532680,532840,533000,533160,533320,533480,533640,533800,533960,534120,534280,534440,534600,534760,534920,535080,535240,535400,535560,535720,535880,536040,536200,536360,536520,536680,536840,537000,537160,537320,537480,537640,537800,537960,538120,538280,538440,538600,538760,538920,539080,539240,539400,539560,539720,539880,540040,540200,540360,540520,540680,540840,541000,541160,541320,541480,541640,541800,541960,542120,542280,542440,542600,542760,542920,543080,543240,543400,543560,543720,543880,544040,544200,544360,544520,544680,544840,545000,545160,545320,545480,545640,545800,545960,546120,546280,546440,546600,546760,546920,547080,547240,547400,547560,547720,547880,548040,548200,548360,548520,548680,548840,549000,549160,549320,549480,549640,549800,549960,550120,550280,550440,550600,550760,550920,551080,551240,551400,551560,551720,551880,552040,552200,552360,552520,552680,552840,553000,553160,553320,553480,553640,553800,553960,554120,554280,554440,554600,554760,554920,555080,555240,555400,555560,555720,555880,556040,556200,556360,556520,556680,556840,557000,557160,557320,557480,557640,557800,557960,558120,558280,558440,558600,558760,558920,559080,559240,559400,559560,559720,559880,560040,560200,560360,560520,560680,560840,561000,561160,561320,561480,561640,561800,561960,562120,562280,562440,562600,562760,562920,563080,563240,563400,563560,563720,563880,564040,564200,564360,564520,564680,564840,565000,565160,565320,565480,565640,565800,565960,566120,566280,566440,566600,566760,566920,567080,567240,567400,567560,567720,567880,568040,568200,568360,568520,568680,568840,569000,569160,569320,569480,569640,569800,569960,570120,570280,570440,570600,570760,570920,571080,571240,571400,571560,571720,571880,572040,572200,572360,572520,572680,572840,573000,573160,573320,573480,573640,573800,573960,574120,574280,574440,574600,574760,574920,575080,575240,575400,575560,575720,575880,576040,576200,576360,576520,576680,576840,577000,577160,577320,577480,577640,577800,577960,578120,578280,578440,578600,578760,578920,579080,579240,579400,579560,579720,579880,580040,580200,580360,580520,580680,580840,581000,581160,581320,581480,581640,581800,581960,582120,582280,582440,582600,582760,582920,583080,583240,583400,583560,583720,583880,584040,584200,584360,584520,584680,584840,585000,585160,585320,585480,585640,585800,585960,586120,586280,586440,586600,586760,586920,587080,587240,587400,587560,587720,587880,588040,588200,588360,588520,588680,588840,589000,589160,589320,589480,589640,589800,589960,590120,590280,590440,590600,590760,590920,591080,591240,591400,591560,591720,591880,592040,592200,592360,592520,592680,592840,593000,593160,593320,593480,593640,593800,593960,594120,594280,594440,594600,594760,594920,595080,595240,595400,595560,595720,595880,596040,596200,596360,596520,596680,596840,597000,597160,597320,597480,597640,597800,597960,598120,598280,598440,598600,598760,598920,599080,599240,599400,599560,599720,599880,600040,600200,600360,600520,600680,600840,601000,601160,601320,601480,601640,601800,601960,602120,602280,602440,602600,602760,602920,603080,603240,603400,603560,603720,603880,604040,604200,604360,604520,604680,604840,605000,605160,605320,605480,605640,605800,605960,606120,606280,606440,606600,606760,606920,607080,607240,607400,607560,607720,607880,608040,608200,608360,608520,608680,608840,609000,609160,609320,609480,609640,609800,609960,610120,610280,610440,610600,610760,610920,611080,611240,611400,611560,611720,611880,612040,612200,612360,612520,612680,612840,613000,613160,613320,613480,613640,613800,613960,614120,614280,614440,614600,614760,614920,615080,615240,615400,615560,615720,615880,616040,616200,616360,616520,616680,616840,617000,617160,617320,617480,617640,617800,617960,618120,618280,618440,618600,618760,618920,619080,619240,619400,619560,619720,619880,620040,620200,620360,620520,620680,620840,621000,621160,621320,621480,621640,621800,621960,622120,622280,622440,622600,622760,622920,623080,623240,623400,623560,623720,623880,624040,624200,624360,624520,624680,624840,625000,625160,625320,625480,625640,625800,625960,626120,626280,626440,626600,626760,626920,627080,627240,627400,627560,627720,627880,628040,628200,628360,628520,628680,628840,629000,629160,629320,629480,629640,629800,629960,630120,630280,630440,630600,630760,630920,631080,631240,631400,631560,631720,631880,632040,632200,632360,632520,632680,632840,633000,633160,633320,633480,633640,633800,633960,634120,634280,634440,634600,634760,634920,635080,635240,635400,635560,635720,635880,636040,636200,636360,636520,636680,636840,637000,637160,637320,637480,637640,637800,637960,638120,638280,638440,638600,638760,638920,639080,639240,639400,639560,639720,639880,640040,640200,640360,640520,640680,640840,641000,641160,641320,641480,641640,641800,641960,642120,642280,642440,642600,642760,642920,643080,643240,643400,643560,643720,643880,644040,644200,644360,644520,644680,644840,645000,645160,645320,645480,645640,645800,645960,646120,646280,646440,646600,646760,646920,647080,647240,647400,647560,647720,647880,648040,648200,648360,648520,648680,648840,649000,649160,649320,649480,649640,649800,649960,650120,650280,650440,650600,650760,650920,651080,651240,651400,651560,651720,651880,652040,652200,652360,652520,652680,652840,653000,653160,653320,653480,653640,653800,653960,654120,654280,654440,654600,654760,654920,655080,655240,655400,655560,655720,655880,656040,656200}'::integer[])) +(2 rows) + +-- Query Hash: f59aff38836fd18f7660e9d299b323d5 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_100k_pkey on t_range_100k + Index Cond: (id = ANY ('{1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996}'::integer[])) +(2 rows) + +-- Query Hash: 46c5f5b6c31d62cf0eedf95fa5869254 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_200k WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_200k_pkey on t_range_200k + Index Cond: (id = ANY ('{1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996}'::integer[])) +(2 rows) + +-- Query Hash: 56bd35e852de4f083ab337edbb90de02 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_300k WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_300k_pkey on t_range_300k + Index Cond: (id = ANY ('{1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996}'::integer[])) +(2 rows) + +-- Query Hash: 82e1555fc50aae7a4634243c4179f8f4 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_400k WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_400k_pkey on t_range_400k + Index Cond: (id = ANY ('{1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996}'::integer[])) +(2 rows) + +-- Query Hash: c7b0f030ec157796f709324ac699f8ca +EXPLAIN (COSTS OFF) SELECT * FROM t_range_500k WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_500k_pkey on t_range_500k + Index Cond: (id = ANY ('{1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996}'::integer[])) +(2 rows) + +-- Query Hash: 208c5f0105e7a8b6a730af61d64f09b6 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_600k WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_600k_pkey on t_range_600k + Index Cond: (id = ANY ('{1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996}'::integer[])) +(2 rows) + +-- Query Hash: b67207a2e805a361f7f1e8dc8a925fdd +EXPLAIN (COSTS OFF) SELECT * FROM t_range_700k WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_700k_pkey on t_range_700k + Index Cond: (id = ANY ('{1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996}'::integer[])) +(2 rows) + +-- Query Hash: f075a79f20910f7f9fb02cf29d58e408 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_800k WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_800k_pkey on t_range_800k + Index Cond: (id = ANY ('{1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996}'::integer[])) +(2 rows) + +-- Query Hash: f9605d447096d011773f1c73bdd599c1 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_900k WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_900k_pkey on t_range_900k + Index Cond: (id = ANY ('{1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996}'::integer[])) +(2 rows) + +-- Query Hash: 38847518cd55e24add1e8125e00d837d +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); + QUERY PLAN +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + Index Scan using t_range_1m_pkey on t_range_1m + Index Cond: (id = ANY ('{1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996}'::integer[])) +(2 rows) + -- Query Hash: d5f0641093478e5f0b19a2ec7ffae628 EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k; QUERY PLAN diff --git a/src/postgres/src/test/regress/expected/yb.orig.select_parallel.out b/src/postgres/src/test/regress/expected/yb.orig.select_parallel.out index b4d6f3a5a368..07bb4e3cc31b 100644 --- a/src/postgres/src/test/regress/expected/yb.orig.select_parallel.out +++ b/src/postgres/src/test/regress/expected/yb.orig.select_parallel.out @@ -673,10 +673,10 @@ explain (costs off) (select two from tenk1 b where stringu1 like '%AAAA' limit 3); QUERY PLAN ----------------------------------------------------------------- - Nested Loop Semi Join - Join Filter: (a.two = b.two) + Hash Semi Join + Hash Cond: (a.two = b.two) -> Seq Scan on tenk1 a - -> Materialize + -> Hash -> Limit -> Seq Scan on tenk1 b Storage Filter: (stringu1 ~~ '%AAAA'::text) diff --git a/src/postgres/src/test/regress/sql/yb.orig.parallel_colocated.sql b/src/postgres/src/test/regress/sql/yb.orig.parallel_colocated.sql index e7dcdf3380c6..767b993a5049 100644 --- a/src/postgres/src/test/regress/sql/yb.orig.parallel_colocated.sql +++ b/src/postgres/src/test/regress/sql/yb.orig.parallel_colocated.sql @@ -29,6 +29,11 @@ set yb_enable_base_scans_cost_model to true; -- parallel bitmap scan not supported yet set enable_bitmapscan = false; +-- encourage use of parallel plans for the remaining tests by gucs +-- since the "hard" option of Parallel hint is broken. (#26181) +set parallel_setup_cost=0; +set parallel_tuple_cost=0; + -- Parallel sequential scan /*+ Parallel(pctest1 2 hard) */ EXPLAIN (costs off) @@ -57,11 +62,6 @@ SELECT b, count(*) FROM pctest1 WHERE d LIKE 'Value9%' GROUP BY b; /*+ Parallel(pctest1 2 hard) */ SELECT b, count(*) FROM pctest1 WHERE d LIKE 'Value9%' GROUP BY b; --- encourage use of parallel plans for the remaining tests by gucs --- since the "hard" option of Parallel hint is broken. (#26181) -set parallel_setup_cost=0; -set parallel_tuple_cost=0; - -- Parallel index scan EXPLAIN (costs off) SELECT * FROM pctest1 WHERE k < 10; diff --git a/src/postgres/src/test/regress/sql/yb.orig.planner_base_scans_cost_model.sql b/src/postgres/src/test/regress/sql/yb.orig.planner_base_scans_cost_model.sql index de7dff9aeb07..a077be2936d2 100644 --- a/src/postgres/src/test/regress/sql/yb.orig.planner_base_scans_cost_model.sql +++ b/src/postgres/src/test/regress/sql/yb.orig.planner_base_scans_cost_model.sql @@ -48,25 +48,48 @@ SET yb_enable_base_scans_cost_model = ON; -- Partial Index Scan should be preferred over full index scan or seq scan EXPLAIN (COSTS OFF) SELECT * FROM t_24916 WHERE v1 = 1 AND v2 < 5; - -------------------------------------------------------------------------------- --- #25682 : Estimated seeks and nexts value can overflow in a large table +-- #23709 : YB vs. PG operator cost disparity causing optimizer to choose +-- slower disk sort plan over ordered index without explicit sort -------------------------------------------------------------------------------- -CREATE TABLE t_25682 (k1 INT, v1 INT, PRIMARY KEY (k1 ASC)); -CREATE INDEX t_25682_idx on t_25682 (v1 ASC); --- Simluate a large table by setting reltuples in pg_class to 4B row +CREATE TABLE t_23709 (a int, b int, c int, d char(512), g int, t timestamp, primary key (a ASC)); +CREATE INDEX idx_t_23709_g_t_a ON t_23709 (g ASC, t DESC, a DESC); +CREATE INDEX idx_t_23709_t_g_a ON t_23709 (t DESC, g ASC, a DESC); + +-- Simulating statatistics instead of adding 4M rows, to make test run faster +-- and to avoid flakiness. SET yb_non_ddl_txn_for_sys_tables_allowed = ON; -UPDATE pg_class SET reltuples=4000000000 WHERE relname LIKE '%t_25682%'; -UPDATE pg_yb_catalog_version SET current_version=current_version+1 WHERE db_oid=1; + +UPDATE pg_class SET reltuples = 4000000.0, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't_23709' OR relname = 't_23709_pkey'); +UPDATE pg_class SET reltuples = 4000000.0, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't_23709_pkey' OR relname = 't_23709_pkey_pkey'); +UPDATE pg_class SET reltuples = 4000000.0, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 'idx_t_23709_g_t_a' OR relname = 'idx_t_23709_g_t_a_pkey'); +UPDATE pg_class SET reltuples = 4000000.0, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 'idx_t_23709_t_g_a' OR relname = 'idx_t_23709_t_g_a_pkey'); + +DELETE FROM pg_statistic WHERE starelid = 'public.t_23709'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t_23709'::regclass and a.attname = 'a'); +INSERT INTO pg_statistic VALUES ('public.t_23709'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t_23709'::regclass and a.attname = 'a'), False::boolean, 0::real, 4::integer, -1::real, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 97::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, NULL::real[], '{0.0012466755}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{38, 42048, 81030, 120971, 161377, 198497, 237264, 278640, 318384, 358048, 395704, 435410, 474581, 515079, 553855, 595183, 633155, 670749, 713409, 755043, 797430, 837684, 879094, 923587, 963310, 1007316, 1046548, 1086825, 1128777, 1168887, 1208482, 1249097, 1289714, 1330255, 1372393, 1410885, 1451233, 1488918, 1528422, 1569157, 1608540, 1644234, 1682107, 1719635, 1758212, 1797026, 1839579, 1883798, 1923662, 1963896, 2000589, 2040171, 2084192, 2124639, 2162946, 2199029, 2242735, 2285812, 2330026, 2369318, 2408734, 2450429, 2490533, 2528832, 2566602, 2608123, 2648280, 2689266, 2731865, 2769815, 2810569, 2851840, 2888430, 2922850, 2963154, 2999105, 3037417, 3076571, 3114611, 3153881, 3194706, 3228791, 3266011, 3304785, 3343986, 3385912, 3428375, 3472589, 3516122, 3556998, 3595811, 3634195, 3675248, 3714389, 3756138, 3795568, 3837211, 3878330, 3918931, 3959480, 3999979}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.t_23709'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t_23709'::regclass and a.attname = 'b'); +INSERT INTO pg_statistic VALUES ('public.t_23709'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t_23709'::regclass and a.attname = 'b'), False::boolean, 0::real, 4::integer, -0.20015675::real, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 97::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, NULL::real[], '{-0.0027559977}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{38, 7739, 15336, 23350, 30685, 38354, 46075, 54400, 62194, 69870, 77506, 85736, 93782, 101635, 109027, 117334, 125644, 132661, 140716, 148665, 157135, 164881, 173173, 180968, 189040, 197776, 205804, 214177, 222135, 230329, 238083, 246638, 256057, 263936, 272210, 280502, 288276, 296161, 304858, 313355, 321602, 329881, 337441, 345818, 353430, 361680, 369551, 378196, 385826, 392486, 400190, 408168, 416335, 424445, 432504, 440766, 448629, 455445, 463183, 471705, 480099, 488591, 497126, 504552, 512105, 519894, 527503, 535118, 543299, 552734, 560343, 567753, 575626, 582638, 589793, 598024, 605760, 613188, 620890, 629354, 638527, 646786, 654883, 662297, 670157, 678307, 686414, 694652, 703195, 711046, 718938, 726963, 735214, 743405, 750743, 759359, 768206, 776302, 784058, 792127, 799979}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.t_23709'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t_23709'::regclass and a.attname = 'c'); +INSERT INTO pg_statistic VALUES ('public.t_23709'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t_23709'::regclass and a.attname = 'c'), False::boolean, 0::real, 4::integer, -0.138014::real, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 97::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, NULL::real[], '{-0.011019879}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{30, 5823, 11256, 17596, 23326, 29385, 34942, 40945, 46608, 52937, 57858, 62943, 68351, 74251, 80349, 85469, 91213, 97384, 103292, 108680, 115083, 120390, 125774, 131403, 137561, 143659, 149269, 155254, 160847, 166335, 172551, 178222, 183992, 189727, 195519, 200805, 206744, 212116, 218417, 223904, 229120, 234377, 239941, 245931, 251227, 257087, 262732, 268535, 273666, 279756, 285148, 290744, 296649, 302737, 308762, 314831, 319930, 325804, 331157, 336619, 342524, 348934, 354355, 360011, 365816, 371670, 377459, 383210, 388602, 394189, 399880, 405685, 411543, 417095, 422656, 429027, 434465, 440666, 446032, 451517, 457254, 462642, 468217, 473541, 479415, 484920, 490533, 496466, 501592, 506789, 512873, 518930, 525055, 530902, 536870, 542749, 549144, 554935, 560704, 565852, 571414}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.t_23709'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t_23709'::regclass and a.attname = 'g'); +INSERT INTO pg_statistic VALUES ('public.t_23709'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t_23709'::regclass and a.attname = 'g'), False::boolean, 0::real, 4::integer, -0.1243445::real, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 97::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, NULL::real[], '{-0.00023303942}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{39, 5016, 9982, 15144, 19706, 24891, 29596, 34775, 39660, 44457, 49977, 54778, 59643, 64636, 69725, 75269, 80442, 84942, 89715, 94915, 100124, 104709, 109450, 114893, 119837, 124732, 129182, 133879, 138808, 143923, 148774, 153753, 159053, 163900, 168466, 173677, 178629, 183544, 187906, 192973, 198249, 202955, 207523, 212397, 217580, 222477, 227484, 231992, 237107, 242257, 247625, 252424, 257507, 262377, 267987, 272740, 277757, 282761, 287905, 292969, 298056, 303362, 308523, 313913, 318707, 323936, 329477, 334592, 339684, 344867, 349915, 354823, 359751, 364710, 369330, 374909, 379826, 384962, 389762, 394977, 399783, 404915, 409735, 414590, 419736, 424649, 429572, 434522, 439886, 445171, 450336, 456068, 460832, 465540, 470434, 475175, 480306, 485356, 490126, 495412, 499993}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.t_23709'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t_23709'::regclass and a.attname = 'd'); +INSERT INTO pg_statistic VALUES ('public.t_23709'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t_23709'::regclass and a.attname = 'd'), False::boolean, 0::real, 516::integer, -1::real, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 1058::oid, 1058::oid, 0::oid, 0::oid, 0::oid, 100::oid, 100::oid, 0::oid, 0::oid, 0::oid, NULL::real[], '{-0.012379769}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1000055-1000056", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1039938-1039939", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1079009-1079010", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1121403-1121404", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1161169-1161170", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1201985-1201986", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1241351-1241352", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1280869-1280870", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1323327-1323328", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1366390-1366391", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1403896-1403897", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1442894-1442895", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1480181-1480182", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1520854-1520855", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1561171-1561172", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1601424-1601425", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1638367-1638368", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1675369-1675370", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1712883-1712884", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1750382-1750383", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1789491-1789492", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1832670-1832671", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1875843-1875844", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1916071-1916072", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1957080-1957081", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1994218-1994219", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2032373-2032374", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2076341-2076342", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2116900-2116901", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2156687-2156688", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2190546-2190547", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2234754-2234755", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2277930-2277931", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2321538-2321539", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2361455-2361456", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2402352-2402353", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2442055-2442056", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2484034-2484035", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2522025-2522026", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2558095-2558096", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2601527-2601528", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2640213-2640214", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2680977-2680978", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2724149-2724150", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2762350-2762351", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2800646-2800647", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2845294-2845295", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2881583-2881584", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2917451-2917452", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2956886-2956887", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2991924-2991925", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3030003-3030004", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3069028-3069029", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3106523-3106524", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3146288-3146289", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3187820-3187821", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3222363-3222364", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3258110-3258111", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3297416-3297417", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3337454-3337455", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3377102-3377103", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3421496-3421497", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3464953-3464954", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3507221-3507222", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3550305-3550306", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3589452-3589453", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3628016-3628017", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3666894-3666895", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3707698-3707699", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3748300-3748301", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3788417-3788418", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3827335-3827336", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3871275-3871276", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3911157-3911158", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3950783-3950784", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx3992127-3992128", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx130634-130635", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx171211-171212", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx209534-209535", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx249222-249223", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx290371-290372", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx329771-329772", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx368614-368615", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx407680-407681", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx447321-447322", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx485195-485196", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx526616-526617", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx564912-564913", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx606052-606053", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx645311-645312", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx684504-684505", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx724798-724799", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx768473-768474", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx809308-809309", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx849006-849007", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx892251-892252", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx933676-933677", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx978369-978370", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx29536-29537", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx68001-68002", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx38-39"}', 'pg_catalog.bpchar'::regtype, -1)::anyarray, NULL, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.t_23709'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t_23709'::regclass and a.attname = 't'); +INSERT INTO pg_statistic VALUES ('public.t_23709'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t_23709'::regclass and a.attname = 't'), False::boolean, 0::real, 8::integer, -0.25548226::real, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 2062::oid, 2062::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, NULL::real[], '{0.004064531}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{"2022-11-08T13:28:00", "2022-11-15T00:08:00", "2022-11-21T15:01:00", "2022-11-28T18:36:00", "2022-12-05T08:22:00", "2022-12-12T12:13:00", "2022-12-19T12:43:00", "2022-12-26T16:51:00", "2023-01-02T15:51:00", "2023-01-09T12:58:00", "2023-01-16T07:25:00", "2023-01-23T00:18:00", "2023-01-30T03:14:00", "2023-02-06T06:38:00", "2023-02-13T13:44:00", "2023-02-20T02:18:00", "2023-02-27T06:56:00", "2023-03-06T10:53:00", "2023-03-14T05:59:00", "2023-03-21T15:19:00", "2023-03-28T18:38:00", "2023-04-04T15:46:00", "2023-04-11T04:23:00", "2023-04-18T04:58:00", "2023-04-25T13:33:00", "2023-05-02T11:24:00", "2023-05-09T19:18:00", "2023-05-16T04:52:00", "2023-05-23T08:30:00", "2023-05-30T08:23:00", "2023-06-05T22:20:00", "2023-06-13T06:03:00", "2023-06-20T02:28:00", "2023-06-27T13:46:00", "2023-07-03T20:27:00", "2023-07-10T13:16:00", "2023-07-17T11:02:00", "2023-07-24T03:21:00", "2023-07-30T14:29:00", "2023-08-06T15:20:00", "2023-08-13T02:21:00", "2023-08-20T04:22:00", "2023-08-26T19:43:00", "2023-09-02T18:03:00", "2023-09-10T11:21:00", "2023-09-17T01:35:00", "2023-09-24T06:05:00", "2023-09-30T21:26:00", "2023-10-07T14:49:00", "2023-10-14T17:06:00", "2023-10-21T06:29:00", "2023-10-28T17:32:00", "2023-11-04T13:07:00", "2023-11-11T02:39:00", "2023-11-18T00:37:00", "2023-11-25T10:50:00", "2023-12-02T23:11:00", "2023-12-10T07:07:00", "2023-12-16T15:01:00", "2023-12-23T20:00:00", "2023-12-30T18:55:00", "2024-01-06T21:46:00", "2024-01-13T11:17:00", "2024-01-20T18:21:00", "2024-01-27T06:02:00", "2024-02-03T07:32:00", "2024-02-10T05:17:00", "2024-02-17T08:02:00", "2024-02-24T12:20:00", "2024-03-02T11:16:00", "2024-03-09T12:18:00", "2024-03-16T20:18:00", "2024-03-24T10:38:00", "2024-03-31T02:55:00", "2024-04-07T06:15:00", "2024-04-13T23:40:00", "2024-04-21T06:58:00", "2024-04-28T05:04:00", "2024-05-05T01:14:00", "2024-05-11T17:18:00", "2024-05-18T03:29:00", "2024-05-25T03:01:00", "2024-05-31T04:19:00", "2024-06-06T23:21:00", "2024-06-13T12:49:00", "2024-06-21T03:19:00", "2024-06-27T23:55:00", "2024-07-04T21:08:00", "2024-07-11T03:22:00", "2024-07-18T13:12:00", "2024-07-25T05:24:00", "2024-08-01T16:05:00", "2024-08-07T23:46:00", "2024-08-15T17:58:00", "2024-08-21T22:54:00", "2024-08-28T19:33:00", "2024-09-05T01:36:00", "2024-09-12T07:31:00", "2024-09-19T07:48:00", "2024-09-25T20:50:00", "2024-10-02T23:22:00"}', 'pg_catalog.timestamp'::regtype, -1)::anyarray, NULL, NULL, NULL); + +update pg_yb_catalog_version set current_version=current_version+1 where db_oid=1; SET yb_non_ddl_txn_for_sys_tables_allowed = OFF; -SET yb_enable_base_scans_cost_model = ON; +-- Before fixing the issue, the optimizer would pick Index Scan of +-- `idx_t_23709_t_g_a` followed by Sort to perform the GROUP BY operation. +-- Sorting is expensive and this is a suboptimal plan. +-- After this fix, the optimizer should pick Index Only Scan of +-- `idx_t_23709_g_t_a` even if it involves skip-scan. +EXPLAIN (COSTS OFF) SELECT g, max(a) FROM t_23709 WHERE t <= '2024-09-30 00:00:00 +0000' GROUP BY g; -/*+ SeqScan(t_25682) */ EXPLAIN (DEBUG, COSTS OFF) SELECT * FROM t_25682 WHERE k1 > 0; -/*+ IndexScan(t_25682 t_25682_pkey) */EXPLAIN (DEBUG, COSTS OFF) SELECT * FROM t_25682 WHERE k1 > 0; -/*+ IndexScan(t_25682 t_25682_idx) */EXPLAIN (DEBUG, COSTS OFF) SELECT * FROM t_25682 WHERE v1 > 0; -/*+ IndexOnlyScan(t_25682 t_25682_idx) */EXPLAIN (DEBUG, COSTS OFF) SELECT v1 FROM t_25682 WHERE v1 > 0; +DROP TABLE t_23709; -------------------------------------------------------------------------------- -- #26235 : Primary Index scan cost higher than Sequential cost in small tables @@ -84,3 +107,4 @@ EXPLAIN (COSTS OFF) SELECT * FROM t_26235 WHERE k1 < 10; -- Without filter, seq scan should be preferred EXPLAIN (COSTS OFF) SELECT * FROM t_26235; + diff --git a/src/postgres/src/test/regress/sql/yb.orig.planner_taqo_basic.sql b/src/postgres/src/test/regress/sql/yb.orig.planner_taqo_basic.sql index 36efd96b9fee..d9e0b7e9b7d6 100644 --- a/src/postgres/src/test/regress/sql/yb.orig.planner_taqo_basic.sql +++ b/src/postgres/src/test/regress/sql/yb.orig.planner_taqo_basic.sql @@ -1,17 +1,15 @@ CREATE DATABASE taqo_basic with colocation = true; \c taqo_basic - SET statement_timeout = '7200s'; - -- CREATE QUERIES -CREATE TABLE t1 ( k1 int, k2 text, v1 int, v2 text, PRIMARY KEY (k1, k2) ); -CREATE INDEX ON t1 (v1, k2); -CREATE TABLE t2 ( k1 int, k2 text, v1 int, v2 text, PRIMARY KEY (k1, k2) ); -CREATE INDEX ON t2 (v1, k2); -CREATE TABLE t3 ( k1 int, k2 text, v1 int, v2 text, PRIMARY KEY (k1, k2) ); -CREATE INDEX ON t3 (v1, k2); -CREATE TABLE ts2 ( k1 int, k2 text, v1 int, v2 text, PRIMARY KEY (k1, k2) ); -CREATE TABLE ts3 ( k1 int, k2 text, v1 int, v2 text, PRIMARY KEY (k1) ); +CREATE TABLE t1 ( k1 int, k2 text, v1 int, v2 text, PRIMARY KEY (k1 ASC, k2 ASC) ); +CREATE INDEX ON t1(v1 ASC, k2 ASC); +CREATE TABLE t2 ( k1 int, k2 text, v1 int, v2 text, PRIMARY KEY (k1 ASC, k2 ASC) ); +CREATE INDEX ON t2(v1 ASC, k2 ASC); +CREATE TABLE t3 ( k1 int, k2 text, v1 int, v2 text, PRIMARY KEY (k1 ASC, k2 ASC) ); +CREATE INDEX ON t3(v1 ASC, k2 ASC); +CREATE TABLE ts2 ( k1 int, k2 text, v1 int, v2 text, PRIMARY KEY (k1 ASC, k2 ASC) ); +CREATE TABLE ts3 ( k1 int, k2 text, v1 int, v2 text, PRIMARY KEY (k1 ASC) ); SET yb_non_ddl_txn_for_sys_tables_allowed = ON; UPDATE pg_class SET reltuples = 500000, relpages = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't1' OR relname = 't1_pkey'); @@ -77,7 +75,7 @@ SET pg_hint_plan.message_level = debug; SET temp_file_limit="8182MB"; set yb_bnl_batch_size = 1024; set yb_enable_base_scans_cost_model = true; SET yb_enable_optimizer_statistics = true; --- Query Hash: 4a5906c534d0263f3485b086c801ee16 +-- Query Hash: 4a5906c534d0263f3485b086c801ee16 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT count(*) from t1; -- Query Hash: 6112acf82b05dfa95b3ea6f68b13656c EXPLAIN (COSTS OFF) SELECT sum(v1) from t1; @@ -117,21 +115,21 @@ EXPLAIN (COSTS OFF) SELECT ts3.k1, ts3.k2, ts3.v1, ts3.v2 FROM ts3 GROUP BY ts3. EXPLAIN (COSTS OFF) SELECT ts3.k1, ts3.k2, ts3.v1, ts3.v2 FROM ts3 GROUP BY ts3.k1, ts3.k2, ts3.v1, ts3.v2 LIMIT 1000000; -- Query Hash: 3033c42cb0fbecfd2293b94d2e4a1984 EXPLAIN (COSTS OFF) SELECT t1.k1, t1.k2, t2.v1, t2.v2 FROM t1 JOIN t2 ON t1.v1 = t2.v1 WHERE t1.k1 >= 8180 AND t1.k1 < 8190 AND t2.k1 >= 8180 AND t2.k1 < 8190 GROUP BY t1.k1, t1.k2, t2.v1, t2.v2; --- Query Hash: 6b3227d85138adae74589ec93fc2cec0 +-- Query Hash: 6b3227d85138adae74589ec93fc2cec0 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT t1.k1, t1.k2, t2.v1, t2.v2 FROM t1 JOIN t2 ON t1.v1 = t2.v1 WHERE t1.k1 >= 8100 AND t1.k1 < 8190 AND t2.k1 >= 8180 AND t2.k1 < 8400 GROUP BY t1.k1, t1.k2, t2.v1, t2.v2; -- Query Hash: ad263ed3286b608f8d74dd1f9467b5b9 EXPLAIN (COSTS OFF) SELECT ts2.k1, ts2.k2, ts3.v1, ts3.v2 FROM ts2 JOIN ts3 ON ts2.v1 = ts3.v1 WHERE ts2.k1 >= 17180 AND ts2.k1 < 17190 AND ts3.k1 >= 2180 AND ts3.k1 < 2190 GROUP BY ts2.k1, ts2.k2, ts3.v1, ts3.v2; -- Query Hash: 4d7663acc2dad77059a0155379f35220 EXPLAIN (COSTS OFF) SELECT ts2.k1, ts2.k2, ts3.v1, ts3.v2 FROM ts2 JOIN ts3 ON ts2.v1 = ts3.v1 WHERE ts2.k1 >= 17100 AND ts2.k1 < 17190 AND ts3.k1 >= 2180 AND ts3.k1 < 2400 GROUP BY ts2.k1, ts2.k2, ts3.v1, ts3.v2; --- Query Hash: 003c6b48b04c7bbba054d136373d2af5 +-- Query Hash: 003c6b48b04c7bbba054d136373d2af5 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT t1.k1, t1.k2, t2.v1, t2.v2 FROM t1 JOIN t2 on t1.k1 = t2.k1 WHERE t1.k1 >= 2500 AND t1.k1 < 25100 AND t2.k1 >= 2500 AND t2.k1 < 25100 GROUP BY t1.k1, t1.k2, t2.v1, t2.v2; -- Query Hash: f4c3ae5936d8b44d6edb8f71bdce9a6a EXPLAIN (COSTS OFF) SELECT t1.k1, t1.k2, t2.v1, t2.v2 FROM t1 JOIN t2 on t1.k1 = t2.k1 WHERE t1.k1 >= 24800 AND t1.k1 < 25100 AND t2.k1 >= 2500 AND t2.k1 < 25300 GROUP BY t1.k1, t1.k2, t2.v1, t2.v2; --- Query Hash: c30abbe30bbcbde00c04cbb9db1ef7b3 +-- Query Hash: c30abbe30bbcbde00c04cbb9db1ef7b3 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT ts2.k1, ts2.k2, ts3.v1, ts3.v2 FROM ts2 JOIN ts3 on ts2.k1 = ts3.k1 WHERE ts2.k1 >= 300 AND ts2.k1 < 3100 AND ts3.k1 >= 300 AND ts3.k1 < 3100 GROUP BY ts2.k1, ts2.k2, ts3.v1, ts3.v2; --- Query Hash: c6a0f9c3bd5faca02ba41d3bf617ac9c +-- Query Hash: c6a0f9c3bd5faca02ba41d3bf617ac9c , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT ts2.k1, ts2.k2, ts3.v1, ts3.v2 FROM ts2 JOIN ts3 on ts2.k1 = ts3.k1 WHERE ts2.k1 >= 2800 AND ts2.k1 < 3100 AND ts3.k1 >= 300 AND ts3.k1 < 3300 GROUP BY ts2.k1, ts2.k2, ts3.v1, ts3.v2; --- Query Hash: dc3c2df1562817b1fafc0a7cc376fcf6 , !BEST_PLAN_FOUND +-- Query Hash: dc3c2df1562817b1fafc0a7cc376fcf6 EXPLAIN (COSTS OFF) SELECT t1.k1, t1.k2, t2.v1, t2.v2 FROM t1 JOIN t2 ON t1.k1 = t2.k1 AND t1.k2 = t2.k2 WHERE t1.k1 > 1200 AND t1.k1 <= 1300 GROUP BY t1.k1, t1.k2, t2.v1, t2.v2; -- Query Hash: bc879331c1ee03f256aafc652c14f30e , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT t1.k1, t1.k2, t2.v1, t2.v2 FROM t1 JOIN t2 ON t1.k1 = t2.k1 AND t1.k2 = t2.k2 WHERE t1.k1 > 1200 AND t1.k1 <= 1500 GROUP BY t1.k1, t1.k2, t2.v1, t2.v2; @@ -185,7 +183,7 @@ EXPLAIN (COSTS OFF) SELECT * FROM t2 WHERE v1 IS NOT NULL ORDER BY k1 ASC LIMIT EXPLAIN (COSTS OFF) SELECT * FROM t2 WHERE v1 IS NOT NULL ORDER BY k1 ASC LIMIT 1000000; -- Query Hash: 412d5b94165936cf16bbce483cd9fa4e EXPLAIN (COSTS OFF) SELECT * FROM t3 WHERE v1 IS NOT NULL ORDER BY k1 ASC LIMIT 100000; --- Query Hash: e1f0758a638322dc28632de93745f51b , !BEST_PLAN_FOUND +-- Query Hash: e1f0758a638322dc28632de93745f51b EXPLAIN (COSTS OFF) SELECT * FROM t3 WHERE v1 IS NOT NULL ORDER BY k1 ASC LIMIT 1000000; -- Query Hash: e29f8f19d78b4f70f162d5553fa8ba49 EXPLAIN (COSTS OFF) SELECT * FROM ts2 WHERE v1 IS NOT NULL ORDER BY k1 ASC LIMIT 100000; @@ -239,7 +237,7 @@ EXPLAIN (COSTS OFF) SELECT * FROM ts3 WHERE v1 IS NULL ORDER BY k1 ASC LIMIT 100 EXPLAIN (COSTS OFF) SELECT * FROM t1 WHERE v1 IS NULL AND k1 >= 5500 ORDER BY k1 ASC LIMIT 10000; -- Query Hash: 4f4aab1cf5b3d80931ec6ebfdbec0683 EXPLAIN (COSTS OFF) SELECT * FROM t1 WHERE v1 IS NULL AND k1 >= 5500 ORDER BY k1 ASC LIMIT 100000; --- Query Hash: 034e10caeafa420f62d5945808a6c2d6 , !BEST_PLAN_FOUND +-- Query Hash: 034e10caeafa420f62d5945808a6c2d6 EXPLAIN (COSTS OFF) SELECT * FROM t2 WHERE v1 IS NULL AND k1 >= 5500 ORDER BY k1 ASC LIMIT 10000; -- Query Hash: 850da1de1af487f8642d4823a4d3340b EXPLAIN (COSTS OFF) SELECT * FROM t2 WHERE v1 IS NULL AND k1 >= 5500 ORDER BY k1 ASC LIMIT 100000; @@ -257,7 +255,7 @@ EXPLAIN (COSTS OFF) SELECT * FROM ts3 WHERE v1 IS NULL AND k1 >= 5500 ORDER BY k EXPLAIN (COSTS OFF) SELECT * FROM ts3 WHERE v1 IS NULL AND k1 >= 5500 ORDER BY k1 ASC LIMIT 100000; -- Query Hash: 626b95ba40dc7167a1c04f809c7c5c48 EXPLAIN (COSTS OFF) SELECT * FROM t1 JOIN t2 ON t1.v1 = t2.v1 WHERE t1.k1 >= 8180 AND t1.k1 < 8190 AND t2.k1 >= 8180 AND t2.k1 < 8190; --- Query Hash: 015d08a75cfa11b27675cd3a2cadd29f +-- Query Hash: 015d08a75cfa11b27675cd3a2cadd29f , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM t1 JOIN t2 ON t1.v1 = t2.v1 WHERE t1.k1 >= 8100 AND t1.k1 < 8190 AND t2.k1 >= 8180 AND t2.k1 < 8400; -- Query Hash: c482874e326ef98bec47d576e455a79a EXPLAIN (COSTS OFF) SELECT * FROM t2 JOIN ts2 ON t2.v1 = ts2.v1 WHERE t2.k1 >= 17180 AND t2.k1 < 17190 AND ts2.k1 >= 2180 AND ts2.k1 < 2190; @@ -271,9 +269,9 @@ EXPLAIN (COSTS OFF) SELECT * FROM t2 JOIN ts3 ON t2.v1 = ts3.v1 WHERE t2.k1 >= 1 EXPLAIN (COSTS OFF) SELECT * FROM ts2 JOIN ts3 ON ts2.v1 = ts3.v1 WHERE ts2.k1 >= 17180 AND ts2.k1 < 17190 AND ts3.k1 >= 2180 AND ts3.k1 < 2190; -- Query Hash: 3cba01104d9087b3b706e5a2aee9835a EXPLAIN (COSTS OFF) SELECT * FROM ts2 JOIN ts3 ON ts2.v1 = ts3.v1 WHERE ts2.k1 >= 17100 AND ts2.k1 < 17190 AND ts3.k1 >= 2180 AND ts3.k1 < 2400; --- Query Hash: 67a398d13515828ca75aafd9ef4f0cd6 +-- Query Hash: 67a398d13515828ca75aafd9ef4f0cd6 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM t1 JOIN t2 ON t1.k1 = t2.k1 WHERE t1.k1 >= 8180 AND t1.k1 < 8190 AND t2.k1 >= 8180 AND t2.k1 < 8190; --- Query Hash: a5d05b739f8b208c1acd623e5b1007a0 +-- Query Hash: a5d05b739f8b208c1acd623e5b1007a0 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM t1 JOIN t2 ON t1.k1 = t2.k1 WHERE t1.k1 >= 8100 AND t1.k1 < 8190 AND t2.k1 >= 8180 AND t2.k1 < 8400; -- Query Hash: 6a06d52011db1ae005dedac6c865783e EXPLAIN (COSTS OFF) SELECT * FROM t2 JOIN ts2 ON t2.k1 = ts2.k1 WHERE t2.k1 >= 17180 AND t2.k1 < 17190 AND ts2.k1 >= 2180 AND ts2.k1 < 2190; @@ -281,19 +279,19 @@ EXPLAIN (COSTS OFF) SELECT * FROM t2 JOIN ts2 ON t2.k1 = ts2.k1 WHERE t2.k1 >= 1 EXPLAIN (COSTS OFF) SELECT * FROM t2 JOIN ts2 ON t2.k1 = ts2.k1 WHERE t2.k1 >= 17100 AND t2.k1 < 17190 AND ts2.k1 >= 2180 AND ts2.k1 < 2400; -- Query Hash: af1b015a4028d88a05532292760e9eb0 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM t2 JOIN ts3 ON t2.k1 = ts3.k1 WHERE t2.k1 >= 17180 AND t2.k1 < 17190 AND ts3.k1 >= 2180 AND ts3.k1 < 2190; --- Query Hash: bdda96c8e8353aea4e11dad3fe771ca5 , !BEST_PLAN_FOUND +-- Query Hash: bdda96c8e8353aea4e11dad3fe771ca5 EXPLAIN (COSTS OFF) SELECT * FROM t2 JOIN ts3 ON t2.k1 = ts3.k1 WHERE t2.k1 >= 17100 AND t2.k1 < 17190 AND ts3.k1 >= 2180 AND ts3.k1 < 2400; --- Query Hash: 831826be5a1c72675d586f8c89d82a3e , !BEST_PLAN_FOUND +-- Query Hash: 831826be5a1c72675d586f8c89d82a3e EXPLAIN (COSTS OFF) SELECT * FROM ts2 JOIN ts3 ON ts2.k1 = ts3.k1 WHERE ts2.k1 >= 17180 AND ts2.k1 < 17190 AND ts3.k1 >= 2180 AND ts3.k1 < 2190; --- Query Hash: e96e59d0ba7e168043c8b85dc7a892bc , !BEST_PLAN_FOUND +-- Query Hash: e96e59d0ba7e168043c8b85dc7a892bc EXPLAIN (COSTS OFF) SELECT * FROM ts2 JOIN ts3 ON ts2.k1 = ts3.k1 WHERE ts2.k1 >= 17100 AND ts2.k1 < 17190 AND ts3.k1 >= 2180 AND ts3.k1 < 2400; --- Query Hash: 81773f0f120048d4f212f43388f5270b +-- Query Hash: 81773f0f120048d4f212f43388f5270b , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM t1 JOIN t2 on t1.k1 = t2.k1 WHERE t1.k1 >= 2500 AND t1.k1 < 25100 AND t2.k1 >= 2500 AND t2.k1 < 25100; -- Query Hash: 0603d5bafa72561c9846b17453cc7632 EXPLAIN (COSTS OFF) SELECT * FROM t1 JOIN t2 on t1.k1 = t2.k1 WHERE t1.k1 >= 24800 AND t1.k1 < 25100 AND t2.k1 >= 2500 AND t2.k1 < 25300; --- Query Hash: 2348afbf16c55deb01ddb021bfea1c58 +-- Query Hash: 2348afbf16c55deb01ddb021bfea1c58 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM ts2 JOIN ts3 on ts2.k1 = ts3.k1 WHERE ts2.k1 >= 300 AND ts2.k1 < 3100 AND ts3.k1 >= 300 AND ts3.k1 < 3100; --- Query Hash: e398453804fdc748d347f1b45978cf28 +-- Query Hash: e398453804fdc748d347f1b45978cf28 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM ts2 JOIN ts3 on ts2.k1 = ts3.k1 WHERE ts2.k1 >= 2800 AND ts2.k1 < 3100 AND ts3.k1 >= 300 AND ts3.k1 < 3300; -- Query Hash: 74a078943d92682a90dfe344a6302d66 EXPLAIN (COSTS OFF) SELECT * FROM t1 JOIN t2 ON t1.v1 = t2.v1 WHERE t1.k1 in (810, 8180, 820); @@ -391,7 +389,7 @@ EXPLAIN (COSTS OFF) SELECT * FROM t2 FULL JOIN ts3 ON t2.k1 = ts3.k1 WHERE t2.k1 EXPLAIN (COSTS OFF) SELECT * FROM ts2 FULL JOIN ts3 ON ts2.k1 = ts3.k1 WHERE ts2.k1 in (810, 8180, 820); -- Query Hash: 70db47c1b66896978925eeaa515cc432 EXPLAIN (COSTS OFF) SELECT * FROM ts2 FULL JOIN ts3 ON ts2.k1 = ts3.k1 WHERE ts2.k1 in (810, 8180, 820, 830, 8380, 840, 850, 8580, 860, 870, 8780, 880, 890, 8980,900); --- Query Hash: 4811fe69eff77a61861cf9f9eb8d3ea2 , !BEST_PLAN_FOUND +-- Query Hash: 4811fe69eff77a61861cf9f9eb8d3ea2 EXPLAIN (COSTS OFF) SELECT * FROM t1 JOIN t2 ON t1.k1 = t2.k1 AND t1.k2 = t2.k2 WHERE t1.k1 > 1200 AND t1.k1 <= 1300; -- Query Hash: f06194cd76e3205918b30fb25f25c329 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM t1 JOIN t2 ON t1.k1 = t2.k1 AND t1.k2 = t2.k2 WHERE t1.k1 > 1200 AND t1.k1 <= 1500; @@ -455,7 +453,7 @@ EXPLAIN (COSTS OFF) SELECT * FROM t1 JOIN t2 ON t1.k1 = t2.k1 WHERE t1.k1 = 8100 EXPLAIN (COSTS OFF) SELECT * FROM t2 JOIN ts3 ON t2.k1 = ts3.k1 WHERE t2.k1 = 17100; -- Query Hash: 2323837da7a3f50112aa11f0885aedef EXPLAIN (COSTS OFF) SELECT * FROM t2 JOIN ts3 ON t2.k1 = ts3.k1 WHERE t2.k1 = 17190; --- Query Hash: a2df06408c6693370e9496385d484e43 +-- Query Hash: a2df06408c6693370e9496385d484e43 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM ts2 JOIN ts3 ON ts2.k1 = ts3.k1 WHERE ts2.k1 = 17100; -- Query Hash: 02bf894ce4a174db07df939aae1c2732 EXPLAIN (COSTS OFF) SELECT * FROM ts2 JOIN ts3 ON ts2.k1 = ts3.k1 WHERE ts2.k1 = 17190; @@ -463,13 +461,13 @@ EXPLAIN (COSTS OFF) SELECT * FROM ts2 JOIN ts3 ON ts2.k1 = ts3.k1 WHERE ts2.k1 = EXPLAIN (COSTS OFF) SELECT * FROM t1 LEFT JOIN t2 ON t1.k1 = t2.k1 WHERE t1.k1 = 8180; -- Query Hash: fbbee0571ad6227ed6c0fd76d6f71ed2 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM t1 LEFT JOIN t2 ON t1.k1 = t2.k1 WHERE t1.k1 = 8100; --- Query Hash: 8796234e6953bb18190ccc4dce6cdaf4 , !BEST_PLAN_FOUND +-- Query Hash: 8796234e6953bb18190ccc4dce6cdaf4 EXPLAIN (COSTS OFF) SELECT * FROM t2 LEFT JOIN ts3 ON t2.k1 = ts3.k1 WHERE t2.k1 = 17100; --- Query Hash: e81cec91a1a34edd7d8b00b63a514a80 , !BEST_PLAN_FOUND +-- Query Hash: e81cec91a1a34edd7d8b00b63a514a80 EXPLAIN (COSTS OFF) SELECT * FROM t2 LEFT JOIN ts3 ON t2.k1 = ts3.k1 WHERE t2.k1 = 17190; --- Query Hash: eaaf59e47289b237352b7b5d95cce501 , !BEST_PLAN_FOUND +-- Query Hash: eaaf59e47289b237352b7b5d95cce501 EXPLAIN (COSTS OFF) SELECT * FROM ts2 LEFT JOIN ts3 ON ts2.k1 = ts3.k1 WHERE ts2.k1 = 17100; --- Query Hash: 008f41cdc4376563f66cf9396a182e59 , !BEST_PLAN_FOUND +-- Query Hash: 008f41cdc4376563f66cf9396a182e59 EXPLAIN (COSTS OFF) SELECT * FROM ts2 LEFT JOIN ts3 ON ts2.k1 = ts3.k1 WHERE ts2.k1 = 17190; -- Query Hash: 811818fbca78f78be2f3a5652a100e59 EXPLAIN (COSTS OFF) SELECT * FROM t1 RIGHT JOIN t2 ON t1.k1 = t2.k1 WHERE t1.k1 = 8180; @@ -487,13 +485,13 @@ EXPLAIN (COSTS OFF) SELECT * FROM ts2 RIGHT JOIN ts3 ON ts2.k1 = ts3.k1 WHERE ts EXPLAIN (COSTS OFF) SELECT * FROM t1 FULL JOIN t2 ON t1.k1 = t2.k1 WHERE t1.k1 = 8180; -- Query Hash: d757aef455a1b767898c144d044cf647 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM t1 FULL JOIN t2 ON t1.k1 = t2.k1 WHERE t1.k1 = 8100; --- Query Hash: 5d288c216cfdb064f2dc76c3e79294c8 , !BEST_PLAN_FOUND +-- Query Hash: 5d288c216cfdb064f2dc76c3e79294c8 EXPLAIN (COSTS OFF) SELECT * FROM t2 FULL JOIN ts3 ON t2.k1 = ts3.k1 WHERE t2.k1 = 17100; --- Query Hash: 901bffa08215b84cea2c3bfa31ac8b87 , !BEST_PLAN_FOUND +-- Query Hash: 901bffa08215b84cea2c3bfa31ac8b87 EXPLAIN (COSTS OFF) SELECT * FROM t2 FULL JOIN ts3 ON t2.k1 = ts3.k1 WHERE t2.k1 = 17190; --- Query Hash: fbfe3e52254ee6c2f4bd267ff86bfaba , !BEST_PLAN_FOUND +-- Query Hash: fbfe3e52254ee6c2f4bd267ff86bfaba EXPLAIN (COSTS OFF) SELECT * FROM ts2 FULL JOIN ts3 ON ts2.k1 = ts3.k1 WHERE ts2.k1 = 17100; --- Query Hash: 9bf2a9dbbeedc0548f40bd06a3692e67 , !BEST_PLAN_FOUND +-- Query Hash: 9bf2a9dbbeedc0548f40bd06a3692e67 EXPLAIN (COSTS OFF) SELECT * FROM ts2 FULL JOIN ts3 ON ts2.k1 = ts3.k1 WHERE ts2.k1 = 17190; -- Query Hash: a2e07bed780be8bac48f9fd4c6555748 EXPLAIN (COSTS OFF) SELECT t1.k1, t1.k2, t1.v1, t1.v2 FROM t1 ORDER BY t1.k1, t1.v1 LIMIT 100000; @@ -541,13 +539,13 @@ EXPLAIN (COSTS OFF) SELECT t / 100 FROM generate_series(1, 1000000) AS t ORDER B EXPLAIN (COSTS OFF) SELECT SUM(t % 100), count(t / 100) FROM generate_series(1, 1000000) AS t; -- Query Hash: bf8374debb24d4e6ecea0be89aa02f8b EXPLAIN (COSTS OFF) SELECT |/ t, 'foo ' || t, now() FROM generate_series(1, 1000000) AS t; --- Query Hash: 01edcc6ec683ece25b885d57c339cd39 , !BEST_PLAN_FOUND +-- Query Hash: 01edcc6ec683ece25b885d57c339cd39 EXPLAIN (COSTS OFF) SELECT * FROM t1 WHERE v1 > 20000 ORDER BY v1 ASC LIMIT 100000; --- Query Hash: 6704caccd64f9bb3e810f632c9316173 +-- Query Hash: 6704caccd64f9bb3e810f632c9316173 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM t1 WHERE v1 > 20000 ORDER BY v1 ASC LIMIT 1000000; --- Query Hash: cb5b7bd89976d810fb85e3d66c41d063 , !BEST_PLAN_FOUND +-- Query Hash: cb5b7bd89976d810fb85e3d66c41d063 EXPLAIN (COSTS OFF) SELECT * FROM t2 WHERE v1 > 20000 ORDER BY v1 ASC LIMIT 100000; --- Query Hash: 1262567af96df3c19c65ce883b2adad9 +-- Query Hash: 1262567af96df3c19c65ce883b2adad9 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM t2 WHERE v1 > 20000 ORDER BY v1 ASC LIMIT 1000000; -- Query Hash: f62c7ba49634af52f3014a3ee936a2ce EXPLAIN (COSTS OFF) SELECT * FROM ts2 WHERE v1 > 20000 ORDER BY v1 ASC LIMIT 100000; @@ -583,7 +581,7 @@ EXPLAIN (COSTS OFF) SELECT * FROM t2 LIMIT 100000; EXPLAIN (COSTS OFF) SELECT * FROM t2 LIMIT 1000000; -- Query Hash: 9ae25ae609c32fc0179446c6dc7d0048 EXPLAIN (COSTS OFF) SELECT * FROM t3 LIMIT 100000; --- Query Hash: dcc81c5d4a9389796fbe4288511d92f6 , !BEST_PLAN_FOUND +-- Query Hash: dcc81c5d4a9389796fbe4288511d92f6 EXPLAIN (COSTS OFF) SELECT * FROM t3 LIMIT 1000000; -- Query Hash: 007df28147aa0c46fc92345fb3542a5d EXPLAIN (COSTS OFF) SELECT * FROM ts2 LIMIT 100000; @@ -618,4 +616,4 @@ DROP TABLE IF EXISTS t1 CASCADE; DROP TABLE IF EXISTS t2 CASCADE; DROP TABLE IF EXISTS t3 CASCADE; DROP TABLE IF EXISTS ts2 CASCADE; -DROP TABLE IF EXISTS ts3 CASCADE; \ No newline at end of file +DROP TABLE IF EXISTS ts3 CASCADE; diff --git a/src/postgres/src/test/regress/sql/yb.orig.planner_taqo_seek_next_estimation.sql b/src/postgres/src/test/regress/sql/yb.orig.planner_taqo_seek_next_estimation.sql index ee0ab0af0f19..c3f38bf97e0c 100644 --- a/src/postgres/src/test/regress/sql/yb.orig.planner_taqo_seek_next_estimation.sql +++ b/src/postgres/src/test/regress/sql/yb.orig.planner_taqo_seek_next_estimation.sql @@ -1,58 +1,97 @@ CREATE DATABASE taqo_seek_next_estimation with colocation = true; \c taqo_seek_next_estimation SET statement_timeout = '7200s'; -SET enable_bitmapscan = false; -- TODO(#20573): update bitmap scan cost model -- CREATE QUERIES create table t1 (k1 int, PRIMARY KEY (k1 asc)); create table t2 (k1 int, k2 int, PRIMARY KEY (k1 asc, k2 asc)); create table t3 (k1 int, k2 int, k3 int, PRIMARY KEY (k1 asc, k2 asc, k3 asc)); create table t4 (k1 int, k2 int, k3 int, k4 int, PRIMARY KEY (k1 asc, k2 asc, k3 asc, k4 asc)); create table t5 (k1 int, k2 int, k3 int, k4 int, k5 int, PRIMARY KEY (k1 asc, k2 asc, k3 asc, k4 asc, k5 asc)); +create table tcor_1 (k1 int, k2 int, k3 int, k4 int); +create index tcor_1_idx on tcor_1 (k1 asc, k2 asc, k3 asc, k4 asc); +create statistics stx_tcor_1 on k1, k2, k3, k4 FROM tcor_1; +create table tcor_2 (k1 int, k2 int, k3 int, k4 int); +create index tcor_2_idx on tcor_2 (k1 asc, k2 asc, k3 asc, k4 asc); +create statistics stx_tcor_2 on k1, k2, k3, k4 FROM tcor_2; +CREATE TABLE tcor_3 (k1 INT, k2 INT, k3 INT); +CREATE INDEX tcor_3_idx on tcor_3 (k1 ASC, k2 ASC, k3 ASC); +CREATE STATISTICS stx_tcor_3 on k1, k2, k3 FROM tcor_3; SET yb_non_ddl_txn_for_sys_tables_allowed = ON; -UPDATE pg_class SET reltuples = 20, relpages = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't1' OR relname = 't1_pkey'); -UPDATE pg_class SET reltuples = 20, relpages = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't1_pkey' OR relname = 't1_pkey_pkey'); -UPDATE pg_class SET reltuples = 400, relpages = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't2' OR relname = 't2_pkey'); -UPDATE pg_class SET reltuples = 400, relpages = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't2_pkey' OR relname = 't2_pkey_pkey'); -UPDATE pg_class SET reltuples = 8000, relpages = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't3' OR relname = 't3_pkey'); -UPDATE pg_class SET reltuples = 8000, relpages = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't3_pkey' OR relname = 't3_pkey_pkey'); -UPDATE pg_class SET reltuples = 160000, relpages = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't4' OR relname = 't4_pkey'); -UPDATE pg_class SET reltuples = 160000, relpages = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't4_pkey' OR relname = 't4_pkey_pkey'); -UPDATE pg_class SET reltuples = 3200000, relpages = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't5' OR relname = 't5_pkey'); -UPDATE pg_class SET reltuples = 3200000, relpages = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't5_pkey' OR relname = 't5_pkey_pkey'); + +UPDATE pg_class SET reltuples = 20, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't1' OR relname = 't1_pkey'); +UPDATE pg_class SET reltuples = 20, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't1_pkey' OR relname = 't1_pkey_pkey'); +UPDATE pg_class SET reltuples = 400, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't2' OR relname = 't2_pkey'); +UPDATE pg_class SET reltuples = 400, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't2_pkey' OR relname = 't2_pkey_pkey'); +UPDATE pg_class SET reltuples = 8000, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't3' OR relname = 't3_pkey'); +UPDATE pg_class SET reltuples = 8000, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't3_pkey' OR relname = 't3_pkey_pkey'); +UPDATE pg_class SET reltuples = 160000, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't4' OR relname = 't4_pkey'); +UPDATE pg_class SET reltuples = 160000, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't4_pkey' OR relname = 't4_pkey_pkey'); +UPDATE pg_class SET reltuples = 3200000.0, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't5' OR relname = 't5_pkey'); +UPDATE pg_class SET reltuples = 3200000.0, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 't5_pkey' OR relname = 't5_pkey_pkey'); +UPDATE pg_class SET reltuples = 12500, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 'tcor_1' OR relname = 'tcor_1_pkey'); +UPDATE pg_class SET reltuples = 12500, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 'tcor_1_idx' OR relname = 'tcor_1_idx_pkey'); +UPDATE pg_class SET reltuples = 100000, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 'tcor_2' OR relname = 'tcor_2_pkey'); +UPDATE pg_class SET reltuples = 100000, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 'tcor_2_idx' OR relname = 'tcor_2_idx_pkey'); +UPDATE pg_class SET reltuples = 171700, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 'tcor_3' OR relname = 'tcor_3_pkey'); +UPDATE pg_class SET reltuples = 171700, relpages = 0, relallvisible = 0 WHERE relnamespace = 'public'::regnamespace AND (relname = 'tcor_3_idx' OR relname = 'tcor_3_idx_pkey'); + DELETE FROM pg_statistic WHERE starelid = 'public.t1'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t1'::regclass and a.attname = 'k1'); -INSERT INTO pg_statistic VALUES ('public.t1'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t1'::regclass and a.attname = 'k1'), False::boolean, 0::real, 4::integer, -1::real, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 97::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, NULL::real[], '{1}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t1'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t1'::regclass and a.attname = 'k1'), False::boolean, 0::real, 4::integer, -1::real, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 97::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, NULL::real[], '{1}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t2'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t2'::regclass and a.attname = 'k1'); -INSERT INTO pg_statistic VALUES ('public.t2'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t2'::regclass and a.attname = 'k1'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007}'::real[], '{1}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t2'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t2'::regclass and a.attname = 'k1'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05}'::real[], '{1}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t2'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t2'::regclass and a.attname = 'k2'); -INSERT INTO pg_statistic VALUES ('public.t2'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t2'::regclass and a.attname = 'k2'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007}'::real[], '{0.0997506231}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t2'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t2'::regclass and a.attname = 'k2'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05}'::real[], '{0.09975062}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t3'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t3'::regclass and a.attname = 'k1'); -INSERT INTO pg_statistic VALUES ('public.t3'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t3'::regclass and a.attname = 'k1'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007}'::real[], '{1}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t3'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t3'::regclass and a.attname = 'k1'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05}'::real[], '{1}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t3'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t3'::regclass and a.attname = 'k2'); -INSERT INTO pg_statistic VALUES ('public.t3'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t3'::regclass and a.attname = 'k2'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007}'::real[], '{0.0997562334}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t3'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t3'::regclass and a.attname = 'k2'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05}'::real[], '{0.09975623}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t3'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t3'::regclass and a.attname = 'k3'); -INSERT INTO pg_statistic VALUES ('public.t3'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t3'::regclass and a.attname = 'k3'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007, 0.0500000007}'::real[], '{0.0524934381}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t3'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t3'::regclass and a.attname = 'k3'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05}'::real[], '{0.052493438}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t4'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t4'::regclass and a.attname = 'k1'); -INSERT INTO pg_statistic VALUES ('public.t4'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t4'::regclass and a.attname = 'k1'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0522999987, 0.0517666675, 0.0517333336, 0.0517333336, 0.0507999994, 0.0504666679, 0.0503666662, 0.0503333323, 0.0502333343, 0.0501333326, 0.0501333326, 0.0499333329, 0.0496666655, 0.0495666675, 0.0494999997, 0.0493666679, 0.0482000001, 0.0481333323, 0.0479666665, 0.0476666652}'::real[], '{0.074490793}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{6, 5, 2, 12, 11, 17, 4, 10, 16, 8, 18, 7, 9, 13, 19, 3, 20, 14, 15, 1}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t4'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t4'::regclass and a.attname = 'k1'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.051733334, 0.051533334, 0.051333334, 0.051266667, 0.050933335, 0.0508, 0.050533332, 0.050533332, 0.050466668, 0.050433334, 0.0502, 0.0502, 0.049933333, 0.0498, 0.049266666, 0.0488, 0.048733335, 0.048333332, 0.048033334, 0.047133334}'::real[], '{1}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{8, 13, 19, 3, 1, 10, 5, 11, 16, 18, 6, 20, 4, 9, 14, 7, 17, 12, 15, 2}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t4'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t4'::regclass and a.attname = 'k2'); -INSERT INTO pg_statistic VALUES ('public.t4'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t4'::regclass and a.attname = 'k2'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0514666662, 0.0512333326, 0.0510333329, 0.0508666672, 0.0508333333, 0.0507999994, 0.0507666655, 0.0505666658, 0.0505000018, 0.0500999987, 0.0500333346, 0.0500000007, 0.0500000007, 0.0498000011, 0.0494666658, 0.0492333323, 0.0491666682, 0.0485000014, 0.0482666679, 0.0473666675}'::real[], '{0.0732290298}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{5, 18, 8, 1, 3, 7, 11, 13, 9, 2, 20, 4, 10, 14, 16, 12, 17, 19, 6, 15}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t4'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t4'::regclass and a.attname = 'k2'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.051933333, 0.0519, 0.0516, 0.051533334, 0.050766665, 0.050766665, 0.050333332, 0.0503, 0.0501, 0.0501, 0.049966667, 0.0499, 0.049733333, 0.049233332, 0.049133334, 0.049133334, 0.0488, 0.048566666, 0.048466668, 0.047733333}'::real[], '{0.10424456}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{16, 14, 6, 15, 2, 17, 4, 19, 1, 5, 20, 13, 12, 18, 3, 9, 7, 8, 10, 11}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t4'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t4'::regclass and a.attname = 'k3'); -INSERT INTO pg_statistic VALUES ('public.t4'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t4'::regclass and a.attname = 'k3'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0518999994, 0.0513666682, 0.0511666648, 0.0509666651, 0.0507333316, 0.0505999997, 0.0505000018, 0.0500666648, 0.0500000007, 0.0499666668, 0.0498666652, 0.0498666652, 0.049833335, 0.0498000011, 0.0496999994, 0.0496333316, 0.0495333336, 0.0491666682, 0.0480000004, 0.0473333336}'::real[], '{0.0539749861}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{5, 4, 16, 3, 20, 14, 11, 12, 7, 8, 15, 19, 2, 9, 13, 17, 10, 18, 1, 6}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t4'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t4'::regclass and a.attname = 'k3'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0528, 0.051633332, 0.0516, 0.051033333, 0.051, 0.0508, 0.050366666, 0.0503, 0.0501, 0.050066665, 0.049866665, 0.0497, 0.04963333, 0.0496, 0.0491, 0.0489, 0.0488, 0.048733335, 0.048133332, 0.047833335}'::real[], '{0.05457672}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{13, 6, 4, 15, 1, 16, 17, 20, 11, 9, 19, 18, 14, 8, 7, 5, 10, 3, 2, 12}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t4'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t4'::regclass and a.attname = 'k4'); -INSERT INTO pg_statistic VALUES ('public.t4'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t4'::regclass and a.attname = 'k4'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0513999984, 0.0511999987, 0.0510666668, 0.050999999, 0.0505000018, 0.0503333323, 0.0502999984, 0.0502666682, 0.0502000004, 0.0499666668, 0.0498999991, 0.0496999994, 0.0496000014, 0.0496000014, 0.0494999997, 0.0493666679, 0.0493000001, 0.0491000004, 0.0489333346, 0.0487666652}'::real[], '{0.0537266955}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{9, 17, 3, 8, 20, 15, 1, 18, 10, 2, 4, 19, 5, 16, 12, 11, 13, 14, 6, 7}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t4'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t4'::regclass and a.attname = 'k4'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.052633334, 0.051633332, 0.051066667, 0.050766665, 0.050633334, 0.050633334, 0.050533332, 0.050466668, 0.050466668, 0.0503, 0.050166667, 0.0499, 0.0498, 0.049733333, 0.0496, 0.0493, 0.0489, 0.0488, 0.047733333, 0.046933334}'::real[], '{0.047732644}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 8, 13, 2, 4, 5, 20, 3, 14, 16, 18, 15, 7, 17, 6, 10, 9, 19, 12, 11}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t5'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k1'); -INSERT INTO pg_statistic VALUES ('public.t5'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k1'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0527000017, 0.0525666662, 0.0516333319, 0.0515000001, 0.0513999984, 0.0513999984, 0.0513000004, 0.050433334, 0.0504000001, 0.0502333343, 0.0501666665, 0.0496999994, 0.0495333336, 0.0492666662, 0.0491999984, 0.0489999987, 0.0487000011, 0.0472999997, 0.0468333326, 0.0467333347}'::real[], '{0.0426800177}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{18, 4, 3, 2, 1, 17, 9, 8, 12, 7, 10, 6, 19, 15, 11, 16, 5, 20, 13, 14}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t5'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k1'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.052233335, 0.0516, 0.051433332, 0.0514, 0.0508, 0.0508, 0.05073333, 0.050633334, 0.050633334, 0.050633334, 0.050333332, 0.050166667, 0.049866665, 0.049833335, 0.049766667, 0.048566666, 0.0485, 0.047733333, 0.047666665, 0.046666667}'::real[], '{1}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{10, 4, 2, 5, 13, 15, 19, 7, 14, 16, 3, 11, 9, 12, 17, 1, 18, 20, 8, 6}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t5'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k2'); -INSERT INTO pg_statistic VALUES ('public.t5'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k2'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0526666678, 0.0524000004, 0.0513666682, 0.0510333329, 0.0509666651, 0.050433334, 0.0504000001, 0.0502666682, 0.0502666682, 0.0502333343, 0.0499333329, 0.0496666655, 0.0494333319, 0.049333334, 0.049333334, 0.0492666662, 0.0486666672, 0.0485333316, 0.0481333323, 0.0476666652}'::real[], '{0.0537041165}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{17, 7, 15, 20, 16, 6, 2, 4, 11, 3, 10, 5, 14, 8, 18, 12, 9, 13, 19, 1}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t5'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k2'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.051966667, 0.051933333, 0.0518, 0.050966665, 0.050933335, 0.0507, 0.0507, 0.050366666, 0.050133333, 0.049866665, 0.0498, 0.049533334, 0.0495, 0.049433332, 0.049266666, 0.049233332, 0.0492, 0.049133334, 0.047966667, 0.047566667}'::real[], '{0.11118402}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{16, 18, 13, 5, 14, 6, 10, 19, 8, 7, 17, 2, 9, 20, 12, 4, 1, 11, 15, 3}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t5'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k3'); -INSERT INTO pg_statistic VALUES ('public.t5'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k3'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0528333336, 0.0521666668, 0.0510666668, 0.050933335, 0.0508666672, 0.0508333333, 0.0507333316, 0.0507000014, 0.0506666675, 0.0499333329, 0.0499333329, 0.0498000011, 0.0496666655, 0.0494666658, 0.0489000008, 0.0489000008, 0.0487999991, 0.0483999997, 0.0478666648, 0.0475333333}'::real[], '{0.0434316583}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{7, 17, 18, 10, 9, 1, 5, 6, 13, 3, 4, 16, 19, 11, 15, 20, 8, 14, 2, 12}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t5'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k3'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0528, 0.0521, 0.052, 0.0515, 0.050866667, 0.050633334, 0.0503, 0.050233334, 0.050166667, 0.0501, 0.049966667, 0.0495, 0.0494, 0.0493, 0.0492, 0.048933335, 0.048766665, 0.0484, 0.048333332, 0.0475}'::real[], '{0.04169254}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{6, 20, 8, 10, 19, 17, 13, 9, 7, 12, 1, 2, 14, 11, 16, 18, 3, 5, 15, 4}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t5'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k4'); -INSERT INTO pg_statistic VALUES ('public.t5'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k4'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0527000017, 0.0526000001, 0.0513000004, 0.0512333326, 0.0510666668, 0.050999999, 0.0509000011, 0.0508333333, 0.0507000014, 0.0506666675, 0.0501666665, 0.0499666668, 0.0496000014, 0.0494666658, 0.0493000001, 0.0489666648, 0.0483666658, 0.0481333323, 0.0478000008, 0.0452333316}'::real[], '{0.0467358306}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{18, 10, 15, 14, 2, 3, 4, 12, 7, 16, 19, 5, 20, 17, 13, 1, 9, 11, 8, 6}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t5'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k4'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.052366666, 0.051733334, 0.051666666, 0.051133335, 0.0507, 0.0503, 0.05026667, 0.050133333, 0.050033335, 0.05, 0.05, 0.049666665, 0.049566668, 0.049533334, 0.049466666, 0.0493, 0.048633333, 0.048566666, 0.0485, 0.048433334}'::real[], '{0.05410762}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{20, 2, 19, 7, 11, 14, 13, 17, 5, 1, 16, 15, 8, 18, 12, 3, 10, 6, 4, 9}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); DELETE FROM pg_statistic WHERE starelid = 'public.t5'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k5'); -INSERT INTO pg_statistic VALUES ('public.t5'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k5'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0513000004, 0.0509000011, 0.0509000011, 0.0507333316, 0.0504000001, 0.0502666682, 0.0502666682, 0.0500666648, 0.0500333346, 0.0500333346, 0.0500333346, 0.0499666668, 0.0499666668, 0.0496333316, 0.0495666675, 0.0494333319, 0.0494333319, 0.0493000001, 0.0489666648, 0.0487999991}'::real[], '{0.06026062}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{14, 5, 9, 18, 6, 1, 20, 15, 11, 16, 19, 3, 12, 13, 4, 8, 17, 10, 7, 2}', 'int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +INSERT INTO pg_statistic VALUES ('public.t5'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.t5'::regclass and a.attname = 'k5'), False::boolean, 0::real, 4::integer, 20::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.051466666, 0.051233333, 0.051166665, 0.050833333, 0.050766665, 0.05073333, 0.05073333, 0.050633334, 0.050566666, 0.050166667, 0.0501, 0.050033335, 0.04963333, 0.049566668, 0.0494, 0.0493, 0.048933335, 0.0489, 0.0489, 0.046933334}'::real[], '{0.040591933}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{15, 6, 9, 2, 19, 4, 13, 16, 1, 12, 14, 3, 11, 10, 20, 5, 8, 7, 17, 18}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.tcor_1'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_1'::regclass and a.attname = 'k1'); +INSERT INTO pg_statistic VALUES ('public.tcor_1'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_1'::regclass and a.attname = 'k1'), False::boolean, 0::real, 4::integer, 11::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.09992}'::real[], '{0.08880379}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 0}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.tcor_1'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_1'::regclass and a.attname = 'k2'); +INSERT INTO pg_statistic VALUES ('public.tcor_1'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_1'::regclass and a.attname = 'k2'), False::boolean, 0::real, 4::integer, 51::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.01992}'::real[], '{0.008795089}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 0}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.tcor_1'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_1'::regclass and a.attname = 'k3'); +INSERT INTO pg_statistic VALUES ('public.tcor_1'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_1'::regclass and a.attname = 'k3'), False::boolean, 0::real, 4::integer, 251::real, 1::smallint, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004, 0.004}'::real[], NULL::real[], '{-0.0074793934}'::real[], NULL::real[], NULL::real[], array_in('{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100}', 'pg_catalog.int4'::regtype, -1)::anyarray, array_in('{0, 101, 103, 104, 106, 107, 109, 110, 112, 113, 115, 116, 118, 119, 121, 122, 124, 125, 127, 128, 130, 131, 133, 134, 136, 137, 139, 140, 142, 143, 145, 146, 148, 149, 151, 152, 154, 155, 157, 158, 160, 161, 163, 164, 166, 167, 169, 170, 172, 173, 175, 176, 178, 179, 181, 182, 184, 185, 187, 188, 190, 191, 193, 194, 196, 197, 199, 200, 202, 203, 205, 206, 208, 209, 211, 212, 214, 215, 217, 218, 220, 221, 223, 224, 226, 227, 229, 230, 232, 233, 235, 236, 238, 239, 241, 242, 244, 245, 247, 248, 250}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.tcor_1'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_1'::regclass and a.attname = 'k4'); +INSERT INTO pg_statistic VALUES ('public.tcor_1'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_1'::regclass and a.attname = 'k4'), False::boolean, 0::real, 4::integer, 50::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02}'::real[], '{0.021729141}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.tcor_2'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_2'::regclass and a.attname = 'k1'); +INSERT INTO pg_statistic VALUES ('public.tcor_2'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_2'::regclass and a.attname = 'k1'), False::boolean, 0::real, 4::integer, 18::real, 1::smallint, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.18936667, 0.18833333, 0.15046667, 0.1499, 0.09246667, 0.09243333, 0.045433335, 0.0443, 0.017966667, 0.017866667, 0.0046, 0.004166667, 0.0012, 0.0009666667}'::real[], NULL::real[], '{0.14629024}'::real[], NULL::real[], NULL::real[], array_in('{0, -1, 1, -2, 2, -3, -4, 3, -5, 4, -6, 5, -7, 6}', 'pg_catalog.int4'::regtype, -1)::anyarray, array_in('{-9, -8, 7, 8}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.tcor_2'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_2'::regclass and a.attname = 'k2'); +INSERT INTO pg_statistic VALUES ('public.tcor_2'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_2'::regclass and a.attname = 'k2'), False::boolean, 0::real, 4::integer, 17::real, 1::smallint, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.1924, 0.19173333, 0.15066667, 0.14873333, 0.09173334, 0.0902, 0.045633335, 0.044233333, 0.0161, 0.015466667, 0.0054, 0.0051, 0.0012666667, 0.001}'::real[], NULL::real[], '{0.14077911}'::real[], NULL::real[], NULL::real[], array_in('{-1, 0, 1, -2, 2, -3, -4, 3, -5, 4, 5, -6, -7, 6}', 'pg_catalog.int4'::regtype, -1)::anyarray, array_in('{-8, 7, 8}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.tcor_2'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_2'::regclass and a.attname = 'k3'); +INSERT INTO pg_statistic VALUES ('public.tcor_2'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_2'::regclass and a.attname = 'k3'), False::boolean, 0::real, 4::integer, 18::real, 1::smallint, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.19436666, 0.1893, 0.14933333, 0.14896667, 0.0927, 0.091133334, 0.045466665, 0.0434, 0.016366666, 0.0161, 0.0050333333, 0.005, 0.0012666667, 0.0010333334}'::real[], NULL::real[], '{0.14582634}'::real[], NULL::real[], NULL::real[], array_in('{0, -1, 1, -2, -3, 2, -4, 3, -5, 4, -6, 5, 6, -7}', 'pg_catalog.int4'::regtype, -1)::anyarray, array_in('{-9, -8, 7, 8}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.tcor_2'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_2'::regclass and a.attname = 'k4'); +INSERT INTO pg_statistic VALUES ('public.tcor_2'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_2'::regclass and a.attname = 'k4'), False::boolean, 0::real, 4::integer, 17::real, 1::smallint, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.1918, 0.18863334, 0.15426667, 0.14693333, 0.0936, 0.0908, 0.044466667, 0.044333335, 0.0168, 0.015133333, 0.0058333334, 0.005133333, 0.001, 0.00093333336}'::real[], NULL::real[], '{0.12975658}'::real[], NULL::real[], NULL::real[], array_in('{-1, 0, -2, 1, 2, -3, 3, -4, -5, 4, 5, -6, 6, -7}', 'pg_catalog.int4'::regtype, -1)::anyarray, array_in('{-9, 7, 7}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.tcor_3'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_3'::regclass and a.attname = 'k1'); +INSERT INTO pg_statistic VALUES ('public.tcor_3'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_3'::regclass and a.attname = 'k1'), False::boolean, 0::real, 4::integer, 98::real, 1::smallint, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0305, 0.029366666, 0.028533334, 0.027166666, 0.027033333, 0.026466666, 0.0262, 0.025466667, 0.025066666, 0.025, 0.023066666, 0.022766666, 0.0224, 0.0223, 0.022066666, 0.021333333, 0.0212, 0.020433333, 0.0201, 0.019233333, 0.0187, 0.018566666, 0.0178, 0.0174, 0.016666668, 0.016633334, 0.016366666, 0.015733333, 0.015533334, 0.014733333, 0.014433334, 0.013933334, 0.0139, 0.0134333335, 0.012633333, 0.012233334, 0.011666667, 0.011566667, 0.0112, 0.011033333, 0.010866666, 0.010566667, 0.0105, 0.009433334, 0.0091, 0.008933334, 0.0083, 0.0082, 0.008033333, 0.007866667, 0.0077333334, 0.0075333333, 0.007333333, 0.0063333334, 0.0058, 0.005633333, 0.0055333334, 0.0054, 0.005266667, 0.004766667, 0.0047, 0.0046666665, 0.0045333332, 0.004466667, 0.0038333333, 0.0035666667, 0.0034333332, 0.0034, 0.0029666666, 0.0029333334, 0.0028666668, 0.0022666666, 0.0021333334, 0.0020666667, 0.0019666667, 0.0018333333, 0.0017333333, 0.0017, 0.0015333333, 0.0015, 0.0012, 0.0010666667, 0.001, 0.0008, 0.00076666666, 0.00066666666, 0.00053333334, 0.00053333334}'::real[], NULL::real[], '{0.02486376}'::real[], NULL::real[], NULL::real[], array_in('{99, 100, 96, 97, 98, 93, 95, 94, 92, 91, 88, 89, 90, 87, 86, 84, 83, 85, 82, 81, 80, 79, 78, 77, 73, 76, 75, 70, 72, 74, 71, 69, 68, 67, 65, 66, 63, 61, 59, 62, 64, 58, 60, 56, 57, 55, 52, 50, 54, 49, 53, 51, 48, 47, 45, 46, 42, 43, 44, 41, 38, 40, 37, 39, 36, 33, 34, 32, 35, 30, 31, 27, 29, 26, 24, 25, 23, 28, 22, 21, 20, 18, 19, 16, 17, 14, 11, 15}', 'pg_catalog.int4'::regtype, -1)::anyarray, array_in('{1, 6, 7, 9, 9, 10, 12, 12, 13, 13}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.tcor_3'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_3'::regclass and a.attname = 'k2'); +INSERT INTO pg_statistic VALUES ('public.tcor_3'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_3'::regclass and a.attname = 'k2'), False::boolean, 0::real, 4::integer, 100::real, 1::smallint, 3::smallint, 0::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.0158, 0.015433333, 0.015233333, 0.015233333, 0.015, 0.014966667, 0.014833333, 0.014766667, 0.014733333, 0.014733333, 0.014666666, 0.014666666, 0.014633333, 0.0145333335, 0.014366667, 0.014366667, 0.014266667, 0.014266667, 0.014233333, 0.014166667, 0.014166667, 0.014166667, 0.014066666, 0.0139, 0.013766667, 0.013733333, 0.013666667, 0.013633333, 0.013633333, 0.0136, 0.013333334, 0.0133, 0.0131, 0.013033333, 0.013033333, 0.012933333, 0.012933333, 0.012866667, 0.012666667, 0.012666667, 0.012633333, 0.0125, 0.012433333, 0.012433333, 0.0122, 0.011733334, 0.011666667, 0.0115, 0.0115, 0.0113, 0.011266666, 0.011166667, 0.0107, 0.0105, 0.010433333, 0.0103, 0.0101666665, 0.0101, 0.009766666, 0.009433334, 0.0092, 0.0088, 0.008766667, 0.008633333, 0.008433334, 0.008433334, 0.0084, 0.008333334, 0.008233333, 0.008233333, 0.0081, 0.008033333, 0.0078, 0.0072666667, 0.0064, 0.0063333334, 0.006233333, 0.0061666667, 0.0061666667, 0.006, 0.0059666666, 0.0054666665, 0.004766667, 0.0046, 0.0043, 0.0041333335, 0.0035333333, 0.0035, 0.0034666667, 0.0032, 0.003, 0.0024666667, 0.0022666666, 0.0018, 0.0016333334, 0.0016, 0.0014, 0.0010333334, 0.00056666665, 0.0005}'::real[], '{0.024258668}'::real[], NULL::real[], NULL::real[], NULL::real[], array_in('{50, 59, 47, 54, 62, 49, 44, 57, 42, 48, 38, 43, 55, 52, 45, 46, 56, 64, 68, 51, 53, 61, 41, 39, 37, 36, 66, 35, 65, 40, 63, 58, 67, 29, 33, 32, 60, 34, 30, 69, 71, 72, 31, 73, 75, 25, 74, 26, 70, 28, 22, 27, 76, 79, 78, 24, 23, 77, 21, 82, 20, 83, 81, 84, 18, 85, 80, 16, 15, 17, 86, 14, 19, 87, 90, 88, 10, 11, 13, 12, 89, 91, 92, 9, 93, 8, 95, 6, 94, 5, 7, 96, 4, 97, 3, 98, 99, 2, 100, 1}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL, NULL); +DELETE FROM pg_statistic WHERE starelid = 'public.tcor_3'::regclass AND staattnum = (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_3'::regclass and a.attname = 'k3'); +INSERT INTO pg_statistic VALUES ('public.tcor_3'::regclass, (SELECT a.attnum FROM pg_attribute a WHERE a.attrelid = 'public.tcor_3'::regclass and a.attname = 'k3'), False::boolean, 0::real, 4::integer, 98::real, 1::smallint, 2::smallint, 3::smallint, 0::smallint, 0::smallint, 96::oid, 97::oid, 97::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, 0::oid, '{0.029266667, 0.028866667, 0.0276, 0.027566666, 0.026766667, 0.026633333, 0.026366666, 0.026, 0.025866667, 0.025733333, 0.024833333, 0.0233, 0.022333333, 0.021733332, 0.021066668, 0.021066668, 0.020766666, 0.020633332, 0.019433333, 0.019033333, 0.019033333, 0.018833334, 0.018266667, 0.018133333, 0.017533334, 0.0164, 0.016333334, 0.015866667, 0.0145, 0.0145, 0.0143, 0.0143, 0.014, 0.012933333, 0.0129, 0.012666667, 0.011766667, 0.0114, 0.0112, 0.0109, 0.0105, 0.009966667, 0.009666666, 0.009466667, 0.0093, 0.0090333335, 0.008333334, 0.0082, 0.008133333, 0.008, 0.0073, 0.0068666665, 0.0067666667, 0.006733333, 0.006366667, 0.0063, 0.0062, 0.0056666667, 0.0056, 0.0049, 0.004833333, 0.0048, 0.0043666665, 0.004, 0.0037, 0.0036333334, 0.0034333332, 0.0032333334, 0.0030666667, 0.0028333333, 0.0025333334, 0.0025, 0.0022, 0.0021666666, 0.002, 0.0018666667, 0.0016666667, 0.0016, 0.0015666666, 0.0015333333, 0.0011333333, 0.0011, 0.0011, 0.00083333335, 0.00076666666, 0.0006, 0.0006, 0.00046666668, 0.0004, 0.00036666667, 0.00036666667}'::real[], NULL::real[], '{0.030713478}'::real[], NULL::real[], NULL::real[], array_in('{1, 4, 2, 3, 5, 6, 10, 9, 8, 7, 13, 11, 12, 15, 17, 18, 14, 16, 19, 20, 24, 22, 21, 26, 23, 25, 27, 28, 29, 34, 30, 32, 31, 37, 33, 35, 36, 39, 38, 41, 43, 40, 45, 44, 42, 46, 47, 48, 50, 49, 51, 53, 52, 55, 56, 54, 57, 59, 58, 63, 60, 62, 61, 64, 66, 68, 65, 70, 67, 69, 71, 74, 75, 72, 73, 77, 76, 80, 79, 78, 83, 82, 84, 81, 85, 86, 87, 88, 89, 90, 92}', 'pg_catalog.int4'::regtype, -1)::anyarray, array_in('{91, 91, 93, 94, 95, 96, 98}', 'pg_catalog.int4'::regtype, -1)::anyarray, NULL, NULL); update pg_yb_catalog_version set current_version=current_version+1 where db_oid=1; SET yb_non_ddl_txn_for_sys_tables_allowed = OFF; + SET pg_hint_plan.enable_hint = ON; SET pg_hint_plan.debug_print = ON; SET client_min_messages TO log; @@ -112,11 +151,11 @@ EXPLAIN (COSTS OFF) SELECT * FROM t2 WHERE k2 >= 4 and k2 < 14; EXPLAIN (COSTS OFF) SELECT * FROM t3 WHERE k3 >= 4 and k3 < 14; -- Query Hash: f425b12c4a6d8d734c69e50afeff04ed EXPLAIN (COSTS OFF) SELECT * FROM t4 WHERE k4 >= 4 and k4 < 14; --- Query Hash: 7d901f98ab781317763d9915875de118 +-- Query Hash: 7d901f98ab781317763d9915875de118 , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM t5 WHERE k5 >= 4 and k5 < 14; -- Query Hash: b5562a3ef44a737b2846f0975cf9e1c7 EXPLAIN (COSTS OFF) SELECT * FROM t1 WHERE k1 IN (4, 8); --- Query Hash: 6a8ead9b8b122eea0e5460236bc6c19b +-- Query Hash: 6a8ead9b8b122eea0e5460236bc6c19b , !BEST_PLAN_FOUND EXPLAIN (COSTS OFF) SELECT * FROM t1 WHERE k1 IN (4, 8, 12); -- Query Hash: d7eedc71bffb36fa0152da8c08bf7808 EXPLAIN (COSTS OFF) SELECT * FROM t1 WHERE k1 IN (4, 8, 12, 16); @@ -124,9 +163,84 @@ EXPLAIN (COSTS OFF) SELECT * FROM t1 WHERE k1 IN (4, 8, 12, 16); EXPLAIN (COSTS OFF) SELECT * FROM t2 WHERE k1 IN (4, 8, 12, 16); -- Query Hash: 8c7bf857d9e088af7a4b5c904c5b8610 EXPLAIN (COSTS OFF) SELECT * FROM t2 WHERE k2 IN (4, 8, 12, 16); +-- Query Hash: 5d91fd582d63d5cb7df1e3face8067d5 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_1 WHERE k1 < 5; +-- Query Hash: 979b459461ba7b840826695627007334 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_1 WHERE k2 < 25; +-- Query Hash: 9a8420c43a0a8e1661e5d1ac9bdd62b0 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_1 WHERE k3 < 125; +-- Query Hash: 3324c9ff1941acab32f5415abd90c0c4 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_1 WHERE k4 < 25; +-- Query Hash: adbcbd6fb6decb44cd3d786bf910e5d4 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_1 WHERE k1 < 5 AND k2 < 25; +-- Query Hash: 25bd3b427c6c6786ffd4bb1ac43d50c9 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_1 WHERE k1 < 5 AND k3 < 125; +-- Query Hash: c51689b307246763709d95761488c01e +EXPLAIN (COSTS OFF) SELECT * FROM tcor_1 WHERE k1 < 5 AND k4 < 25; +-- Query Hash: f2621d436cb67e9e38c733ba36c6e3bd +EXPLAIN (COSTS OFF) SELECT * FROM tcor_1 WHERE k2 < 25 AND k3 < 125; +-- Query Hash: c60cbde271e15ebbb324c337b8219e11 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_1 WHERE k2 < 25 AND k4 < 25; +-- Query Hash: 9be0c8a2b6797d336f5d43b76e18be46 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_1 WHERE k3 < 125 AND k4 < 25; +-- Query Hash: 4fe07880e09bf7812010c348aae8a57d +EXPLAIN (COSTS OFF) SELECT * FROM tcor_1 WHERE k1 < 5 AND k2 < 25 AND k3 < 125 AND k4 < 25; +-- Query Hash: aaa7d9c764b2723a7495d33f609ab200 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_2 WHERE k1 < 0; +-- Query Hash: 540441b5cf77f76d10f510ba04556e3d +EXPLAIN (COSTS OFF) SELECT * FROM tcor_2 WHERE k2 < 0; +-- Query Hash: 3b525b570874f819873f09cd386b2c10 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_2 WHERE k3 < 0; +-- Query Hash: 90c6e6321ee74099b07569d8aa7e9f05 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_2 WHERE k4 < 0; +-- Query Hash: 4d05ca97a12862a4a513929f249524ea +EXPLAIN (COSTS OFF) SELECT * FROM tcor_2 WHERE k1 < 0 AND k2 < 0; +-- Query Hash: 89c00f63e767513c6aa3d08cb9b55f0b +EXPLAIN (COSTS OFF) SELECT * FROM tcor_2 WHERE k1 < 0 AND k3 < 0; +-- Query Hash: cc71e17fa039883b7e8fd219533c8285 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_2 WHERE k1 < 0 AND k4 < 0; +-- Query Hash: 60229f8796efe228e27d959b0ea59781 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_2 WHERE k2 < 0 AND k3 < 0; +-- Query Hash: 1a883df555044f269f4dc699156a8594 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_2 WHERE k2 < 0 AND k4 < 0; +-- Query Hash: 4566c9cfd7224af62bb14a7dd6cf429f +EXPLAIN (COSTS OFF) SELECT * FROM tcor_2 WHERE k3 < 0 AND k4 < 0; +-- Query Hash: 18f5729f5f6a432245c96e7c6ce13cbe +EXPLAIN (COSTS OFF) SELECT * FROM tcor_2 WHERE k1 < 0 AND k2 < 0 AND k3 < 0 AND k4 < 0; +-- Query Hash: 51d11a69af237d21a0f439680ae11e86 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k1 > 50 and k3 > 50; +-- Query Hash: b0418f7b0f73ba0a1e09526703b0ec60 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k2 > 50 and k3 > 50; +-- Query Hash: 162202d912755f260a7ba158aaa656e7 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k1 > 50 and k2 > 50; +-- Query Hash: 92961ecf4a4a096b80054048f778d525 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k1 = 50 AND k3 > 50; +-- Query Hash: 375c8ae3f86b5dbba917c7108e42b918 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k1 = 50 AND k3 > 50 AND k3 < 80; +-- Query Hash: d729eb647c6857e30897b4b4a6fec1be +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k2 = 50 AND k3 > 50; +-- Query Hash: b57c1e01bf6b6658b86167fc6df13845 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k2 = 50 AND k3 > 50 AND k3 < 80; +-- Query Hash: 024fb5b577416303e3777892ea2f02c9 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k3 = 50 AND k2 > 50; +-- Query Hash: d271787b745e12b73f1d71efdf25856c +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k3 = 50 AND k2 > 50 AND k2 < 80; +-- Query Hash: 16a4b2ae22250f600cc8ddd60a443049 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k2 IN (50, 60, 70, 80) AND k3 > 50; +-- Query Hash: 32a970e0cc5bed5898970ed39860a744 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k2 IN (50, 60, 70, 80) AND k3 > 50 AND k3 < 80; +-- Query Hash: 4ae624260329d91797989cfec1fe32b3 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k1 IN (50, 60, 70, 80) AND k2 IN (50, 60, 70, 80); +-- Query Hash: 17c4b34da306f3aab063529002052144 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k1 IN (50, 60, 70, 80) AND k3 IN (50, 60, 70, 80); +-- Query Hash: b457f2828cc6c6beded8e0b71b63a624 +EXPLAIN (COSTS OFF) SELECT * FROM tcor_3 WHERE k2 IN (50, 60, 70, 80) AND k3 IN (50, 60, 70, 80); -- DROP QUERIES; DROP TABLE IF EXISTS t1 CASCADE; DROP TABLE IF EXISTS t2 CASCADE; DROP TABLE IF EXISTS t3 CASCADE; DROP TABLE IF EXISTS t4 CASCADE; DROP TABLE IF EXISTS t5 CASCADE; +DROP TABLE IF EXISTS tcor_1 CASCADE; +DROP TABLE IF EXISTS tcor_2 CASCADE; +DROP TABLE IF EXISTS tcor_3 CASCADE; diff --git a/src/postgres/src/test/regress/sql/yb.orig.planner_taqo_tuning_tests.sql b/src/postgres/src/test/regress/sql/yb.orig.planner_taqo_tuning_tests.sql index 5aed0a7b815b..b6cc179b8f0e 100644 --- a/src/postgres/src/test/regress/sql/yb.orig.planner_taqo_tuning_tests.sql +++ b/src/postgres/src/test/regress/sql/yb.orig.planner_taqo_tuning_tests.sql @@ -266,26 +266,42 @@ SET client_min_messages TO log; SET pg_hint_plan.message_level = debug; SET temp_file_limit="8182MB"; SET yb_enable_optimizer_statistics = true; set yb_bnl_batch_size = 1024; set yb_enable_base_scans_cost_model = true; --- Query Hash: 1dc3153f1e9ed56fa96c3cd1b27e0b07 -EXPLAIN (COSTS OFF) select * from t_range_100k order by id limit 2000; --- Query Hash: 19e6de1bb5bc99e4b305d7d4f9be0028 -EXPLAIN (COSTS OFF) select * from t_range_100k order by id limit 4000; --- Query Hash: 0efcee232738078aef27b70f713cc484 -EXPLAIN (COSTS OFF) select * from t_range_100k order by id limit 6000; --- Query Hash: f626b3f363d75388554214ce82da3083 -EXPLAIN (COSTS OFF) select * from t_range_100k order by id limit 8000; --- Query Hash: 82d199503b78f0582855529e3df34c59 -EXPLAIN (COSTS OFF) select * from t_range_100k order by id limit 10000; --- Query Hash: e913bdc386feddca13b58f33c8760e59 -EXPLAIN (COSTS OFF) select * from t_range_100k order by id limit 12000; --- Query Hash: 724bd9760155acd3327e33bd8fa7de3a -EXPLAIN (COSTS OFF) select * from t_range_100k order by id limit 14000; --- Query Hash: c1b8bcb5f59d75934225892a25d4253c -EXPLAIN (COSTS OFF) select * from t_range_100k order by id limit 16000; --- Query Hash: 289e0e4114fb3f773f7b7001dd37b763 -EXPLAIN (COSTS OFF) select * from t_range_100k order by id limit 18000; --- Query Hash: bc18b6d99b63eb92ae718494d803ac5c -EXPLAIN (COSTS OFF) select * from t_range_100k order by id limit 20000; +-- Query Hash: 0ae1b2c7ad80ee87ea1a825725fc1b96 +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 2000; +-- Query Hash: cb836288722b7f2122d706f659be5d9c +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 4000; +-- Query Hash: 9fb48d99472378a037a811caf7c9f996 +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 6000; +-- Query Hash: 36ccbbab6ea9639cfe76e729f1cdfeea +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 8000; +-- Query Hash: 8fd8b333bb580d2725c637d3a61b7fa0 +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 10000; +-- Query Hash: 23163a76a92b03714752e71a0bb300cc +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 12000; +-- Query Hash: a7a1a762f96b9445990d3057904a8f9b +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 14000; +-- Query Hash: 13026bfac847da1ec9f13fdaad5c39cf +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 16000; +-- Query Hash: 90e1ac9dfdbd77fa5ad96b1fe3526a41 +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 18000; +-- Query Hash: 90c2ad6894acac53c20efdd886e0fc03 +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 20000; +-- Query Hash: 6a7aec1003782e720c65dc3f71aea7d9 +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 30000; +-- Query Hash: 4fd602403563a4e0f3e41c5ba997e69d +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 40000; +-- Query Hash: 7851294ed00745c200035bdcd0c1255d +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 50000; +-- Query Hash: 71dd3caa7a09c5c998aebea00ee660b9 +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 60000; +-- Query Hash: e0de7a3bdbda621312f9228b7e3e037f +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 70000; +-- Query Hash: cf003cee7f2565711393de7bdd8e8011 +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 80000; +-- Query Hash: 4c031d60065425d8f8d6b8c73e7e8619 +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 90000; +-- Query Hash: dc90be6cc64fd55c55c71587766b5d46 +EXPLAIN (COSTS OFF) select * from t_range_100k order by id desc limit 100000; -- Query Hash: d0f652bb9a03d4d0079382c8a675ddf5 EXPLAIN (COSTS OFF) SELECT v1 FROM t_char4_100k limit 40960; -- Query Hash: 00e91b30ef109150e085eccecd169799 @@ -402,10 +418,34 @@ EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 50000; EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 60000; -- Query Hash: 5a5f3454601ef6d9c839a1a4156877b3 EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 70000; +-- Query Hash: 986db5347ddb81dcd6d98e320aa33f04 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 72000; +-- Query Hash: f3f30a71ac9b1ea16a02df36af4353ef +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 74000; +-- Query Hash: 19ada938c02ed684fd0677fc7aed7bc7 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 76000; +-- Query Hash: 4f80c5b0c11ac167fb34a28a251f1194 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 78000; -- Query Hash: 4e55bca06a13c7c3d8a5e10eca420b18 EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 80000; +-- Query Hash: 4c74d9b590210aaaa72ccdb149d91085 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 82000; +-- Query Hash: cd089249d1c61cdcc5ca790d5b653688 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 84000; +-- Query Hash: 5f4039a90e0f55a00b2673363f37e962 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 86000; +-- Query Hash: 77265cc8960831f9c3ae98bbb219ba3b +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 88000; -- Query Hash: 251f2300e2c1fec654e64f1541d5708a EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 90000; +-- Query Hash: ce27c95232d85f7234f1617d0691e48b +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 92000; +-- Query Hash: efe0ba7993a60e6f0574444a42ec7300 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 94000; +-- Query Hash: de34f39ebd3fbac61ea83aec9c0e65fa +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 96000; +-- Query Hash: 4813e70171561585ad8308463c444d19 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 98000; -- Query Hash: 3d16e92a207f6d5d7d3da4add741ea21 EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where id > 100000; -- Query Hash: e5f7b926682df47cc192858544459088 @@ -502,10 +542,34 @@ EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 50000; EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 60000; -- Query Hash: d219120944637d070cd8b838064c485f EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 70000; --- Query Hash: bf0d45764d65ec4810ab2dea43a34338 , !BEST_PLAN_FOUND +-- Query Hash: c7d782cdd7fcc2c484e0187ddf1c43df +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 72000; +-- Query Hash: 147d440fc645807cc00ac11420080ac9 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 74000; +-- Query Hash: eef5fb62d364ea0b48697009cb911b58 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 76000; +-- Query Hash: 91d98635ffb11f56f280745ab54f570e +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 78000; +-- Query Hash: bf0d45764d65ec4810ab2dea43a34338 EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 80000; --- Query Hash: f522aab9d236d3ed75ab2352fb500db6 , !BEST_PLAN_FOUND +-- Query Hash: ceabbc55afb9a4a4193778607789e9aa +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 82000; +-- Query Hash: 7d6da8d19e40e895afc1d59725f4149b +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 84000; +-- Query Hash: 46d57c485e42cf6160e4f6766c61d70e +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 86000; +-- Query Hash: e3fec7fef395927d9f122ef652d4e9c3 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 88000; +-- Query Hash: f522aab9d236d3ed75ab2352fb500db6 EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 90000; +-- Query Hash: 9ced59c340c481755ad25e614605cca5 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 92000; +-- Query Hash: 0ef9530c49a611869b810b515dc58a2f +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 94000; +-- Query Hash: 0a8b5bdec387c90eae29d8ce92512fb6 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 96000; +-- Query Hash: 62ef41e12087e95fda2d543e1462c85e +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 98000; -- Query Hash: 0a188489b59c5498c04ae3dd3725e05d EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k where v1 > 100000; -- Query Hash: d93f6e4d8c79ed9ff1777a8346135486 @@ -532,12 +596,126 @@ EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 50000; EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 60000; -- Query Hash: d7702857e136de07e622647d58d7b06c EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 70000; +-- Query Hash: 42d7a5992cea72bbc2a48e7166e46522 +EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 72000; +-- Query Hash: 83baff4e3a9851892eb754fcc191b396 +EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 74000; +-- Query Hash: e9ec5166d77f198f360ab93eea091feb +EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 76000; +-- Query Hash: 56dff92acb689e82625486ea525fc3be +EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 78000; -- Query Hash: 9d150416c5e9f1bafef0c02900e2f348 EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 80000; +-- Query Hash: 6e8c5256e03caadf87ef9ca5518c45cb +EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 82000; +-- Query Hash: 1461dc3913b71a82bf2a7fd78e1d272e +EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 84000; +-- Query Hash: f257496ae8eb45582a7b37a71e2aaa41 +EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 86000; +-- Query Hash: 1add8be714520d65ccc6b29b3df67b23 +EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 88000; -- Query Hash: 93882cc33b315e91d15864fae16cc319 EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 90000; +-- Query Hash: a64735e1f218be12a9447f3807d3f18c +EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 92000; +-- Query Hash: ca543d4e151c1639704fef9181e4e5f6 +EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 94000; +-- Query Hash: 85236d3d0a38f8ac2d221cc68a16b56d +EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 96000; +-- Query Hash: 7436a2799d3b13a9bbf0147a994e87c9 +EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 98000; -- Query Hash: 347246381eaacf8d14a762997e0f7773 EXPLAIN (COSTS OFF) SELECT v1 FROM t_range_100k where v1 > 100000; +-- Query Hash: c2ec8c4aaf27f063ac4ec2836c0e0c75 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k WHERE id in (1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999); +-- Query Hash: ae6ed708dd8b308817f5045a172349b6 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_200k WHERE id in (1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999); +-- Query Hash: e8e944b6d706d78e27e59bb90b95e6f2 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_400k WHERE id in (1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999); +-- Query Hash: 4fffcb14e09b5888af5d4dbec8cfa0d2 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_800k WHERE id in (1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999); +-- Query Hash: 8658bcd07d24cb2920170703af3c8d61 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k WHERE id in (1000,1002,1004,1006,1008,1010,1012,1014,1016,1018,1020,1022,1024,1026,1028,1030,1032,1034,1036,1038,1040,1042,1044,1046,1048,1050,1052,1054,1056,1058,1060,1062,1064,1066,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1088,1090,1092,1094,1096,1098,1100,1102,1104,1106,1108,1110,1112,1114,1116,1118,1120,1122,1124,1126,1128,1130,1132,1134,1136,1138,1140,1142,1144,1146,1148,1150,1152,1154,1156,1158,1160,1162,1164,1166,1168,1170,1172,1174,1176,1178,1180,1182,1184,1186,1188,1190,1192,1194,1196,1198,1200,1202,1204,1206,1208,1210,1212,1214,1216,1218,1220,1222,1224,1226,1228,1230,1232,1234,1236,1238,1240,1242,1244,1246,1248,1250,1252,1254,1256,1258,1260,1262,1264,1266,1268,1270,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292,1294,1296,1298,1300,1302,1304,1306,1308,1310,1312,1314,1316,1318,1320,1322,1324,1326,1328,1330,1332,1334,1336,1338,1340,1342,1344,1346,1348,1350,1352,1354,1356,1358,1360,1362,1364,1366,1368,1370,1372,1374,1376,1378,1380,1382,1384,1386,1388,1390,1392,1394,1396,1398,1400,1402,1404,1406,1408,1410,1412,1414,1416,1418,1420,1422,1424,1426,1428,1430,1432,1434,1436,1438,1440,1442,1444,1446,1448,1450,1452,1454,1456,1458,1460,1462,1464,1466,1468,1470,1472,1474,1476,1478,1480,1482,1484,1486,1488,1490,1492,1494,1496,1498,1500,1502,1504,1506,1508,1510,1512,1514,1516,1518,1520,1522,1524,1526,1528,1530,1532,1534,1536,1538,1540,1542,1544,1546,1548,1550,1552,1554,1556,1558,1560,1562,1564,1566,1568,1570,1572,1574,1576,1578,1580,1582,1584,1586,1588,1590,1592,1594,1596,1598,1600,1602,1604,1606,1608,1610,1612,1614,1616,1618,1620,1622,1624,1626,1628,1630,1632,1634,1636,1638,1640,1642,1644,1646,1648,1650,1652,1654,1656,1658,1660,1662,1664,1666,1668,1670,1672,1674,1676,1678,1680,1682,1684,1686,1688,1690,1692,1694,1696,1698,1700,1702,1704,1706,1708,1710,1712,1714,1716,1718,1720,1722,1724,1726,1728,1730,1732,1734,1736,1738,1740,1742,1744,1746,1748,1750,1752,1754,1756,1758,1760,1762,1764,1766,1768,1770,1772,1774,1776,1778,1780,1782,1784,1786,1788,1790,1792,1794,1796,1798,1800,1802,1804,1806,1808,1810,1812,1814,1816,1818,1820,1822,1824,1826,1828,1830,1832,1834,1836,1838,1840,1842,1844,1846,1848,1850,1852,1854,1856,1858,1860,1862,1864,1866,1868,1870,1872,1874,1876,1878,1880,1882,1884,1886,1888,1890,1892,1894,1896,1898,1900,1902,1904,1906,1908,1910,1912,1914,1916,1918,1920,1922,1924,1926,1928,1930,1932,1934,1936,1938,1940,1942,1944,1946,1948,1950,1952,1954,1956,1958,1960,1962,1964,1966,1968,1970,1972,1974,1976,1978,1980,1982,1984,1986,1988,1990,1992,1994,1996,1998,2000,2002,2004,2006,2008,2010,2012,2014,2016,2018,2020,2022,2024,2026,2028,2030,2032,2034,2036,2038,2040,2042,2044,2046,2048,2050,2052,2054,2056,2058,2060,2062,2064,2066,2068,2070,2072,2074,2076,2078,2080,2082,2084,2086,2088,2090,2092,2094,2096,2098,2100,2102,2104,2106,2108,2110,2112,2114,2116,2118,2120,2122,2124,2126,2128,2130,2132,2134,2136,2138,2140,2142,2144,2146,2148,2150,2152,2154,2156,2158,2160,2162,2164,2166,2168,2170,2172,2174,2176,2178,2180,2182,2184,2186,2188,2190,2192,2194,2196,2198,2200,2202,2204,2206,2208,2210,2212,2214,2216,2218,2220,2222,2224,2226,2228,2230,2232,2234,2236,2238,2240,2242,2244,2246,2248,2250,2252,2254,2256,2258,2260,2262,2264,2266,2268,2270,2272,2274,2276,2278,2280,2282,2284,2286,2288,2290,2292,2294,2296,2298,2300,2302,2304,2306,2308,2310,2312,2314,2316,2318,2320,2322,2324,2326,2328,2330,2332,2334,2336,2338,2340,2342,2344,2346,2348,2350,2352,2354,2356,2358,2360,2362,2364,2366,2368,2370,2372,2374,2376,2378,2380,2382,2384,2386,2388,2390,2392,2394,2396,2398,2400,2402,2404,2406,2408,2410,2412,2414,2416,2418,2420,2422,2424,2426,2428,2430,2432,2434,2436,2438,2440,2442,2444,2446,2448,2450,2452,2454,2456,2458,2460,2462,2464,2466,2468,2470,2472,2474,2476,2478,2480,2482,2484,2486,2488,2490,2492,2494,2496,2498,2500,2502,2504,2506,2508,2510,2512,2514,2516,2518,2520,2522,2524,2526,2528,2530,2532,2534,2536,2538,2540,2542,2544,2546,2548,2550,2552,2554,2556,2558,2560,2562,2564,2566,2568,2570,2572,2574,2576,2578,2580,2582,2584,2586,2588,2590,2592,2594,2596,2598,2600,2602,2604,2606,2608,2610,2612,2614,2616,2618,2620,2622,2624,2626,2628,2630,2632,2634,2636,2638,2640,2642,2644,2646,2648,2650,2652,2654,2656,2658,2660,2662,2664,2666,2668,2670,2672,2674,2676,2678,2680,2682,2684,2686,2688,2690,2692,2694,2696,2698,2700,2702,2704,2706,2708,2710,2712,2714,2716,2718,2720,2722,2724,2726,2728,2730,2732,2734,2736,2738,2740,2742,2744,2746,2748,2750,2752,2754,2756,2758,2760,2762,2764,2766,2768,2770,2772,2774,2776,2778,2780,2782,2784,2786,2788,2790,2792,2794,2796,2798,2800,2802,2804,2806,2808,2810,2812,2814,2816,2818,2820,2822,2824,2826,2828,2830,2832,2834,2836,2838,2840,2842,2844,2846,2848,2850,2852,2854,2856,2858,2860,2862,2864,2866,2868,2870,2872,2874,2876,2878,2880,2882,2884,2886,2888,2890,2892,2894,2896,2898,2900,2902,2904,2906,2908,2910,2912,2914,2916,2918,2920,2922,2924,2926,2928,2930,2932,2934,2936,2938,2940,2942,2944,2946,2948,2950,2952,2954,2956,2958,2960,2962,2964,2966,2968,2970,2972,2974,2976,2978,2980,2982,2984,2986,2988,2990,2992,2994,2996,2998); +-- Query Hash: ec919662380311400303d6a17ff490eb +EXPLAIN (COSTS OFF) SELECT * FROM t_range_200k WHERE id in (1000,1002,1004,1006,1008,1010,1012,1014,1016,1018,1020,1022,1024,1026,1028,1030,1032,1034,1036,1038,1040,1042,1044,1046,1048,1050,1052,1054,1056,1058,1060,1062,1064,1066,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1088,1090,1092,1094,1096,1098,1100,1102,1104,1106,1108,1110,1112,1114,1116,1118,1120,1122,1124,1126,1128,1130,1132,1134,1136,1138,1140,1142,1144,1146,1148,1150,1152,1154,1156,1158,1160,1162,1164,1166,1168,1170,1172,1174,1176,1178,1180,1182,1184,1186,1188,1190,1192,1194,1196,1198,1200,1202,1204,1206,1208,1210,1212,1214,1216,1218,1220,1222,1224,1226,1228,1230,1232,1234,1236,1238,1240,1242,1244,1246,1248,1250,1252,1254,1256,1258,1260,1262,1264,1266,1268,1270,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292,1294,1296,1298,1300,1302,1304,1306,1308,1310,1312,1314,1316,1318,1320,1322,1324,1326,1328,1330,1332,1334,1336,1338,1340,1342,1344,1346,1348,1350,1352,1354,1356,1358,1360,1362,1364,1366,1368,1370,1372,1374,1376,1378,1380,1382,1384,1386,1388,1390,1392,1394,1396,1398,1400,1402,1404,1406,1408,1410,1412,1414,1416,1418,1420,1422,1424,1426,1428,1430,1432,1434,1436,1438,1440,1442,1444,1446,1448,1450,1452,1454,1456,1458,1460,1462,1464,1466,1468,1470,1472,1474,1476,1478,1480,1482,1484,1486,1488,1490,1492,1494,1496,1498,1500,1502,1504,1506,1508,1510,1512,1514,1516,1518,1520,1522,1524,1526,1528,1530,1532,1534,1536,1538,1540,1542,1544,1546,1548,1550,1552,1554,1556,1558,1560,1562,1564,1566,1568,1570,1572,1574,1576,1578,1580,1582,1584,1586,1588,1590,1592,1594,1596,1598,1600,1602,1604,1606,1608,1610,1612,1614,1616,1618,1620,1622,1624,1626,1628,1630,1632,1634,1636,1638,1640,1642,1644,1646,1648,1650,1652,1654,1656,1658,1660,1662,1664,1666,1668,1670,1672,1674,1676,1678,1680,1682,1684,1686,1688,1690,1692,1694,1696,1698,1700,1702,1704,1706,1708,1710,1712,1714,1716,1718,1720,1722,1724,1726,1728,1730,1732,1734,1736,1738,1740,1742,1744,1746,1748,1750,1752,1754,1756,1758,1760,1762,1764,1766,1768,1770,1772,1774,1776,1778,1780,1782,1784,1786,1788,1790,1792,1794,1796,1798,1800,1802,1804,1806,1808,1810,1812,1814,1816,1818,1820,1822,1824,1826,1828,1830,1832,1834,1836,1838,1840,1842,1844,1846,1848,1850,1852,1854,1856,1858,1860,1862,1864,1866,1868,1870,1872,1874,1876,1878,1880,1882,1884,1886,1888,1890,1892,1894,1896,1898,1900,1902,1904,1906,1908,1910,1912,1914,1916,1918,1920,1922,1924,1926,1928,1930,1932,1934,1936,1938,1940,1942,1944,1946,1948,1950,1952,1954,1956,1958,1960,1962,1964,1966,1968,1970,1972,1974,1976,1978,1980,1982,1984,1986,1988,1990,1992,1994,1996,1998,2000,2002,2004,2006,2008,2010,2012,2014,2016,2018,2020,2022,2024,2026,2028,2030,2032,2034,2036,2038,2040,2042,2044,2046,2048,2050,2052,2054,2056,2058,2060,2062,2064,2066,2068,2070,2072,2074,2076,2078,2080,2082,2084,2086,2088,2090,2092,2094,2096,2098,2100,2102,2104,2106,2108,2110,2112,2114,2116,2118,2120,2122,2124,2126,2128,2130,2132,2134,2136,2138,2140,2142,2144,2146,2148,2150,2152,2154,2156,2158,2160,2162,2164,2166,2168,2170,2172,2174,2176,2178,2180,2182,2184,2186,2188,2190,2192,2194,2196,2198,2200,2202,2204,2206,2208,2210,2212,2214,2216,2218,2220,2222,2224,2226,2228,2230,2232,2234,2236,2238,2240,2242,2244,2246,2248,2250,2252,2254,2256,2258,2260,2262,2264,2266,2268,2270,2272,2274,2276,2278,2280,2282,2284,2286,2288,2290,2292,2294,2296,2298,2300,2302,2304,2306,2308,2310,2312,2314,2316,2318,2320,2322,2324,2326,2328,2330,2332,2334,2336,2338,2340,2342,2344,2346,2348,2350,2352,2354,2356,2358,2360,2362,2364,2366,2368,2370,2372,2374,2376,2378,2380,2382,2384,2386,2388,2390,2392,2394,2396,2398,2400,2402,2404,2406,2408,2410,2412,2414,2416,2418,2420,2422,2424,2426,2428,2430,2432,2434,2436,2438,2440,2442,2444,2446,2448,2450,2452,2454,2456,2458,2460,2462,2464,2466,2468,2470,2472,2474,2476,2478,2480,2482,2484,2486,2488,2490,2492,2494,2496,2498,2500,2502,2504,2506,2508,2510,2512,2514,2516,2518,2520,2522,2524,2526,2528,2530,2532,2534,2536,2538,2540,2542,2544,2546,2548,2550,2552,2554,2556,2558,2560,2562,2564,2566,2568,2570,2572,2574,2576,2578,2580,2582,2584,2586,2588,2590,2592,2594,2596,2598,2600,2602,2604,2606,2608,2610,2612,2614,2616,2618,2620,2622,2624,2626,2628,2630,2632,2634,2636,2638,2640,2642,2644,2646,2648,2650,2652,2654,2656,2658,2660,2662,2664,2666,2668,2670,2672,2674,2676,2678,2680,2682,2684,2686,2688,2690,2692,2694,2696,2698,2700,2702,2704,2706,2708,2710,2712,2714,2716,2718,2720,2722,2724,2726,2728,2730,2732,2734,2736,2738,2740,2742,2744,2746,2748,2750,2752,2754,2756,2758,2760,2762,2764,2766,2768,2770,2772,2774,2776,2778,2780,2782,2784,2786,2788,2790,2792,2794,2796,2798,2800,2802,2804,2806,2808,2810,2812,2814,2816,2818,2820,2822,2824,2826,2828,2830,2832,2834,2836,2838,2840,2842,2844,2846,2848,2850,2852,2854,2856,2858,2860,2862,2864,2866,2868,2870,2872,2874,2876,2878,2880,2882,2884,2886,2888,2890,2892,2894,2896,2898,2900,2902,2904,2906,2908,2910,2912,2914,2916,2918,2920,2922,2924,2926,2928,2930,2932,2934,2936,2938,2940,2942,2944,2946,2948,2950,2952,2954,2956,2958,2960,2962,2964,2966,2968,2970,2972,2974,2976,2978,2980,2982,2984,2986,2988,2990,2992,2994,2996,2998); +-- Query Hash: 167d1922c9b95e4de0a29a6f520cfaae +EXPLAIN (COSTS OFF) SELECT * FROM t_range_400k WHERE id in (1000,1002,1004,1006,1008,1010,1012,1014,1016,1018,1020,1022,1024,1026,1028,1030,1032,1034,1036,1038,1040,1042,1044,1046,1048,1050,1052,1054,1056,1058,1060,1062,1064,1066,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1088,1090,1092,1094,1096,1098,1100,1102,1104,1106,1108,1110,1112,1114,1116,1118,1120,1122,1124,1126,1128,1130,1132,1134,1136,1138,1140,1142,1144,1146,1148,1150,1152,1154,1156,1158,1160,1162,1164,1166,1168,1170,1172,1174,1176,1178,1180,1182,1184,1186,1188,1190,1192,1194,1196,1198,1200,1202,1204,1206,1208,1210,1212,1214,1216,1218,1220,1222,1224,1226,1228,1230,1232,1234,1236,1238,1240,1242,1244,1246,1248,1250,1252,1254,1256,1258,1260,1262,1264,1266,1268,1270,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292,1294,1296,1298,1300,1302,1304,1306,1308,1310,1312,1314,1316,1318,1320,1322,1324,1326,1328,1330,1332,1334,1336,1338,1340,1342,1344,1346,1348,1350,1352,1354,1356,1358,1360,1362,1364,1366,1368,1370,1372,1374,1376,1378,1380,1382,1384,1386,1388,1390,1392,1394,1396,1398,1400,1402,1404,1406,1408,1410,1412,1414,1416,1418,1420,1422,1424,1426,1428,1430,1432,1434,1436,1438,1440,1442,1444,1446,1448,1450,1452,1454,1456,1458,1460,1462,1464,1466,1468,1470,1472,1474,1476,1478,1480,1482,1484,1486,1488,1490,1492,1494,1496,1498,1500,1502,1504,1506,1508,1510,1512,1514,1516,1518,1520,1522,1524,1526,1528,1530,1532,1534,1536,1538,1540,1542,1544,1546,1548,1550,1552,1554,1556,1558,1560,1562,1564,1566,1568,1570,1572,1574,1576,1578,1580,1582,1584,1586,1588,1590,1592,1594,1596,1598,1600,1602,1604,1606,1608,1610,1612,1614,1616,1618,1620,1622,1624,1626,1628,1630,1632,1634,1636,1638,1640,1642,1644,1646,1648,1650,1652,1654,1656,1658,1660,1662,1664,1666,1668,1670,1672,1674,1676,1678,1680,1682,1684,1686,1688,1690,1692,1694,1696,1698,1700,1702,1704,1706,1708,1710,1712,1714,1716,1718,1720,1722,1724,1726,1728,1730,1732,1734,1736,1738,1740,1742,1744,1746,1748,1750,1752,1754,1756,1758,1760,1762,1764,1766,1768,1770,1772,1774,1776,1778,1780,1782,1784,1786,1788,1790,1792,1794,1796,1798,1800,1802,1804,1806,1808,1810,1812,1814,1816,1818,1820,1822,1824,1826,1828,1830,1832,1834,1836,1838,1840,1842,1844,1846,1848,1850,1852,1854,1856,1858,1860,1862,1864,1866,1868,1870,1872,1874,1876,1878,1880,1882,1884,1886,1888,1890,1892,1894,1896,1898,1900,1902,1904,1906,1908,1910,1912,1914,1916,1918,1920,1922,1924,1926,1928,1930,1932,1934,1936,1938,1940,1942,1944,1946,1948,1950,1952,1954,1956,1958,1960,1962,1964,1966,1968,1970,1972,1974,1976,1978,1980,1982,1984,1986,1988,1990,1992,1994,1996,1998,2000,2002,2004,2006,2008,2010,2012,2014,2016,2018,2020,2022,2024,2026,2028,2030,2032,2034,2036,2038,2040,2042,2044,2046,2048,2050,2052,2054,2056,2058,2060,2062,2064,2066,2068,2070,2072,2074,2076,2078,2080,2082,2084,2086,2088,2090,2092,2094,2096,2098,2100,2102,2104,2106,2108,2110,2112,2114,2116,2118,2120,2122,2124,2126,2128,2130,2132,2134,2136,2138,2140,2142,2144,2146,2148,2150,2152,2154,2156,2158,2160,2162,2164,2166,2168,2170,2172,2174,2176,2178,2180,2182,2184,2186,2188,2190,2192,2194,2196,2198,2200,2202,2204,2206,2208,2210,2212,2214,2216,2218,2220,2222,2224,2226,2228,2230,2232,2234,2236,2238,2240,2242,2244,2246,2248,2250,2252,2254,2256,2258,2260,2262,2264,2266,2268,2270,2272,2274,2276,2278,2280,2282,2284,2286,2288,2290,2292,2294,2296,2298,2300,2302,2304,2306,2308,2310,2312,2314,2316,2318,2320,2322,2324,2326,2328,2330,2332,2334,2336,2338,2340,2342,2344,2346,2348,2350,2352,2354,2356,2358,2360,2362,2364,2366,2368,2370,2372,2374,2376,2378,2380,2382,2384,2386,2388,2390,2392,2394,2396,2398,2400,2402,2404,2406,2408,2410,2412,2414,2416,2418,2420,2422,2424,2426,2428,2430,2432,2434,2436,2438,2440,2442,2444,2446,2448,2450,2452,2454,2456,2458,2460,2462,2464,2466,2468,2470,2472,2474,2476,2478,2480,2482,2484,2486,2488,2490,2492,2494,2496,2498,2500,2502,2504,2506,2508,2510,2512,2514,2516,2518,2520,2522,2524,2526,2528,2530,2532,2534,2536,2538,2540,2542,2544,2546,2548,2550,2552,2554,2556,2558,2560,2562,2564,2566,2568,2570,2572,2574,2576,2578,2580,2582,2584,2586,2588,2590,2592,2594,2596,2598,2600,2602,2604,2606,2608,2610,2612,2614,2616,2618,2620,2622,2624,2626,2628,2630,2632,2634,2636,2638,2640,2642,2644,2646,2648,2650,2652,2654,2656,2658,2660,2662,2664,2666,2668,2670,2672,2674,2676,2678,2680,2682,2684,2686,2688,2690,2692,2694,2696,2698,2700,2702,2704,2706,2708,2710,2712,2714,2716,2718,2720,2722,2724,2726,2728,2730,2732,2734,2736,2738,2740,2742,2744,2746,2748,2750,2752,2754,2756,2758,2760,2762,2764,2766,2768,2770,2772,2774,2776,2778,2780,2782,2784,2786,2788,2790,2792,2794,2796,2798,2800,2802,2804,2806,2808,2810,2812,2814,2816,2818,2820,2822,2824,2826,2828,2830,2832,2834,2836,2838,2840,2842,2844,2846,2848,2850,2852,2854,2856,2858,2860,2862,2864,2866,2868,2870,2872,2874,2876,2878,2880,2882,2884,2886,2888,2890,2892,2894,2896,2898,2900,2902,2904,2906,2908,2910,2912,2914,2916,2918,2920,2922,2924,2926,2928,2930,2932,2934,2936,2938,2940,2942,2944,2946,2948,2950,2952,2954,2956,2958,2960,2962,2964,2966,2968,2970,2972,2974,2976,2978,2980,2982,2984,2986,2988,2990,2992,2994,2996,2998); +-- Query Hash: 7f0864c159fb1f2bfe93fc67977c0dfa +EXPLAIN (COSTS OFF) SELECT * FROM t_range_800k WHERE id in (1000,1002,1004,1006,1008,1010,1012,1014,1016,1018,1020,1022,1024,1026,1028,1030,1032,1034,1036,1038,1040,1042,1044,1046,1048,1050,1052,1054,1056,1058,1060,1062,1064,1066,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1088,1090,1092,1094,1096,1098,1100,1102,1104,1106,1108,1110,1112,1114,1116,1118,1120,1122,1124,1126,1128,1130,1132,1134,1136,1138,1140,1142,1144,1146,1148,1150,1152,1154,1156,1158,1160,1162,1164,1166,1168,1170,1172,1174,1176,1178,1180,1182,1184,1186,1188,1190,1192,1194,1196,1198,1200,1202,1204,1206,1208,1210,1212,1214,1216,1218,1220,1222,1224,1226,1228,1230,1232,1234,1236,1238,1240,1242,1244,1246,1248,1250,1252,1254,1256,1258,1260,1262,1264,1266,1268,1270,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292,1294,1296,1298,1300,1302,1304,1306,1308,1310,1312,1314,1316,1318,1320,1322,1324,1326,1328,1330,1332,1334,1336,1338,1340,1342,1344,1346,1348,1350,1352,1354,1356,1358,1360,1362,1364,1366,1368,1370,1372,1374,1376,1378,1380,1382,1384,1386,1388,1390,1392,1394,1396,1398,1400,1402,1404,1406,1408,1410,1412,1414,1416,1418,1420,1422,1424,1426,1428,1430,1432,1434,1436,1438,1440,1442,1444,1446,1448,1450,1452,1454,1456,1458,1460,1462,1464,1466,1468,1470,1472,1474,1476,1478,1480,1482,1484,1486,1488,1490,1492,1494,1496,1498,1500,1502,1504,1506,1508,1510,1512,1514,1516,1518,1520,1522,1524,1526,1528,1530,1532,1534,1536,1538,1540,1542,1544,1546,1548,1550,1552,1554,1556,1558,1560,1562,1564,1566,1568,1570,1572,1574,1576,1578,1580,1582,1584,1586,1588,1590,1592,1594,1596,1598,1600,1602,1604,1606,1608,1610,1612,1614,1616,1618,1620,1622,1624,1626,1628,1630,1632,1634,1636,1638,1640,1642,1644,1646,1648,1650,1652,1654,1656,1658,1660,1662,1664,1666,1668,1670,1672,1674,1676,1678,1680,1682,1684,1686,1688,1690,1692,1694,1696,1698,1700,1702,1704,1706,1708,1710,1712,1714,1716,1718,1720,1722,1724,1726,1728,1730,1732,1734,1736,1738,1740,1742,1744,1746,1748,1750,1752,1754,1756,1758,1760,1762,1764,1766,1768,1770,1772,1774,1776,1778,1780,1782,1784,1786,1788,1790,1792,1794,1796,1798,1800,1802,1804,1806,1808,1810,1812,1814,1816,1818,1820,1822,1824,1826,1828,1830,1832,1834,1836,1838,1840,1842,1844,1846,1848,1850,1852,1854,1856,1858,1860,1862,1864,1866,1868,1870,1872,1874,1876,1878,1880,1882,1884,1886,1888,1890,1892,1894,1896,1898,1900,1902,1904,1906,1908,1910,1912,1914,1916,1918,1920,1922,1924,1926,1928,1930,1932,1934,1936,1938,1940,1942,1944,1946,1948,1950,1952,1954,1956,1958,1960,1962,1964,1966,1968,1970,1972,1974,1976,1978,1980,1982,1984,1986,1988,1990,1992,1994,1996,1998,2000,2002,2004,2006,2008,2010,2012,2014,2016,2018,2020,2022,2024,2026,2028,2030,2032,2034,2036,2038,2040,2042,2044,2046,2048,2050,2052,2054,2056,2058,2060,2062,2064,2066,2068,2070,2072,2074,2076,2078,2080,2082,2084,2086,2088,2090,2092,2094,2096,2098,2100,2102,2104,2106,2108,2110,2112,2114,2116,2118,2120,2122,2124,2126,2128,2130,2132,2134,2136,2138,2140,2142,2144,2146,2148,2150,2152,2154,2156,2158,2160,2162,2164,2166,2168,2170,2172,2174,2176,2178,2180,2182,2184,2186,2188,2190,2192,2194,2196,2198,2200,2202,2204,2206,2208,2210,2212,2214,2216,2218,2220,2222,2224,2226,2228,2230,2232,2234,2236,2238,2240,2242,2244,2246,2248,2250,2252,2254,2256,2258,2260,2262,2264,2266,2268,2270,2272,2274,2276,2278,2280,2282,2284,2286,2288,2290,2292,2294,2296,2298,2300,2302,2304,2306,2308,2310,2312,2314,2316,2318,2320,2322,2324,2326,2328,2330,2332,2334,2336,2338,2340,2342,2344,2346,2348,2350,2352,2354,2356,2358,2360,2362,2364,2366,2368,2370,2372,2374,2376,2378,2380,2382,2384,2386,2388,2390,2392,2394,2396,2398,2400,2402,2404,2406,2408,2410,2412,2414,2416,2418,2420,2422,2424,2426,2428,2430,2432,2434,2436,2438,2440,2442,2444,2446,2448,2450,2452,2454,2456,2458,2460,2462,2464,2466,2468,2470,2472,2474,2476,2478,2480,2482,2484,2486,2488,2490,2492,2494,2496,2498,2500,2502,2504,2506,2508,2510,2512,2514,2516,2518,2520,2522,2524,2526,2528,2530,2532,2534,2536,2538,2540,2542,2544,2546,2548,2550,2552,2554,2556,2558,2560,2562,2564,2566,2568,2570,2572,2574,2576,2578,2580,2582,2584,2586,2588,2590,2592,2594,2596,2598,2600,2602,2604,2606,2608,2610,2612,2614,2616,2618,2620,2622,2624,2626,2628,2630,2632,2634,2636,2638,2640,2642,2644,2646,2648,2650,2652,2654,2656,2658,2660,2662,2664,2666,2668,2670,2672,2674,2676,2678,2680,2682,2684,2686,2688,2690,2692,2694,2696,2698,2700,2702,2704,2706,2708,2710,2712,2714,2716,2718,2720,2722,2724,2726,2728,2730,2732,2734,2736,2738,2740,2742,2744,2746,2748,2750,2752,2754,2756,2758,2760,2762,2764,2766,2768,2770,2772,2774,2776,2778,2780,2782,2784,2786,2788,2790,2792,2794,2796,2798,2800,2802,2804,2806,2808,2810,2812,2814,2816,2818,2820,2822,2824,2826,2828,2830,2832,2834,2836,2838,2840,2842,2844,2846,2848,2850,2852,2854,2856,2858,2860,2862,2864,2866,2868,2870,2872,2874,2876,2878,2880,2882,2884,2886,2888,2890,2892,2894,2896,2898,2900,2902,2904,2906,2908,2910,2912,2914,2916,2918,2920,2922,2924,2926,2928,2930,2932,2934,2936,2938,2940,2942,2944,2946,2948,2950,2952,2954,2956,2958,2960,2962,2964,2966,2968,2970,2972,2974,2976,2978,2980,2982,2984,2986,2988,2990,2992,2994,2996,2998); +-- Query Hash: 6353cb90c7847f4060d03446e2af142c +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k WHERE id in (1000,1003,1006,1009,1012,1015,1018,1021,1024,1027,1030,1033,1036,1039,1042,1045,1048,1051,1054,1057,1060,1063,1066,1069,1072,1075,1078,1081,1084,1087,1090,1093,1096,1099,1102,1105,1108,1111,1114,1117,1120,1123,1126,1129,1132,1135,1138,1141,1144,1147,1150,1153,1156,1159,1162,1165,1168,1171,1174,1177,1180,1183,1186,1189,1192,1195,1198,1201,1204,1207,1210,1213,1216,1219,1222,1225,1228,1231,1234,1237,1240,1243,1246,1249,1252,1255,1258,1261,1264,1267,1270,1273,1276,1279,1282,1285,1288,1291,1294,1297,1300,1303,1306,1309,1312,1315,1318,1321,1324,1327,1330,1333,1336,1339,1342,1345,1348,1351,1354,1357,1360,1363,1366,1369,1372,1375,1378,1381,1384,1387,1390,1393,1396,1399,1402,1405,1408,1411,1414,1417,1420,1423,1426,1429,1432,1435,1438,1441,1444,1447,1450,1453,1456,1459,1462,1465,1468,1471,1474,1477,1480,1483,1486,1489,1492,1495,1498,1501,1504,1507,1510,1513,1516,1519,1522,1525,1528,1531,1534,1537,1540,1543,1546,1549,1552,1555,1558,1561,1564,1567,1570,1573,1576,1579,1582,1585,1588,1591,1594,1597,1600,1603,1606,1609,1612,1615,1618,1621,1624,1627,1630,1633,1636,1639,1642,1645,1648,1651,1654,1657,1660,1663,1666,1669,1672,1675,1678,1681,1684,1687,1690,1693,1696,1699,1702,1705,1708,1711,1714,1717,1720,1723,1726,1729,1732,1735,1738,1741,1744,1747,1750,1753,1756,1759,1762,1765,1768,1771,1774,1777,1780,1783,1786,1789,1792,1795,1798,1801,1804,1807,1810,1813,1816,1819,1822,1825,1828,1831,1834,1837,1840,1843,1846,1849,1852,1855,1858,1861,1864,1867,1870,1873,1876,1879,1882,1885,1888,1891,1894,1897,1900,1903,1906,1909,1912,1915,1918,1921,1924,1927,1930,1933,1936,1939,1942,1945,1948,1951,1954,1957,1960,1963,1966,1969,1972,1975,1978,1981,1984,1987,1990,1993,1996,1999,2002,2005,2008,2011,2014,2017,2020,2023,2026,2029,2032,2035,2038,2041,2044,2047,2050,2053,2056,2059,2062,2065,2068,2071,2074,2077,2080,2083,2086,2089,2092,2095,2098,2101,2104,2107,2110,2113,2116,2119,2122,2125,2128,2131,2134,2137,2140,2143,2146,2149,2152,2155,2158,2161,2164,2167,2170,2173,2176,2179,2182,2185,2188,2191,2194,2197,2200,2203,2206,2209,2212,2215,2218,2221,2224,2227,2230,2233,2236,2239,2242,2245,2248,2251,2254,2257,2260,2263,2266,2269,2272,2275,2278,2281,2284,2287,2290,2293,2296,2299,2302,2305,2308,2311,2314,2317,2320,2323,2326,2329,2332,2335,2338,2341,2344,2347,2350,2353,2356,2359,2362,2365,2368,2371,2374,2377,2380,2383,2386,2389,2392,2395,2398,2401,2404,2407,2410,2413,2416,2419,2422,2425,2428,2431,2434,2437,2440,2443,2446,2449,2452,2455,2458,2461,2464,2467,2470,2473,2476,2479,2482,2485,2488,2491,2494,2497,2500,2503,2506,2509,2512,2515,2518,2521,2524,2527,2530,2533,2536,2539,2542,2545,2548,2551,2554,2557,2560,2563,2566,2569,2572,2575,2578,2581,2584,2587,2590,2593,2596,2599,2602,2605,2608,2611,2614,2617,2620,2623,2626,2629,2632,2635,2638,2641,2644,2647,2650,2653,2656,2659,2662,2665,2668,2671,2674,2677,2680,2683,2686,2689,2692,2695,2698,2701,2704,2707,2710,2713,2716,2719,2722,2725,2728,2731,2734,2737,2740,2743,2746,2749,2752,2755,2758,2761,2764,2767,2770,2773,2776,2779,2782,2785,2788,2791,2794,2797,2800,2803,2806,2809,2812,2815,2818,2821,2824,2827,2830,2833,2836,2839,2842,2845,2848,2851,2854,2857,2860,2863,2866,2869,2872,2875,2878,2881,2884,2887,2890,2893,2896,2899,2902,2905,2908,2911,2914,2917,2920,2923,2926,2929,2932,2935,2938,2941,2944,2947,2950,2953,2956,2959,2962,2965,2968,2971,2974,2977,2980,2983,2986,2989,2992,2995,2998,3001,3004,3007,3010,3013,3016,3019,3022,3025,3028,3031,3034,3037,3040,3043,3046,3049,3052,3055,3058,3061,3064,3067,3070,3073,3076,3079,3082,3085,3088,3091,3094,3097,3100,3103,3106,3109,3112,3115,3118,3121,3124,3127,3130,3133,3136,3139,3142,3145,3148,3151,3154,3157,3160,3163,3166,3169,3172,3175,3178,3181,3184,3187,3190,3193,3196,3199,3202,3205,3208,3211,3214,3217,3220,3223,3226,3229,3232,3235,3238,3241,3244,3247,3250,3253,3256,3259,3262,3265,3268,3271,3274,3277,3280,3283,3286,3289,3292,3295,3298,3301,3304,3307,3310,3313,3316,3319,3322,3325,3328,3331,3334,3337,3340,3343,3346,3349,3352,3355,3358,3361,3364,3367,3370,3373,3376,3379,3382,3385,3388,3391,3394,3397,3400,3403,3406,3409,3412,3415,3418,3421,3424,3427,3430,3433,3436,3439,3442,3445,3448,3451,3454,3457,3460,3463,3466,3469,3472,3475,3478,3481,3484,3487,3490,3493,3496,3499,3502,3505,3508,3511,3514,3517,3520,3523,3526,3529,3532,3535,3538,3541,3544,3547,3550,3553,3556,3559,3562,3565,3568,3571,3574,3577,3580,3583,3586,3589,3592,3595,3598,3601,3604,3607,3610,3613,3616,3619,3622,3625,3628,3631,3634,3637,3640,3643,3646,3649,3652,3655,3658,3661,3664,3667,3670,3673,3676,3679,3682,3685,3688,3691,3694,3697,3700,3703,3706,3709,3712,3715,3718,3721,3724,3727,3730,3733,3736,3739,3742,3745,3748,3751,3754,3757,3760,3763,3766,3769,3772,3775,3778,3781,3784,3787,3790,3793,3796,3799,3802,3805,3808,3811,3814,3817,3820,3823,3826,3829,3832,3835,3838,3841,3844,3847,3850,3853,3856,3859,3862,3865,3868,3871,3874,3877,3880,3883,3886,3889,3892,3895,3898,3901,3904,3907,3910,3913,3916,3919,3922,3925,3928,3931,3934,3937,3940,3943,3946,3949,3952,3955,3958,3961,3964,3967,3970,3973,3976,3979,3982,3985,3988,3991,3994,3997); +-- Query Hash: 28ccced2188f69d563157387613f7174 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_200k WHERE id in (1000,1003,1006,1009,1012,1015,1018,1021,1024,1027,1030,1033,1036,1039,1042,1045,1048,1051,1054,1057,1060,1063,1066,1069,1072,1075,1078,1081,1084,1087,1090,1093,1096,1099,1102,1105,1108,1111,1114,1117,1120,1123,1126,1129,1132,1135,1138,1141,1144,1147,1150,1153,1156,1159,1162,1165,1168,1171,1174,1177,1180,1183,1186,1189,1192,1195,1198,1201,1204,1207,1210,1213,1216,1219,1222,1225,1228,1231,1234,1237,1240,1243,1246,1249,1252,1255,1258,1261,1264,1267,1270,1273,1276,1279,1282,1285,1288,1291,1294,1297,1300,1303,1306,1309,1312,1315,1318,1321,1324,1327,1330,1333,1336,1339,1342,1345,1348,1351,1354,1357,1360,1363,1366,1369,1372,1375,1378,1381,1384,1387,1390,1393,1396,1399,1402,1405,1408,1411,1414,1417,1420,1423,1426,1429,1432,1435,1438,1441,1444,1447,1450,1453,1456,1459,1462,1465,1468,1471,1474,1477,1480,1483,1486,1489,1492,1495,1498,1501,1504,1507,1510,1513,1516,1519,1522,1525,1528,1531,1534,1537,1540,1543,1546,1549,1552,1555,1558,1561,1564,1567,1570,1573,1576,1579,1582,1585,1588,1591,1594,1597,1600,1603,1606,1609,1612,1615,1618,1621,1624,1627,1630,1633,1636,1639,1642,1645,1648,1651,1654,1657,1660,1663,1666,1669,1672,1675,1678,1681,1684,1687,1690,1693,1696,1699,1702,1705,1708,1711,1714,1717,1720,1723,1726,1729,1732,1735,1738,1741,1744,1747,1750,1753,1756,1759,1762,1765,1768,1771,1774,1777,1780,1783,1786,1789,1792,1795,1798,1801,1804,1807,1810,1813,1816,1819,1822,1825,1828,1831,1834,1837,1840,1843,1846,1849,1852,1855,1858,1861,1864,1867,1870,1873,1876,1879,1882,1885,1888,1891,1894,1897,1900,1903,1906,1909,1912,1915,1918,1921,1924,1927,1930,1933,1936,1939,1942,1945,1948,1951,1954,1957,1960,1963,1966,1969,1972,1975,1978,1981,1984,1987,1990,1993,1996,1999,2002,2005,2008,2011,2014,2017,2020,2023,2026,2029,2032,2035,2038,2041,2044,2047,2050,2053,2056,2059,2062,2065,2068,2071,2074,2077,2080,2083,2086,2089,2092,2095,2098,2101,2104,2107,2110,2113,2116,2119,2122,2125,2128,2131,2134,2137,2140,2143,2146,2149,2152,2155,2158,2161,2164,2167,2170,2173,2176,2179,2182,2185,2188,2191,2194,2197,2200,2203,2206,2209,2212,2215,2218,2221,2224,2227,2230,2233,2236,2239,2242,2245,2248,2251,2254,2257,2260,2263,2266,2269,2272,2275,2278,2281,2284,2287,2290,2293,2296,2299,2302,2305,2308,2311,2314,2317,2320,2323,2326,2329,2332,2335,2338,2341,2344,2347,2350,2353,2356,2359,2362,2365,2368,2371,2374,2377,2380,2383,2386,2389,2392,2395,2398,2401,2404,2407,2410,2413,2416,2419,2422,2425,2428,2431,2434,2437,2440,2443,2446,2449,2452,2455,2458,2461,2464,2467,2470,2473,2476,2479,2482,2485,2488,2491,2494,2497,2500,2503,2506,2509,2512,2515,2518,2521,2524,2527,2530,2533,2536,2539,2542,2545,2548,2551,2554,2557,2560,2563,2566,2569,2572,2575,2578,2581,2584,2587,2590,2593,2596,2599,2602,2605,2608,2611,2614,2617,2620,2623,2626,2629,2632,2635,2638,2641,2644,2647,2650,2653,2656,2659,2662,2665,2668,2671,2674,2677,2680,2683,2686,2689,2692,2695,2698,2701,2704,2707,2710,2713,2716,2719,2722,2725,2728,2731,2734,2737,2740,2743,2746,2749,2752,2755,2758,2761,2764,2767,2770,2773,2776,2779,2782,2785,2788,2791,2794,2797,2800,2803,2806,2809,2812,2815,2818,2821,2824,2827,2830,2833,2836,2839,2842,2845,2848,2851,2854,2857,2860,2863,2866,2869,2872,2875,2878,2881,2884,2887,2890,2893,2896,2899,2902,2905,2908,2911,2914,2917,2920,2923,2926,2929,2932,2935,2938,2941,2944,2947,2950,2953,2956,2959,2962,2965,2968,2971,2974,2977,2980,2983,2986,2989,2992,2995,2998,3001,3004,3007,3010,3013,3016,3019,3022,3025,3028,3031,3034,3037,3040,3043,3046,3049,3052,3055,3058,3061,3064,3067,3070,3073,3076,3079,3082,3085,3088,3091,3094,3097,3100,3103,3106,3109,3112,3115,3118,3121,3124,3127,3130,3133,3136,3139,3142,3145,3148,3151,3154,3157,3160,3163,3166,3169,3172,3175,3178,3181,3184,3187,3190,3193,3196,3199,3202,3205,3208,3211,3214,3217,3220,3223,3226,3229,3232,3235,3238,3241,3244,3247,3250,3253,3256,3259,3262,3265,3268,3271,3274,3277,3280,3283,3286,3289,3292,3295,3298,3301,3304,3307,3310,3313,3316,3319,3322,3325,3328,3331,3334,3337,3340,3343,3346,3349,3352,3355,3358,3361,3364,3367,3370,3373,3376,3379,3382,3385,3388,3391,3394,3397,3400,3403,3406,3409,3412,3415,3418,3421,3424,3427,3430,3433,3436,3439,3442,3445,3448,3451,3454,3457,3460,3463,3466,3469,3472,3475,3478,3481,3484,3487,3490,3493,3496,3499,3502,3505,3508,3511,3514,3517,3520,3523,3526,3529,3532,3535,3538,3541,3544,3547,3550,3553,3556,3559,3562,3565,3568,3571,3574,3577,3580,3583,3586,3589,3592,3595,3598,3601,3604,3607,3610,3613,3616,3619,3622,3625,3628,3631,3634,3637,3640,3643,3646,3649,3652,3655,3658,3661,3664,3667,3670,3673,3676,3679,3682,3685,3688,3691,3694,3697,3700,3703,3706,3709,3712,3715,3718,3721,3724,3727,3730,3733,3736,3739,3742,3745,3748,3751,3754,3757,3760,3763,3766,3769,3772,3775,3778,3781,3784,3787,3790,3793,3796,3799,3802,3805,3808,3811,3814,3817,3820,3823,3826,3829,3832,3835,3838,3841,3844,3847,3850,3853,3856,3859,3862,3865,3868,3871,3874,3877,3880,3883,3886,3889,3892,3895,3898,3901,3904,3907,3910,3913,3916,3919,3922,3925,3928,3931,3934,3937,3940,3943,3946,3949,3952,3955,3958,3961,3964,3967,3970,3973,3976,3979,3982,3985,3988,3991,3994,3997); +-- Query Hash: c5e2c98de808494dabf3ee86d6b10194 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_400k WHERE id in (1000,1003,1006,1009,1012,1015,1018,1021,1024,1027,1030,1033,1036,1039,1042,1045,1048,1051,1054,1057,1060,1063,1066,1069,1072,1075,1078,1081,1084,1087,1090,1093,1096,1099,1102,1105,1108,1111,1114,1117,1120,1123,1126,1129,1132,1135,1138,1141,1144,1147,1150,1153,1156,1159,1162,1165,1168,1171,1174,1177,1180,1183,1186,1189,1192,1195,1198,1201,1204,1207,1210,1213,1216,1219,1222,1225,1228,1231,1234,1237,1240,1243,1246,1249,1252,1255,1258,1261,1264,1267,1270,1273,1276,1279,1282,1285,1288,1291,1294,1297,1300,1303,1306,1309,1312,1315,1318,1321,1324,1327,1330,1333,1336,1339,1342,1345,1348,1351,1354,1357,1360,1363,1366,1369,1372,1375,1378,1381,1384,1387,1390,1393,1396,1399,1402,1405,1408,1411,1414,1417,1420,1423,1426,1429,1432,1435,1438,1441,1444,1447,1450,1453,1456,1459,1462,1465,1468,1471,1474,1477,1480,1483,1486,1489,1492,1495,1498,1501,1504,1507,1510,1513,1516,1519,1522,1525,1528,1531,1534,1537,1540,1543,1546,1549,1552,1555,1558,1561,1564,1567,1570,1573,1576,1579,1582,1585,1588,1591,1594,1597,1600,1603,1606,1609,1612,1615,1618,1621,1624,1627,1630,1633,1636,1639,1642,1645,1648,1651,1654,1657,1660,1663,1666,1669,1672,1675,1678,1681,1684,1687,1690,1693,1696,1699,1702,1705,1708,1711,1714,1717,1720,1723,1726,1729,1732,1735,1738,1741,1744,1747,1750,1753,1756,1759,1762,1765,1768,1771,1774,1777,1780,1783,1786,1789,1792,1795,1798,1801,1804,1807,1810,1813,1816,1819,1822,1825,1828,1831,1834,1837,1840,1843,1846,1849,1852,1855,1858,1861,1864,1867,1870,1873,1876,1879,1882,1885,1888,1891,1894,1897,1900,1903,1906,1909,1912,1915,1918,1921,1924,1927,1930,1933,1936,1939,1942,1945,1948,1951,1954,1957,1960,1963,1966,1969,1972,1975,1978,1981,1984,1987,1990,1993,1996,1999,2002,2005,2008,2011,2014,2017,2020,2023,2026,2029,2032,2035,2038,2041,2044,2047,2050,2053,2056,2059,2062,2065,2068,2071,2074,2077,2080,2083,2086,2089,2092,2095,2098,2101,2104,2107,2110,2113,2116,2119,2122,2125,2128,2131,2134,2137,2140,2143,2146,2149,2152,2155,2158,2161,2164,2167,2170,2173,2176,2179,2182,2185,2188,2191,2194,2197,2200,2203,2206,2209,2212,2215,2218,2221,2224,2227,2230,2233,2236,2239,2242,2245,2248,2251,2254,2257,2260,2263,2266,2269,2272,2275,2278,2281,2284,2287,2290,2293,2296,2299,2302,2305,2308,2311,2314,2317,2320,2323,2326,2329,2332,2335,2338,2341,2344,2347,2350,2353,2356,2359,2362,2365,2368,2371,2374,2377,2380,2383,2386,2389,2392,2395,2398,2401,2404,2407,2410,2413,2416,2419,2422,2425,2428,2431,2434,2437,2440,2443,2446,2449,2452,2455,2458,2461,2464,2467,2470,2473,2476,2479,2482,2485,2488,2491,2494,2497,2500,2503,2506,2509,2512,2515,2518,2521,2524,2527,2530,2533,2536,2539,2542,2545,2548,2551,2554,2557,2560,2563,2566,2569,2572,2575,2578,2581,2584,2587,2590,2593,2596,2599,2602,2605,2608,2611,2614,2617,2620,2623,2626,2629,2632,2635,2638,2641,2644,2647,2650,2653,2656,2659,2662,2665,2668,2671,2674,2677,2680,2683,2686,2689,2692,2695,2698,2701,2704,2707,2710,2713,2716,2719,2722,2725,2728,2731,2734,2737,2740,2743,2746,2749,2752,2755,2758,2761,2764,2767,2770,2773,2776,2779,2782,2785,2788,2791,2794,2797,2800,2803,2806,2809,2812,2815,2818,2821,2824,2827,2830,2833,2836,2839,2842,2845,2848,2851,2854,2857,2860,2863,2866,2869,2872,2875,2878,2881,2884,2887,2890,2893,2896,2899,2902,2905,2908,2911,2914,2917,2920,2923,2926,2929,2932,2935,2938,2941,2944,2947,2950,2953,2956,2959,2962,2965,2968,2971,2974,2977,2980,2983,2986,2989,2992,2995,2998,3001,3004,3007,3010,3013,3016,3019,3022,3025,3028,3031,3034,3037,3040,3043,3046,3049,3052,3055,3058,3061,3064,3067,3070,3073,3076,3079,3082,3085,3088,3091,3094,3097,3100,3103,3106,3109,3112,3115,3118,3121,3124,3127,3130,3133,3136,3139,3142,3145,3148,3151,3154,3157,3160,3163,3166,3169,3172,3175,3178,3181,3184,3187,3190,3193,3196,3199,3202,3205,3208,3211,3214,3217,3220,3223,3226,3229,3232,3235,3238,3241,3244,3247,3250,3253,3256,3259,3262,3265,3268,3271,3274,3277,3280,3283,3286,3289,3292,3295,3298,3301,3304,3307,3310,3313,3316,3319,3322,3325,3328,3331,3334,3337,3340,3343,3346,3349,3352,3355,3358,3361,3364,3367,3370,3373,3376,3379,3382,3385,3388,3391,3394,3397,3400,3403,3406,3409,3412,3415,3418,3421,3424,3427,3430,3433,3436,3439,3442,3445,3448,3451,3454,3457,3460,3463,3466,3469,3472,3475,3478,3481,3484,3487,3490,3493,3496,3499,3502,3505,3508,3511,3514,3517,3520,3523,3526,3529,3532,3535,3538,3541,3544,3547,3550,3553,3556,3559,3562,3565,3568,3571,3574,3577,3580,3583,3586,3589,3592,3595,3598,3601,3604,3607,3610,3613,3616,3619,3622,3625,3628,3631,3634,3637,3640,3643,3646,3649,3652,3655,3658,3661,3664,3667,3670,3673,3676,3679,3682,3685,3688,3691,3694,3697,3700,3703,3706,3709,3712,3715,3718,3721,3724,3727,3730,3733,3736,3739,3742,3745,3748,3751,3754,3757,3760,3763,3766,3769,3772,3775,3778,3781,3784,3787,3790,3793,3796,3799,3802,3805,3808,3811,3814,3817,3820,3823,3826,3829,3832,3835,3838,3841,3844,3847,3850,3853,3856,3859,3862,3865,3868,3871,3874,3877,3880,3883,3886,3889,3892,3895,3898,3901,3904,3907,3910,3913,3916,3919,3922,3925,3928,3931,3934,3937,3940,3943,3946,3949,3952,3955,3958,3961,3964,3967,3970,3973,3976,3979,3982,3985,3988,3991,3994,3997); +-- Query Hash: 0d543f722cec0306f1c612a1664f31c3 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_800k WHERE id in (1000,1003,1006,1009,1012,1015,1018,1021,1024,1027,1030,1033,1036,1039,1042,1045,1048,1051,1054,1057,1060,1063,1066,1069,1072,1075,1078,1081,1084,1087,1090,1093,1096,1099,1102,1105,1108,1111,1114,1117,1120,1123,1126,1129,1132,1135,1138,1141,1144,1147,1150,1153,1156,1159,1162,1165,1168,1171,1174,1177,1180,1183,1186,1189,1192,1195,1198,1201,1204,1207,1210,1213,1216,1219,1222,1225,1228,1231,1234,1237,1240,1243,1246,1249,1252,1255,1258,1261,1264,1267,1270,1273,1276,1279,1282,1285,1288,1291,1294,1297,1300,1303,1306,1309,1312,1315,1318,1321,1324,1327,1330,1333,1336,1339,1342,1345,1348,1351,1354,1357,1360,1363,1366,1369,1372,1375,1378,1381,1384,1387,1390,1393,1396,1399,1402,1405,1408,1411,1414,1417,1420,1423,1426,1429,1432,1435,1438,1441,1444,1447,1450,1453,1456,1459,1462,1465,1468,1471,1474,1477,1480,1483,1486,1489,1492,1495,1498,1501,1504,1507,1510,1513,1516,1519,1522,1525,1528,1531,1534,1537,1540,1543,1546,1549,1552,1555,1558,1561,1564,1567,1570,1573,1576,1579,1582,1585,1588,1591,1594,1597,1600,1603,1606,1609,1612,1615,1618,1621,1624,1627,1630,1633,1636,1639,1642,1645,1648,1651,1654,1657,1660,1663,1666,1669,1672,1675,1678,1681,1684,1687,1690,1693,1696,1699,1702,1705,1708,1711,1714,1717,1720,1723,1726,1729,1732,1735,1738,1741,1744,1747,1750,1753,1756,1759,1762,1765,1768,1771,1774,1777,1780,1783,1786,1789,1792,1795,1798,1801,1804,1807,1810,1813,1816,1819,1822,1825,1828,1831,1834,1837,1840,1843,1846,1849,1852,1855,1858,1861,1864,1867,1870,1873,1876,1879,1882,1885,1888,1891,1894,1897,1900,1903,1906,1909,1912,1915,1918,1921,1924,1927,1930,1933,1936,1939,1942,1945,1948,1951,1954,1957,1960,1963,1966,1969,1972,1975,1978,1981,1984,1987,1990,1993,1996,1999,2002,2005,2008,2011,2014,2017,2020,2023,2026,2029,2032,2035,2038,2041,2044,2047,2050,2053,2056,2059,2062,2065,2068,2071,2074,2077,2080,2083,2086,2089,2092,2095,2098,2101,2104,2107,2110,2113,2116,2119,2122,2125,2128,2131,2134,2137,2140,2143,2146,2149,2152,2155,2158,2161,2164,2167,2170,2173,2176,2179,2182,2185,2188,2191,2194,2197,2200,2203,2206,2209,2212,2215,2218,2221,2224,2227,2230,2233,2236,2239,2242,2245,2248,2251,2254,2257,2260,2263,2266,2269,2272,2275,2278,2281,2284,2287,2290,2293,2296,2299,2302,2305,2308,2311,2314,2317,2320,2323,2326,2329,2332,2335,2338,2341,2344,2347,2350,2353,2356,2359,2362,2365,2368,2371,2374,2377,2380,2383,2386,2389,2392,2395,2398,2401,2404,2407,2410,2413,2416,2419,2422,2425,2428,2431,2434,2437,2440,2443,2446,2449,2452,2455,2458,2461,2464,2467,2470,2473,2476,2479,2482,2485,2488,2491,2494,2497,2500,2503,2506,2509,2512,2515,2518,2521,2524,2527,2530,2533,2536,2539,2542,2545,2548,2551,2554,2557,2560,2563,2566,2569,2572,2575,2578,2581,2584,2587,2590,2593,2596,2599,2602,2605,2608,2611,2614,2617,2620,2623,2626,2629,2632,2635,2638,2641,2644,2647,2650,2653,2656,2659,2662,2665,2668,2671,2674,2677,2680,2683,2686,2689,2692,2695,2698,2701,2704,2707,2710,2713,2716,2719,2722,2725,2728,2731,2734,2737,2740,2743,2746,2749,2752,2755,2758,2761,2764,2767,2770,2773,2776,2779,2782,2785,2788,2791,2794,2797,2800,2803,2806,2809,2812,2815,2818,2821,2824,2827,2830,2833,2836,2839,2842,2845,2848,2851,2854,2857,2860,2863,2866,2869,2872,2875,2878,2881,2884,2887,2890,2893,2896,2899,2902,2905,2908,2911,2914,2917,2920,2923,2926,2929,2932,2935,2938,2941,2944,2947,2950,2953,2956,2959,2962,2965,2968,2971,2974,2977,2980,2983,2986,2989,2992,2995,2998,3001,3004,3007,3010,3013,3016,3019,3022,3025,3028,3031,3034,3037,3040,3043,3046,3049,3052,3055,3058,3061,3064,3067,3070,3073,3076,3079,3082,3085,3088,3091,3094,3097,3100,3103,3106,3109,3112,3115,3118,3121,3124,3127,3130,3133,3136,3139,3142,3145,3148,3151,3154,3157,3160,3163,3166,3169,3172,3175,3178,3181,3184,3187,3190,3193,3196,3199,3202,3205,3208,3211,3214,3217,3220,3223,3226,3229,3232,3235,3238,3241,3244,3247,3250,3253,3256,3259,3262,3265,3268,3271,3274,3277,3280,3283,3286,3289,3292,3295,3298,3301,3304,3307,3310,3313,3316,3319,3322,3325,3328,3331,3334,3337,3340,3343,3346,3349,3352,3355,3358,3361,3364,3367,3370,3373,3376,3379,3382,3385,3388,3391,3394,3397,3400,3403,3406,3409,3412,3415,3418,3421,3424,3427,3430,3433,3436,3439,3442,3445,3448,3451,3454,3457,3460,3463,3466,3469,3472,3475,3478,3481,3484,3487,3490,3493,3496,3499,3502,3505,3508,3511,3514,3517,3520,3523,3526,3529,3532,3535,3538,3541,3544,3547,3550,3553,3556,3559,3562,3565,3568,3571,3574,3577,3580,3583,3586,3589,3592,3595,3598,3601,3604,3607,3610,3613,3616,3619,3622,3625,3628,3631,3634,3637,3640,3643,3646,3649,3652,3655,3658,3661,3664,3667,3670,3673,3676,3679,3682,3685,3688,3691,3694,3697,3700,3703,3706,3709,3712,3715,3718,3721,3724,3727,3730,3733,3736,3739,3742,3745,3748,3751,3754,3757,3760,3763,3766,3769,3772,3775,3778,3781,3784,3787,3790,3793,3796,3799,3802,3805,3808,3811,3814,3817,3820,3823,3826,3829,3832,3835,3838,3841,3844,3847,3850,3853,3856,3859,3862,3865,3868,3871,3874,3877,3880,3883,3886,3889,3892,3895,3898,3901,3904,3907,3910,3913,3916,3919,3922,3925,3928,3931,3934,3937,3940,3943,3946,3949,3952,3955,3958,3961,3964,3967,3970,3973,3976,3979,3982,3985,3988,3991,3994,3997); +-- Query Hash: f59aff38836fd18f7660e9d299b323d5 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); +-- Query Hash: 46c5f5b6c31d62cf0eedf95fa5869254 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_200k WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); +-- Query Hash: 82e1555fc50aae7a4634243c4179f8f4 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_400k WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); +-- Query Hash: f075a79f20910f7f9fb02cf29d58e408 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_800k WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); +-- Query Hash: 2444a94079c56124c3e124b23ca914e5 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023); +-- Query Hash: 6ec5b30f1571b8d2a011100c8e0c7a11 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1002,1004,1006,1008,1010,1012,1014,1016,1018,1020,1022,1024,1026,1028,1030,1032,1034,1036,1038,1040,1042,1044,1046,1048,1050,1052,1054,1056,1058,1060,1062,1064,1066,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1088,1090,1092,1094,1096,1098,1100,1102,1104,1106,1108,1110,1112,1114,1116,1118,1120,1122,1124,1126,1128,1130,1132,1134,1136,1138,1140,1142,1144,1146,1148,1150,1152,1154,1156,1158,1160,1162,1164,1166,1168,1170,1172,1174,1176,1178,1180,1182,1184,1186,1188,1190,1192,1194,1196,1198,1200,1202,1204,1206,1208,1210,1212,1214,1216,1218,1220,1222,1224,1226,1228,1230,1232,1234,1236,1238,1240,1242,1244,1246,1248,1250,1252,1254,1256,1258,1260,1262,1264,1266,1268,1270,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292,1294,1296,1298,1300,1302,1304,1306,1308,1310,1312,1314,1316,1318,1320,1322,1324,1326,1328,1330,1332,1334,1336,1338,1340,1342,1344,1346,1348,1350,1352,1354,1356,1358,1360,1362,1364,1366,1368,1370,1372,1374,1376,1378,1380,1382,1384,1386,1388,1390,1392,1394,1396,1398,1400,1402,1404,1406,1408,1410,1412,1414,1416,1418,1420,1422,1424,1426,1428,1430,1432,1434,1436,1438,1440,1442,1444,1446,1448,1450,1452,1454,1456,1458,1460,1462,1464,1466,1468,1470,1472,1474,1476,1478,1480,1482,1484,1486,1488,1490,1492,1494,1496,1498,1500,1502,1504,1506,1508,1510,1512,1514,1516,1518,1520,1522,1524,1526,1528,1530,1532,1534,1536,1538,1540,1542,1544,1546,1548,1550,1552,1554,1556,1558,1560,1562,1564,1566,1568,1570,1572,1574,1576,1578,1580,1582,1584,1586,1588,1590,1592,1594,1596,1598,1600,1602,1604,1606,1608,1610,1612,1614,1616,1618,1620,1622,1624,1626,1628,1630,1632,1634,1636,1638,1640,1642,1644,1646,1648,1650,1652,1654,1656,1658,1660,1662,1664,1666,1668,1670,1672,1674,1676,1678,1680,1682,1684,1686,1688,1690,1692,1694,1696,1698,1700,1702,1704,1706,1708,1710,1712,1714,1716,1718,1720,1722,1724,1726,1728,1730,1732,1734,1736,1738,1740,1742,1744,1746,1748,1750,1752,1754,1756,1758,1760,1762,1764,1766,1768,1770,1772,1774,1776,1778,1780,1782,1784,1786,1788,1790,1792,1794,1796,1798,1800,1802,1804,1806,1808,1810,1812,1814,1816,1818,1820,1822,1824,1826,1828,1830,1832,1834,1836,1838,1840,1842,1844,1846,1848,1850,1852,1854,1856,1858,1860,1862,1864,1866,1868,1870,1872,1874,1876,1878,1880,1882,1884,1886,1888,1890,1892,1894,1896,1898,1900,1902,1904,1906,1908,1910,1912,1914,1916,1918,1920,1922,1924,1926,1928,1930,1932,1934,1936,1938,1940,1942,1944,1946,1948,1950,1952,1954,1956,1958,1960,1962,1964,1966,1968,1970,1972,1974,1976,1978,1980,1982,1984,1986,1988,1990,1992,1994,1996,1998,2000,2002,2004,2006,2008,2010,2012,2014,2016,2018,2020,2022,2024,2026,2028,2030,2032,2034,2036,2038,2040,2042,2044,2046,2048,2050,2052,2054,2056,2058,2060,2062,2064,2066,2068,2070,2072,2074,2076,2078,2080,2082,2084,2086,2088,2090,2092,2094,2096,2098,2100,2102,2104,2106,2108,2110,2112,2114,2116,2118,2120,2122,2124,2126,2128,2130,2132,2134,2136,2138,2140,2142,2144,2146,2148,2150,2152,2154,2156,2158,2160,2162,2164,2166,2168,2170,2172,2174,2176,2178,2180,2182,2184,2186,2188,2190,2192,2194,2196,2198,2200,2202,2204,2206,2208,2210,2212,2214,2216,2218,2220,2222,2224,2226,2228,2230,2232,2234,2236,2238,2240,2242,2244,2246,2248,2250,2252,2254,2256,2258,2260,2262,2264,2266,2268,2270,2272,2274,2276,2278,2280,2282,2284,2286,2288,2290,2292,2294,2296,2298,2300,2302,2304,2306,2308,2310,2312,2314,2316,2318,2320,2322,2324,2326,2328,2330,2332,2334,2336,2338,2340,2342,2344,2346,2348,2350,2352,2354,2356,2358,2360,2362,2364,2366,2368,2370,2372,2374,2376,2378,2380,2382,2384,2386,2388,2390,2392,2394,2396,2398,2400,2402,2404,2406,2408,2410,2412,2414,2416,2418,2420,2422,2424,2426,2428,2430,2432,2434,2436,2438,2440,2442,2444,2446,2448,2450,2452,2454,2456,2458,2460,2462,2464,2466,2468,2470,2472,2474,2476,2478,2480,2482,2484,2486,2488,2490,2492,2494,2496,2498,2500,2502,2504,2506,2508,2510,2512,2514,2516,2518,2520,2522,2524,2526,2528,2530,2532,2534,2536,2538,2540,2542,2544,2546,2548,2550,2552,2554,2556,2558,2560,2562,2564,2566,2568,2570,2572,2574,2576,2578,2580,2582,2584,2586,2588,2590,2592,2594,2596,2598,2600,2602,2604,2606,2608,2610,2612,2614,2616,2618,2620,2622,2624,2626,2628,2630,2632,2634,2636,2638,2640,2642,2644,2646,2648,2650,2652,2654,2656,2658,2660,2662,2664,2666,2668,2670,2672,2674,2676,2678,2680,2682,2684,2686,2688,2690,2692,2694,2696,2698,2700,2702,2704,2706,2708,2710,2712,2714,2716,2718,2720,2722,2724,2726,2728,2730,2732,2734,2736,2738,2740,2742,2744,2746,2748,2750,2752,2754,2756,2758,2760,2762,2764,2766,2768,2770,2772,2774,2776,2778,2780,2782,2784,2786,2788,2790,2792,2794,2796,2798,2800,2802,2804,2806,2808,2810,2812,2814,2816,2818,2820,2822,2824,2826,2828,2830,2832,2834,2836,2838,2840,2842,2844,2846,2848,2850,2852,2854,2856,2858,2860,2862,2864,2866,2868,2870,2872,2874,2876,2878,2880,2882,2884,2886,2888,2890,2892,2894,2896,2898,2900,2902,2904,2906,2908,2910,2912,2914,2916,2918,2920,2922,2924,2926,2928,2930,2932,2934,2936,2938,2940,2942,2944,2946,2948,2950,2952,2954,2956,2958,2960,2962,2964,2966,2968,2970,2972,2974,2976,2978,2980,2982,2984,2986,2988,2990,2992,2994,2996,2998,3000,3002,3004,3006,3008,3010,3012,3014,3016,3018,3020,3022,3024,3026,3028,3030,3032,3034,3036,3038,3040,3042,3044,3046); +-- Query Hash: ba1ed806efe431ffb9055da4e7369d8d +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1003,1006,1009,1012,1015,1018,1021,1024,1027,1030,1033,1036,1039,1042,1045,1048,1051,1054,1057,1060,1063,1066,1069,1072,1075,1078,1081,1084,1087,1090,1093,1096,1099,1102,1105,1108,1111,1114,1117,1120,1123,1126,1129,1132,1135,1138,1141,1144,1147,1150,1153,1156,1159,1162,1165,1168,1171,1174,1177,1180,1183,1186,1189,1192,1195,1198,1201,1204,1207,1210,1213,1216,1219,1222,1225,1228,1231,1234,1237,1240,1243,1246,1249,1252,1255,1258,1261,1264,1267,1270,1273,1276,1279,1282,1285,1288,1291,1294,1297,1300,1303,1306,1309,1312,1315,1318,1321,1324,1327,1330,1333,1336,1339,1342,1345,1348,1351,1354,1357,1360,1363,1366,1369,1372,1375,1378,1381,1384,1387,1390,1393,1396,1399,1402,1405,1408,1411,1414,1417,1420,1423,1426,1429,1432,1435,1438,1441,1444,1447,1450,1453,1456,1459,1462,1465,1468,1471,1474,1477,1480,1483,1486,1489,1492,1495,1498,1501,1504,1507,1510,1513,1516,1519,1522,1525,1528,1531,1534,1537,1540,1543,1546,1549,1552,1555,1558,1561,1564,1567,1570,1573,1576,1579,1582,1585,1588,1591,1594,1597,1600,1603,1606,1609,1612,1615,1618,1621,1624,1627,1630,1633,1636,1639,1642,1645,1648,1651,1654,1657,1660,1663,1666,1669,1672,1675,1678,1681,1684,1687,1690,1693,1696,1699,1702,1705,1708,1711,1714,1717,1720,1723,1726,1729,1732,1735,1738,1741,1744,1747,1750,1753,1756,1759,1762,1765,1768,1771,1774,1777,1780,1783,1786,1789,1792,1795,1798,1801,1804,1807,1810,1813,1816,1819,1822,1825,1828,1831,1834,1837,1840,1843,1846,1849,1852,1855,1858,1861,1864,1867,1870,1873,1876,1879,1882,1885,1888,1891,1894,1897,1900,1903,1906,1909,1912,1915,1918,1921,1924,1927,1930,1933,1936,1939,1942,1945,1948,1951,1954,1957,1960,1963,1966,1969,1972,1975,1978,1981,1984,1987,1990,1993,1996,1999,2002,2005,2008,2011,2014,2017,2020,2023,2026,2029,2032,2035,2038,2041,2044,2047,2050,2053,2056,2059,2062,2065,2068,2071,2074,2077,2080,2083,2086,2089,2092,2095,2098,2101,2104,2107,2110,2113,2116,2119,2122,2125,2128,2131,2134,2137,2140,2143,2146,2149,2152,2155,2158,2161,2164,2167,2170,2173,2176,2179,2182,2185,2188,2191,2194,2197,2200,2203,2206,2209,2212,2215,2218,2221,2224,2227,2230,2233,2236,2239,2242,2245,2248,2251,2254,2257,2260,2263,2266,2269,2272,2275,2278,2281,2284,2287,2290,2293,2296,2299,2302,2305,2308,2311,2314,2317,2320,2323,2326,2329,2332,2335,2338,2341,2344,2347,2350,2353,2356,2359,2362,2365,2368,2371,2374,2377,2380,2383,2386,2389,2392,2395,2398,2401,2404,2407,2410,2413,2416,2419,2422,2425,2428,2431,2434,2437,2440,2443,2446,2449,2452,2455,2458,2461,2464,2467,2470,2473,2476,2479,2482,2485,2488,2491,2494,2497,2500,2503,2506,2509,2512,2515,2518,2521,2524,2527,2530,2533,2536,2539,2542,2545,2548,2551,2554,2557,2560,2563,2566,2569,2572,2575,2578,2581,2584,2587,2590,2593,2596,2599,2602,2605,2608,2611,2614,2617,2620,2623,2626,2629,2632,2635,2638,2641,2644,2647,2650,2653,2656,2659,2662,2665,2668,2671,2674,2677,2680,2683,2686,2689,2692,2695,2698,2701,2704,2707,2710,2713,2716,2719,2722,2725,2728,2731,2734,2737,2740,2743,2746,2749,2752,2755,2758,2761,2764,2767,2770,2773,2776,2779,2782,2785,2788,2791,2794,2797,2800,2803,2806,2809,2812,2815,2818,2821,2824,2827,2830,2833,2836,2839,2842,2845,2848,2851,2854,2857,2860,2863,2866,2869,2872,2875,2878,2881,2884,2887,2890,2893,2896,2899,2902,2905,2908,2911,2914,2917,2920,2923,2926,2929,2932,2935,2938,2941,2944,2947,2950,2953,2956,2959,2962,2965,2968,2971,2974,2977,2980,2983,2986,2989,2992,2995,2998,3001,3004,3007,3010,3013,3016,3019,3022,3025,3028,3031,3034,3037,3040,3043,3046,3049,3052,3055,3058,3061,3064,3067,3070,3073,3076,3079,3082,3085,3088,3091,3094,3097,3100,3103,3106,3109,3112,3115,3118,3121,3124,3127,3130,3133,3136,3139,3142,3145,3148,3151,3154,3157,3160,3163,3166,3169,3172,3175,3178,3181,3184,3187,3190,3193,3196,3199,3202,3205,3208,3211,3214,3217,3220,3223,3226,3229,3232,3235,3238,3241,3244,3247,3250,3253,3256,3259,3262,3265,3268,3271,3274,3277,3280,3283,3286,3289,3292,3295,3298,3301,3304,3307,3310,3313,3316,3319,3322,3325,3328,3331,3334,3337,3340,3343,3346,3349,3352,3355,3358,3361,3364,3367,3370,3373,3376,3379,3382,3385,3388,3391,3394,3397,3400,3403,3406,3409,3412,3415,3418,3421,3424,3427,3430,3433,3436,3439,3442,3445,3448,3451,3454,3457,3460,3463,3466,3469,3472,3475,3478,3481,3484,3487,3490,3493,3496,3499,3502,3505,3508,3511,3514,3517,3520,3523,3526,3529,3532,3535,3538,3541,3544,3547,3550,3553,3556,3559,3562,3565,3568,3571,3574,3577,3580,3583,3586,3589,3592,3595,3598,3601,3604,3607,3610,3613,3616,3619,3622,3625,3628,3631,3634,3637,3640,3643,3646,3649,3652,3655,3658,3661,3664,3667,3670,3673,3676,3679,3682,3685,3688,3691,3694,3697,3700,3703,3706,3709,3712,3715,3718,3721,3724,3727,3730,3733,3736,3739,3742,3745,3748,3751,3754,3757,3760,3763,3766,3769,3772,3775,3778,3781,3784,3787,3790,3793,3796,3799,3802,3805,3808,3811,3814,3817,3820,3823,3826,3829,3832,3835,3838,3841,3844,3847,3850,3853,3856,3859,3862,3865,3868,3871,3874,3877,3880,3883,3886,3889,3892,3895,3898,3901,3904,3907,3910,3913,3916,3919,3922,3925,3928,3931,3934,3937,3940,3943,3946,3949,3952,3955,3958,3961,3964,3967,3970,3973,3976,3979,3982,3985,3988,3991,3994,3997,4000,4003,4006,4009,4012,4015,4018,4021,4024,4027,4030,4033,4036,4039,4042,4045,4048,4051,4054,4057,4060,4063,4066,4069); +-- Query Hash: d928fd8ee21dca9352127853c7736c00 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996,5000,5004,5008,5012,5016,5020,5024,5028,5032,5036,5040,5044,5048,5052,5056,5060,5064,5068,5072,5076,5080,5084,5088,5092); +-- Query Hash: af8f366ef942a5bd39311c440b01c88d +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1008,1016,1024,1032,1040,1048,1056,1064,1072,1080,1088,1096,1104,1112,1120,1128,1136,1144,1152,1160,1168,1176,1184,1192,1200,1208,1216,1224,1232,1240,1248,1256,1264,1272,1280,1288,1296,1304,1312,1320,1328,1336,1344,1352,1360,1368,1376,1384,1392,1400,1408,1416,1424,1432,1440,1448,1456,1464,1472,1480,1488,1496,1504,1512,1520,1528,1536,1544,1552,1560,1568,1576,1584,1592,1600,1608,1616,1624,1632,1640,1648,1656,1664,1672,1680,1688,1696,1704,1712,1720,1728,1736,1744,1752,1760,1768,1776,1784,1792,1800,1808,1816,1824,1832,1840,1848,1856,1864,1872,1880,1888,1896,1904,1912,1920,1928,1936,1944,1952,1960,1968,1976,1984,1992,2000,2008,2016,2024,2032,2040,2048,2056,2064,2072,2080,2088,2096,2104,2112,2120,2128,2136,2144,2152,2160,2168,2176,2184,2192,2200,2208,2216,2224,2232,2240,2248,2256,2264,2272,2280,2288,2296,2304,2312,2320,2328,2336,2344,2352,2360,2368,2376,2384,2392,2400,2408,2416,2424,2432,2440,2448,2456,2464,2472,2480,2488,2496,2504,2512,2520,2528,2536,2544,2552,2560,2568,2576,2584,2592,2600,2608,2616,2624,2632,2640,2648,2656,2664,2672,2680,2688,2696,2704,2712,2720,2728,2736,2744,2752,2760,2768,2776,2784,2792,2800,2808,2816,2824,2832,2840,2848,2856,2864,2872,2880,2888,2896,2904,2912,2920,2928,2936,2944,2952,2960,2968,2976,2984,2992,3000,3008,3016,3024,3032,3040,3048,3056,3064,3072,3080,3088,3096,3104,3112,3120,3128,3136,3144,3152,3160,3168,3176,3184,3192,3200,3208,3216,3224,3232,3240,3248,3256,3264,3272,3280,3288,3296,3304,3312,3320,3328,3336,3344,3352,3360,3368,3376,3384,3392,3400,3408,3416,3424,3432,3440,3448,3456,3464,3472,3480,3488,3496,3504,3512,3520,3528,3536,3544,3552,3560,3568,3576,3584,3592,3600,3608,3616,3624,3632,3640,3648,3656,3664,3672,3680,3688,3696,3704,3712,3720,3728,3736,3744,3752,3760,3768,3776,3784,3792,3800,3808,3816,3824,3832,3840,3848,3856,3864,3872,3880,3888,3896,3904,3912,3920,3928,3936,3944,3952,3960,3968,3976,3984,3992,4000,4008,4016,4024,4032,4040,4048,4056,4064,4072,4080,4088,4096,4104,4112,4120,4128,4136,4144,4152,4160,4168,4176,4184,4192,4200,4208,4216,4224,4232,4240,4248,4256,4264,4272,4280,4288,4296,4304,4312,4320,4328,4336,4344,4352,4360,4368,4376,4384,4392,4400,4408,4416,4424,4432,4440,4448,4456,4464,4472,4480,4488,4496,4504,4512,4520,4528,4536,4544,4552,4560,4568,4576,4584,4592,4600,4608,4616,4624,4632,4640,4648,4656,4664,4672,4680,4688,4696,4704,4712,4720,4728,4736,4744,4752,4760,4768,4776,4784,4792,4800,4808,4816,4824,4832,4840,4848,4856,4864,4872,4880,4888,4896,4904,4912,4920,4928,4936,4944,4952,4960,4968,4976,4984,4992,5000,5008,5016,5024,5032,5040,5048,5056,5064,5072,5080,5088,5096,5104,5112,5120,5128,5136,5144,5152,5160,5168,5176,5184,5192,5200,5208,5216,5224,5232,5240,5248,5256,5264,5272,5280,5288,5296,5304,5312,5320,5328,5336,5344,5352,5360,5368,5376,5384,5392,5400,5408,5416,5424,5432,5440,5448,5456,5464,5472,5480,5488,5496,5504,5512,5520,5528,5536,5544,5552,5560,5568,5576,5584,5592,5600,5608,5616,5624,5632,5640,5648,5656,5664,5672,5680,5688,5696,5704,5712,5720,5728,5736,5744,5752,5760,5768,5776,5784,5792,5800,5808,5816,5824,5832,5840,5848,5856,5864,5872,5880,5888,5896,5904,5912,5920,5928,5936,5944,5952,5960,5968,5976,5984,5992,6000,6008,6016,6024,6032,6040,6048,6056,6064,6072,6080,6088,6096,6104,6112,6120,6128,6136,6144,6152,6160,6168,6176,6184,6192,6200,6208,6216,6224,6232,6240,6248,6256,6264,6272,6280,6288,6296,6304,6312,6320,6328,6336,6344,6352,6360,6368,6376,6384,6392,6400,6408,6416,6424,6432,6440,6448,6456,6464,6472,6480,6488,6496,6504,6512,6520,6528,6536,6544,6552,6560,6568,6576,6584,6592,6600,6608,6616,6624,6632,6640,6648,6656,6664,6672,6680,6688,6696,6704,6712,6720,6728,6736,6744,6752,6760,6768,6776,6784,6792,6800,6808,6816,6824,6832,6840,6848,6856,6864,6872,6880,6888,6896,6904,6912,6920,6928,6936,6944,6952,6960,6968,6976,6984,6992,7000,7008,7016,7024,7032,7040,7048,7056,7064,7072,7080,7088,7096,7104,7112,7120,7128,7136,7144,7152,7160,7168,7176,7184,7192,7200,7208,7216,7224,7232,7240,7248,7256,7264,7272,7280,7288,7296,7304,7312,7320,7328,7336,7344,7352,7360,7368,7376,7384,7392,7400,7408,7416,7424,7432,7440,7448,7456,7464,7472,7480,7488,7496,7504,7512,7520,7528,7536,7544,7552,7560,7568,7576,7584,7592,7600,7608,7616,7624,7632,7640,7648,7656,7664,7672,7680,7688,7696,7704,7712,7720,7728,7736,7744,7752,7760,7768,7776,7784,7792,7800,7808,7816,7824,7832,7840,7848,7856,7864,7872,7880,7888,7896,7904,7912,7920,7928,7936,7944,7952,7960,7968,7976,7984,7992,8000,8008,8016,8024,8032,8040,8048,8056,8064,8072,8080,8088,8096,8104,8112,8120,8128,8136,8144,8152,8160,8168,8176,8184,8192,8200,8208,8216,8224,8232,8240,8248,8256,8264,8272,8280,8288,8296,8304,8312,8320,8328,8336,8344,8352,8360,8368,8376,8384,8392,8400,8408,8416,8424,8432,8440,8448,8456,8464,8472,8480,8488,8496,8504,8512,8520,8528,8536,8544,8552,8560,8568,8576,8584,8592,8600,8608,8616,8624,8632,8640,8648,8656,8664,8672,8680,8688,8696,8704,8712,8720,8728,8736,8744,8752,8760,8768,8776,8784,8792,8800,8808,8816,8824,8832,8840,8848,8856,8864,8872,8880,8888,8896,8904,8912,8920,8928,8936,8944,8952,8960,8968,8976,8984,8992,9000,9008,9016,9024,9032,9040,9048,9056,9064,9072,9080,9088,9096,9104,9112,9120,9128,9136,9144,9152,9160,9168,9176,9184); +-- Query Hash: f0de79f07f4f6df232396000f8f27b85 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1016,1032,1048,1064,1080,1096,1112,1128,1144,1160,1176,1192,1208,1224,1240,1256,1272,1288,1304,1320,1336,1352,1368,1384,1400,1416,1432,1448,1464,1480,1496,1512,1528,1544,1560,1576,1592,1608,1624,1640,1656,1672,1688,1704,1720,1736,1752,1768,1784,1800,1816,1832,1848,1864,1880,1896,1912,1928,1944,1960,1976,1992,2008,2024,2040,2056,2072,2088,2104,2120,2136,2152,2168,2184,2200,2216,2232,2248,2264,2280,2296,2312,2328,2344,2360,2376,2392,2408,2424,2440,2456,2472,2488,2504,2520,2536,2552,2568,2584,2600,2616,2632,2648,2664,2680,2696,2712,2728,2744,2760,2776,2792,2808,2824,2840,2856,2872,2888,2904,2920,2936,2952,2968,2984,3000,3016,3032,3048,3064,3080,3096,3112,3128,3144,3160,3176,3192,3208,3224,3240,3256,3272,3288,3304,3320,3336,3352,3368,3384,3400,3416,3432,3448,3464,3480,3496,3512,3528,3544,3560,3576,3592,3608,3624,3640,3656,3672,3688,3704,3720,3736,3752,3768,3784,3800,3816,3832,3848,3864,3880,3896,3912,3928,3944,3960,3976,3992,4008,4024,4040,4056,4072,4088,4104,4120,4136,4152,4168,4184,4200,4216,4232,4248,4264,4280,4296,4312,4328,4344,4360,4376,4392,4408,4424,4440,4456,4472,4488,4504,4520,4536,4552,4568,4584,4600,4616,4632,4648,4664,4680,4696,4712,4728,4744,4760,4776,4792,4808,4824,4840,4856,4872,4888,4904,4920,4936,4952,4968,4984,5000,5016,5032,5048,5064,5080,5096,5112,5128,5144,5160,5176,5192,5208,5224,5240,5256,5272,5288,5304,5320,5336,5352,5368,5384,5400,5416,5432,5448,5464,5480,5496,5512,5528,5544,5560,5576,5592,5608,5624,5640,5656,5672,5688,5704,5720,5736,5752,5768,5784,5800,5816,5832,5848,5864,5880,5896,5912,5928,5944,5960,5976,5992,6008,6024,6040,6056,6072,6088,6104,6120,6136,6152,6168,6184,6200,6216,6232,6248,6264,6280,6296,6312,6328,6344,6360,6376,6392,6408,6424,6440,6456,6472,6488,6504,6520,6536,6552,6568,6584,6600,6616,6632,6648,6664,6680,6696,6712,6728,6744,6760,6776,6792,6808,6824,6840,6856,6872,6888,6904,6920,6936,6952,6968,6984,7000,7016,7032,7048,7064,7080,7096,7112,7128,7144,7160,7176,7192,7208,7224,7240,7256,7272,7288,7304,7320,7336,7352,7368,7384,7400,7416,7432,7448,7464,7480,7496,7512,7528,7544,7560,7576,7592,7608,7624,7640,7656,7672,7688,7704,7720,7736,7752,7768,7784,7800,7816,7832,7848,7864,7880,7896,7912,7928,7944,7960,7976,7992,8008,8024,8040,8056,8072,8088,8104,8120,8136,8152,8168,8184,8200,8216,8232,8248,8264,8280,8296,8312,8328,8344,8360,8376,8392,8408,8424,8440,8456,8472,8488,8504,8520,8536,8552,8568,8584,8600,8616,8632,8648,8664,8680,8696,8712,8728,8744,8760,8776,8792,8808,8824,8840,8856,8872,8888,8904,8920,8936,8952,8968,8984,9000,9016,9032,9048,9064,9080,9096,9112,9128,9144,9160,9176,9192,9208,9224,9240,9256,9272,9288,9304,9320,9336,9352,9368,9384,9400,9416,9432,9448,9464,9480,9496,9512,9528,9544,9560,9576,9592,9608,9624,9640,9656,9672,9688,9704,9720,9736,9752,9768,9784,9800,9816,9832,9848,9864,9880,9896,9912,9928,9944,9960,9976,9992,10008,10024,10040,10056,10072,10088,10104,10120,10136,10152,10168,10184,10200,10216,10232,10248,10264,10280,10296,10312,10328,10344,10360,10376,10392,10408,10424,10440,10456,10472,10488,10504,10520,10536,10552,10568,10584,10600,10616,10632,10648,10664,10680,10696,10712,10728,10744,10760,10776,10792,10808,10824,10840,10856,10872,10888,10904,10920,10936,10952,10968,10984,11000,11016,11032,11048,11064,11080,11096,11112,11128,11144,11160,11176,11192,11208,11224,11240,11256,11272,11288,11304,11320,11336,11352,11368,11384,11400,11416,11432,11448,11464,11480,11496,11512,11528,11544,11560,11576,11592,11608,11624,11640,11656,11672,11688,11704,11720,11736,11752,11768,11784,11800,11816,11832,11848,11864,11880,11896,11912,11928,11944,11960,11976,11992,12008,12024,12040,12056,12072,12088,12104,12120,12136,12152,12168,12184,12200,12216,12232,12248,12264,12280,12296,12312,12328,12344,12360,12376,12392,12408,12424,12440,12456,12472,12488,12504,12520,12536,12552,12568,12584,12600,12616,12632,12648,12664,12680,12696,12712,12728,12744,12760,12776,12792,12808,12824,12840,12856,12872,12888,12904,12920,12936,12952,12968,12984,13000,13016,13032,13048,13064,13080,13096,13112,13128,13144,13160,13176,13192,13208,13224,13240,13256,13272,13288,13304,13320,13336,13352,13368,13384,13400,13416,13432,13448,13464,13480,13496,13512,13528,13544,13560,13576,13592,13608,13624,13640,13656,13672,13688,13704,13720,13736,13752,13768,13784,13800,13816,13832,13848,13864,13880,13896,13912,13928,13944,13960,13976,13992,14008,14024,14040,14056,14072,14088,14104,14120,14136,14152,14168,14184,14200,14216,14232,14248,14264,14280,14296,14312,14328,14344,14360,14376,14392,14408,14424,14440,14456,14472,14488,14504,14520,14536,14552,14568,14584,14600,14616,14632,14648,14664,14680,14696,14712,14728,14744,14760,14776,14792,14808,14824,14840,14856,14872,14888,14904,14920,14936,14952,14968,14984,15000,15016,15032,15048,15064,15080,15096,15112,15128,15144,15160,15176,15192,15208,15224,15240,15256,15272,15288,15304,15320,15336,15352,15368,15384,15400,15416,15432,15448,15464,15480,15496,15512,15528,15544,15560,15576,15592,15608,15624,15640,15656,15672,15688,15704,15720,15736,15752,15768,15784,15800,15816,15832,15848,15864,15880,15896,15912,15928,15944,15960,15976,15992,16008,16024,16040,16056,16072,16088,16104,16120,16136,16152,16168,16184,16200,16216,16232,16248,16264,16280,16296,16312,16328,16344,16360,16376,16392,16408,16424,16440,16456,16472,16488,16504,16520,16536,16552,16568,16584,16600,16616,16632,16648,16664,16680,16696,16712,16728,16744,16760,16776,16792,16808,16824,16840,16856,16872,16888,16904,16920,16936,16952,16968,16984,17000,17016,17032,17048,17064,17080,17096,17112,17128,17144,17160,17176,17192,17208,17224,17240,17256,17272,17288,17304,17320,17336,17352,17368); +-- Query Hash: f8da829631ba24b3db7241bc649461a8 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1032,1064,1096,1128,1160,1192,1224,1256,1288,1320,1352,1384,1416,1448,1480,1512,1544,1576,1608,1640,1672,1704,1736,1768,1800,1832,1864,1896,1928,1960,1992,2024,2056,2088,2120,2152,2184,2216,2248,2280,2312,2344,2376,2408,2440,2472,2504,2536,2568,2600,2632,2664,2696,2728,2760,2792,2824,2856,2888,2920,2952,2984,3016,3048,3080,3112,3144,3176,3208,3240,3272,3304,3336,3368,3400,3432,3464,3496,3528,3560,3592,3624,3656,3688,3720,3752,3784,3816,3848,3880,3912,3944,3976,4008,4040,4072,4104,4136,4168,4200,4232,4264,4296,4328,4360,4392,4424,4456,4488,4520,4552,4584,4616,4648,4680,4712,4744,4776,4808,4840,4872,4904,4936,4968,5000,5032,5064,5096,5128,5160,5192,5224,5256,5288,5320,5352,5384,5416,5448,5480,5512,5544,5576,5608,5640,5672,5704,5736,5768,5800,5832,5864,5896,5928,5960,5992,6024,6056,6088,6120,6152,6184,6216,6248,6280,6312,6344,6376,6408,6440,6472,6504,6536,6568,6600,6632,6664,6696,6728,6760,6792,6824,6856,6888,6920,6952,6984,7016,7048,7080,7112,7144,7176,7208,7240,7272,7304,7336,7368,7400,7432,7464,7496,7528,7560,7592,7624,7656,7688,7720,7752,7784,7816,7848,7880,7912,7944,7976,8008,8040,8072,8104,8136,8168,8200,8232,8264,8296,8328,8360,8392,8424,8456,8488,8520,8552,8584,8616,8648,8680,8712,8744,8776,8808,8840,8872,8904,8936,8968,9000,9032,9064,9096,9128,9160,9192,9224,9256,9288,9320,9352,9384,9416,9448,9480,9512,9544,9576,9608,9640,9672,9704,9736,9768,9800,9832,9864,9896,9928,9960,9992,10024,10056,10088,10120,10152,10184,10216,10248,10280,10312,10344,10376,10408,10440,10472,10504,10536,10568,10600,10632,10664,10696,10728,10760,10792,10824,10856,10888,10920,10952,10984,11016,11048,11080,11112,11144,11176,11208,11240,11272,11304,11336,11368,11400,11432,11464,11496,11528,11560,11592,11624,11656,11688,11720,11752,11784,11816,11848,11880,11912,11944,11976,12008,12040,12072,12104,12136,12168,12200,12232,12264,12296,12328,12360,12392,12424,12456,12488,12520,12552,12584,12616,12648,12680,12712,12744,12776,12808,12840,12872,12904,12936,12968,13000,13032,13064,13096,13128,13160,13192,13224,13256,13288,13320,13352,13384,13416,13448,13480,13512,13544,13576,13608,13640,13672,13704,13736,13768,13800,13832,13864,13896,13928,13960,13992,14024,14056,14088,14120,14152,14184,14216,14248,14280,14312,14344,14376,14408,14440,14472,14504,14536,14568,14600,14632,14664,14696,14728,14760,14792,14824,14856,14888,14920,14952,14984,15016,15048,15080,15112,15144,15176,15208,15240,15272,15304,15336,15368,15400,15432,15464,15496,15528,15560,15592,15624,15656,15688,15720,15752,15784,15816,15848,15880,15912,15944,15976,16008,16040,16072,16104,16136,16168,16200,16232,16264,16296,16328,16360,16392,16424,16456,16488,16520,16552,16584,16616,16648,16680,16712,16744,16776,16808,16840,16872,16904,16936,16968,17000,17032,17064,17096,17128,17160,17192,17224,17256,17288,17320,17352,17384,17416,17448,17480,17512,17544,17576,17608,17640,17672,17704,17736,17768,17800,17832,17864,17896,17928,17960,17992,18024,18056,18088,18120,18152,18184,18216,18248,18280,18312,18344,18376,18408,18440,18472,18504,18536,18568,18600,18632,18664,18696,18728,18760,18792,18824,18856,18888,18920,18952,18984,19016,19048,19080,19112,19144,19176,19208,19240,19272,19304,19336,19368,19400,19432,19464,19496,19528,19560,19592,19624,19656,19688,19720,19752,19784,19816,19848,19880,19912,19944,19976,20008,20040,20072,20104,20136,20168,20200,20232,20264,20296,20328,20360,20392,20424,20456,20488,20520,20552,20584,20616,20648,20680,20712,20744,20776,20808,20840,20872,20904,20936,20968,21000,21032,21064,21096,21128,21160,21192,21224,21256,21288,21320,21352,21384,21416,21448,21480,21512,21544,21576,21608,21640,21672,21704,21736,21768,21800,21832,21864,21896,21928,21960,21992,22024,22056,22088,22120,22152,22184,22216,22248,22280,22312,22344,22376,22408,22440,22472,22504,22536,22568,22600,22632,22664,22696,22728,22760,22792,22824,22856,22888,22920,22952,22984,23016,23048,23080,23112,23144,23176,23208,23240,23272,23304,23336,23368,23400,23432,23464,23496,23528,23560,23592,23624,23656,23688,23720,23752,23784,23816,23848,23880,23912,23944,23976,24008,24040,24072,24104,24136,24168,24200,24232,24264,24296,24328,24360,24392,24424,24456,24488,24520,24552,24584,24616,24648,24680,24712,24744,24776,24808,24840,24872,24904,24936,24968,25000,25032,25064,25096,25128,25160,25192,25224,25256,25288,25320,25352,25384,25416,25448,25480,25512,25544,25576,25608,25640,25672,25704,25736,25768,25800,25832,25864,25896,25928,25960,25992,26024,26056,26088,26120,26152,26184,26216,26248,26280,26312,26344,26376,26408,26440,26472,26504,26536,26568,26600,26632,26664,26696,26728,26760,26792,26824,26856,26888,26920,26952,26984,27016,27048,27080,27112,27144,27176,27208,27240,27272,27304,27336,27368,27400,27432,27464,27496,27528,27560,27592,27624,27656,27688,27720,27752,27784,27816,27848,27880,27912,27944,27976,28008,28040,28072,28104,28136,28168,28200,28232,28264,28296,28328,28360,28392,28424,28456,28488,28520,28552,28584,28616,28648,28680,28712,28744,28776,28808,28840,28872,28904,28936,28968,29000,29032,29064,29096,29128,29160,29192,29224,29256,29288,29320,29352,29384,29416,29448,29480,29512,29544,29576,29608,29640,29672,29704,29736,29768,29800,29832,29864,29896,29928,29960,29992,30024,30056,30088,30120,30152,30184,30216,30248,30280,30312,30344,30376,30408,30440,30472,30504,30536,30568,30600,30632,30664,30696,30728,30760,30792,30824,30856,30888,30920,30952,30984,31016,31048,31080,31112,31144,31176,31208,31240,31272,31304,31336,31368,31400,31432,31464,31496,31528,31560,31592,31624,31656,31688,31720,31752,31784,31816,31848,31880,31912,31944,31976,32008,32040,32072,32104,32136,32168,32200,32232,32264,32296,32328,32360,32392,32424,32456,32488,32520,32552,32584,32616,32648,32680,32712,32744,32776,32808,32840,32872,32904,32936,32968,33000,33032,33064,33096,33128,33160,33192,33224,33256,33288,33320,33352,33384,33416,33448,33480,33512,33544,33576,33608,33640,33672,33704,33736); +-- Query Hash: 63a381a2e9fbaf5fc8674e3b48484155 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1064,1128,1192,1256,1320,1384,1448,1512,1576,1640,1704,1768,1832,1896,1960,2024,2088,2152,2216,2280,2344,2408,2472,2536,2600,2664,2728,2792,2856,2920,2984,3048,3112,3176,3240,3304,3368,3432,3496,3560,3624,3688,3752,3816,3880,3944,4008,4072,4136,4200,4264,4328,4392,4456,4520,4584,4648,4712,4776,4840,4904,4968,5032,5096,5160,5224,5288,5352,5416,5480,5544,5608,5672,5736,5800,5864,5928,5992,6056,6120,6184,6248,6312,6376,6440,6504,6568,6632,6696,6760,6824,6888,6952,7016,7080,7144,7208,7272,7336,7400,7464,7528,7592,7656,7720,7784,7848,7912,7976,8040,8104,8168,8232,8296,8360,8424,8488,8552,8616,8680,8744,8808,8872,8936,9000,9064,9128,9192,9256,9320,9384,9448,9512,9576,9640,9704,9768,9832,9896,9960,10024,10088,10152,10216,10280,10344,10408,10472,10536,10600,10664,10728,10792,10856,10920,10984,11048,11112,11176,11240,11304,11368,11432,11496,11560,11624,11688,11752,11816,11880,11944,12008,12072,12136,12200,12264,12328,12392,12456,12520,12584,12648,12712,12776,12840,12904,12968,13032,13096,13160,13224,13288,13352,13416,13480,13544,13608,13672,13736,13800,13864,13928,13992,14056,14120,14184,14248,14312,14376,14440,14504,14568,14632,14696,14760,14824,14888,14952,15016,15080,15144,15208,15272,15336,15400,15464,15528,15592,15656,15720,15784,15848,15912,15976,16040,16104,16168,16232,16296,16360,16424,16488,16552,16616,16680,16744,16808,16872,16936,17000,17064,17128,17192,17256,17320,17384,17448,17512,17576,17640,17704,17768,17832,17896,17960,18024,18088,18152,18216,18280,18344,18408,18472,18536,18600,18664,18728,18792,18856,18920,18984,19048,19112,19176,19240,19304,19368,19432,19496,19560,19624,19688,19752,19816,19880,19944,20008,20072,20136,20200,20264,20328,20392,20456,20520,20584,20648,20712,20776,20840,20904,20968,21032,21096,21160,21224,21288,21352,21416,21480,21544,21608,21672,21736,21800,21864,21928,21992,22056,22120,22184,22248,22312,22376,22440,22504,22568,22632,22696,22760,22824,22888,22952,23016,23080,23144,23208,23272,23336,23400,23464,23528,23592,23656,23720,23784,23848,23912,23976,24040,24104,24168,24232,24296,24360,24424,24488,24552,24616,24680,24744,24808,24872,24936,25000,25064,25128,25192,25256,25320,25384,25448,25512,25576,25640,25704,25768,25832,25896,25960,26024,26088,26152,26216,26280,26344,26408,26472,26536,26600,26664,26728,26792,26856,26920,26984,27048,27112,27176,27240,27304,27368,27432,27496,27560,27624,27688,27752,27816,27880,27944,28008,28072,28136,28200,28264,28328,28392,28456,28520,28584,28648,28712,28776,28840,28904,28968,29032,29096,29160,29224,29288,29352,29416,29480,29544,29608,29672,29736,29800,29864,29928,29992,30056,30120,30184,30248,30312,30376,30440,30504,30568,30632,30696,30760,30824,30888,30952,31016,31080,31144,31208,31272,31336,31400,31464,31528,31592,31656,31720,31784,31848,31912,31976,32040,32104,32168,32232,32296,32360,32424,32488,32552,32616,32680,32744,32808,32872,32936,33000,33064,33128,33192,33256,33320,33384,33448,33512,33576,33640,33704,33768,33832,33896,33960,34024,34088,34152,34216,34280,34344,34408,34472,34536,34600,34664,34728,34792,34856,34920,34984,35048,35112,35176,35240,35304,35368,35432,35496,35560,35624,35688,35752,35816,35880,35944,36008,36072,36136,36200,36264,36328,36392,36456,36520,36584,36648,36712,36776,36840,36904,36968,37032,37096,37160,37224,37288,37352,37416,37480,37544,37608,37672,37736,37800,37864,37928,37992,38056,38120,38184,38248,38312,38376,38440,38504,38568,38632,38696,38760,38824,38888,38952,39016,39080,39144,39208,39272,39336,39400,39464,39528,39592,39656,39720,39784,39848,39912,39976,40040,40104,40168,40232,40296,40360,40424,40488,40552,40616,40680,40744,40808,40872,40936,41000,41064,41128,41192,41256,41320,41384,41448,41512,41576,41640,41704,41768,41832,41896,41960,42024,42088,42152,42216,42280,42344,42408,42472,42536,42600,42664,42728,42792,42856,42920,42984,43048,43112,43176,43240,43304,43368,43432,43496,43560,43624,43688,43752,43816,43880,43944,44008,44072,44136,44200,44264,44328,44392,44456,44520,44584,44648,44712,44776,44840,44904,44968,45032,45096,45160,45224,45288,45352,45416,45480,45544,45608,45672,45736,45800,45864,45928,45992,46056,46120,46184,46248,46312,46376,46440,46504,46568,46632,46696,46760,46824,46888,46952,47016,47080,47144,47208,47272,47336,47400,47464,47528,47592,47656,47720,47784,47848,47912,47976,48040,48104,48168,48232,48296,48360,48424,48488,48552,48616,48680,48744,48808,48872,48936,49000,49064,49128,49192,49256,49320,49384,49448,49512,49576,49640,49704,49768,49832,49896,49960,50024,50088,50152,50216,50280,50344,50408,50472,50536,50600,50664,50728,50792,50856,50920,50984,51048,51112,51176,51240,51304,51368,51432,51496,51560,51624,51688,51752,51816,51880,51944,52008,52072,52136,52200,52264,52328,52392,52456,52520,52584,52648,52712,52776,52840,52904,52968,53032,53096,53160,53224,53288,53352,53416,53480,53544,53608,53672,53736,53800,53864,53928,53992,54056,54120,54184,54248,54312,54376,54440,54504,54568,54632,54696,54760,54824,54888,54952,55016,55080,55144,55208,55272,55336,55400,55464,55528,55592,55656,55720,55784,55848,55912,55976,56040,56104,56168,56232,56296,56360,56424,56488,56552,56616,56680,56744,56808,56872,56936,57000,57064,57128,57192,57256,57320,57384,57448,57512,57576,57640,57704,57768,57832,57896,57960,58024,58088,58152,58216,58280,58344,58408,58472,58536,58600,58664,58728,58792,58856,58920,58984,59048,59112,59176,59240,59304,59368,59432,59496,59560,59624,59688,59752,59816,59880,59944,60008,60072,60136,60200,60264,60328,60392,60456,60520,60584,60648,60712,60776,60840,60904,60968,61032,61096,61160,61224,61288,61352,61416,61480,61544,61608,61672,61736,61800,61864,61928,61992,62056,62120,62184,62248,62312,62376,62440,62504,62568,62632,62696,62760,62824,62888,62952,63016,63080,63144,63208,63272,63336,63400,63464,63528,63592,63656,63720,63784,63848,63912,63976,64040,64104,64168,64232,64296,64360,64424,64488,64552,64616,64680,64744,64808,64872,64936,65000,65064,65128,65192,65256,65320,65384,65448,65512,65576,65640,65704,65768,65832,65896,65960,66024,66088,66152,66216,66280,66344,66408,66472); +-- Query Hash: e979851191d7883496b42c049695fbd9 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1128,1256,1384,1512,1640,1768,1896,2024,2152,2280,2408,2536,2664,2792,2920,3048,3176,3304,3432,3560,3688,3816,3944,4072,4200,4328,4456,4584,4712,4840,4968,5096,5224,5352,5480,5608,5736,5864,5992,6120,6248,6376,6504,6632,6760,6888,7016,7144,7272,7400,7528,7656,7784,7912,8040,8168,8296,8424,8552,8680,8808,8936,9064,9192,9320,9448,9576,9704,9832,9960,10088,10216,10344,10472,10600,10728,10856,10984,11112,11240,11368,11496,11624,11752,11880,12008,12136,12264,12392,12520,12648,12776,12904,13032,13160,13288,13416,13544,13672,13800,13928,14056,14184,14312,14440,14568,14696,14824,14952,15080,15208,15336,15464,15592,15720,15848,15976,16104,16232,16360,16488,16616,16744,16872,17000,17128,17256,17384,17512,17640,17768,17896,18024,18152,18280,18408,18536,18664,18792,18920,19048,19176,19304,19432,19560,19688,19816,19944,20072,20200,20328,20456,20584,20712,20840,20968,21096,21224,21352,21480,21608,21736,21864,21992,22120,22248,22376,22504,22632,22760,22888,23016,23144,23272,23400,23528,23656,23784,23912,24040,24168,24296,24424,24552,24680,24808,24936,25064,25192,25320,25448,25576,25704,25832,25960,26088,26216,26344,26472,26600,26728,26856,26984,27112,27240,27368,27496,27624,27752,27880,28008,28136,28264,28392,28520,28648,28776,28904,29032,29160,29288,29416,29544,29672,29800,29928,30056,30184,30312,30440,30568,30696,30824,30952,31080,31208,31336,31464,31592,31720,31848,31976,32104,32232,32360,32488,32616,32744,32872,33000,33128,33256,33384,33512,33640,33768,33896,34024,34152,34280,34408,34536,34664,34792,34920,35048,35176,35304,35432,35560,35688,35816,35944,36072,36200,36328,36456,36584,36712,36840,36968,37096,37224,37352,37480,37608,37736,37864,37992,38120,38248,38376,38504,38632,38760,38888,39016,39144,39272,39400,39528,39656,39784,39912,40040,40168,40296,40424,40552,40680,40808,40936,41064,41192,41320,41448,41576,41704,41832,41960,42088,42216,42344,42472,42600,42728,42856,42984,43112,43240,43368,43496,43624,43752,43880,44008,44136,44264,44392,44520,44648,44776,44904,45032,45160,45288,45416,45544,45672,45800,45928,46056,46184,46312,46440,46568,46696,46824,46952,47080,47208,47336,47464,47592,47720,47848,47976,48104,48232,48360,48488,48616,48744,48872,49000,49128,49256,49384,49512,49640,49768,49896,50024,50152,50280,50408,50536,50664,50792,50920,51048,51176,51304,51432,51560,51688,51816,51944,52072,52200,52328,52456,52584,52712,52840,52968,53096,53224,53352,53480,53608,53736,53864,53992,54120,54248,54376,54504,54632,54760,54888,55016,55144,55272,55400,55528,55656,55784,55912,56040,56168,56296,56424,56552,56680,56808,56936,57064,57192,57320,57448,57576,57704,57832,57960,58088,58216,58344,58472,58600,58728,58856,58984,59112,59240,59368,59496,59624,59752,59880,60008,60136,60264,60392,60520,60648,60776,60904,61032,61160,61288,61416,61544,61672,61800,61928,62056,62184,62312,62440,62568,62696,62824,62952,63080,63208,63336,63464,63592,63720,63848,63976,64104,64232,64360,64488,64616,64744,64872,65000,65128,65256,65384,65512,65640,65768,65896,66024,66152,66280,66408,66536,66664,66792,66920,67048,67176,67304,67432,67560,67688,67816,67944,68072,68200,68328,68456,68584,68712,68840,68968,69096,69224,69352,69480,69608,69736,69864,69992,70120,70248,70376,70504,70632,70760,70888,71016,71144,71272,71400,71528,71656,71784,71912,72040,72168,72296,72424,72552,72680,72808,72936,73064,73192,73320,73448,73576,73704,73832,73960,74088,74216,74344,74472,74600,74728,74856,74984,75112,75240,75368,75496,75624,75752,75880,76008,76136,76264,76392,76520,76648,76776,76904,77032,77160,77288,77416,77544,77672,77800,77928,78056,78184,78312,78440,78568,78696,78824,78952,79080,79208,79336,79464,79592,79720,79848,79976,80104,80232,80360,80488,80616,80744,80872,81000,81128,81256,81384,81512,81640,81768,81896,82024,82152,82280,82408,82536,82664,82792,82920,83048,83176,83304,83432,83560,83688,83816,83944,84072,84200,84328,84456,84584,84712,84840,84968,85096,85224,85352,85480,85608,85736,85864,85992,86120,86248,86376,86504,86632,86760,86888,87016,87144,87272,87400,87528,87656,87784,87912,88040,88168,88296,88424,88552,88680,88808,88936,89064,89192,89320,89448,89576,89704,89832,89960,90088,90216,90344,90472,90600,90728,90856,90984,91112,91240,91368,91496,91624,91752,91880,92008,92136,92264,92392,92520,92648,92776,92904,93032,93160,93288,93416,93544,93672,93800,93928,94056,94184,94312,94440,94568,94696,94824,94952,95080,95208,95336,95464,95592,95720,95848,95976,96104,96232,96360,96488,96616,96744,96872,97000,97128,97256,97384,97512,97640,97768,97896,98024,98152,98280,98408,98536,98664,98792,98920,99048,99176,99304,99432,99560,99688,99816,99944,100072,100200,100328,100456,100584,100712,100840,100968,101096,101224,101352,101480,101608,101736,101864,101992,102120,102248,102376,102504,102632,102760,102888,103016,103144,103272,103400,103528,103656,103784,103912,104040,104168,104296,104424,104552,104680,104808,104936,105064,105192,105320,105448,105576,105704,105832,105960,106088,106216,106344,106472,106600,106728,106856,106984,107112,107240,107368,107496,107624,107752,107880,108008,108136,108264,108392,108520,108648,108776,108904,109032,109160,109288,109416,109544,109672,109800,109928,110056,110184,110312,110440,110568,110696,110824,110952,111080,111208,111336,111464,111592,111720,111848,111976,112104,112232,112360,112488,112616,112744,112872,113000,113128,113256,113384,113512,113640,113768,113896,114024,114152,114280,114408,114536,114664,114792,114920,115048,115176,115304,115432,115560,115688,115816,115944,116072,116200,116328,116456,116584,116712,116840,116968,117096,117224,117352,117480,117608,117736,117864,117992,118120,118248,118376,118504,118632,118760,118888,119016,119144,119272,119400,119528,119656,119784,119912,120040,120168,120296,120424,120552,120680,120808,120936,121064,121192,121320,121448,121576,121704,121832,121960,122088,122216,122344,122472,122600,122728,122856,122984,123112,123240,123368,123496,123624,123752,123880,124008,124136,124264,124392,124520,124648,124776,124904,125032,125160,125288,125416,125544,125672,125800,125928,126056,126184,126312,126440,126568,126696,126824,126952,127080,127208,127336,127464,127592,127720,127848,127976,128104,128232,128360,128488,128616,128744,128872,129000,129128,129256,129384,129512,129640,129768,129896,130024,130152,130280,130408,130536,130664,130792,130920,131048,131176,131304,131432,131560,131688,131816,131944); +-- Query Hash: 4777b3359cf3c919e54e6a6368b5daec +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1256,1512,1768,2024,2280,2536,2792,3048,3304,3560,3816,4072,4328,4584,4840,5096,5352,5608,5864,6120,6376,6632,6888,7144,7400,7656,7912,8168,8424,8680,8936,9192,9448,9704,9960,10216,10472,10728,10984,11240,11496,11752,12008,12264,12520,12776,13032,13288,13544,13800,14056,14312,14568,14824,15080,15336,15592,15848,16104,16360,16616,16872,17128,17384,17640,17896,18152,18408,18664,18920,19176,19432,19688,19944,20200,20456,20712,20968,21224,21480,21736,21992,22248,22504,22760,23016,23272,23528,23784,24040,24296,24552,24808,25064,25320,25576,25832,26088,26344,26600,26856,27112,27368,27624,27880,28136,28392,28648,28904,29160,29416,29672,29928,30184,30440,30696,30952,31208,31464,31720,31976,32232,32488,32744,33000,33256,33512,33768,34024,34280,34536,34792,35048,35304,35560,35816,36072,36328,36584,36840,37096,37352,37608,37864,38120,38376,38632,38888,39144,39400,39656,39912,40168,40424,40680,40936,41192,41448,41704,41960,42216,42472,42728,42984,43240,43496,43752,44008,44264,44520,44776,45032,45288,45544,45800,46056,46312,46568,46824,47080,47336,47592,47848,48104,48360,48616,48872,49128,49384,49640,49896,50152,50408,50664,50920,51176,51432,51688,51944,52200,52456,52712,52968,53224,53480,53736,53992,54248,54504,54760,55016,55272,55528,55784,56040,56296,56552,56808,57064,57320,57576,57832,58088,58344,58600,58856,59112,59368,59624,59880,60136,60392,60648,60904,61160,61416,61672,61928,62184,62440,62696,62952,63208,63464,63720,63976,64232,64488,64744,65000,65256,65512,65768,66024,66280,66536,66792,67048,67304,67560,67816,68072,68328,68584,68840,69096,69352,69608,69864,70120,70376,70632,70888,71144,71400,71656,71912,72168,72424,72680,72936,73192,73448,73704,73960,74216,74472,74728,74984,75240,75496,75752,76008,76264,76520,76776,77032,77288,77544,77800,78056,78312,78568,78824,79080,79336,79592,79848,80104,80360,80616,80872,81128,81384,81640,81896,82152,82408,82664,82920,83176,83432,83688,83944,84200,84456,84712,84968,85224,85480,85736,85992,86248,86504,86760,87016,87272,87528,87784,88040,88296,88552,88808,89064,89320,89576,89832,90088,90344,90600,90856,91112,91368,91624,91880,92136,92392,92648,92904,93160,93416,93672,93928,94184,94440,94696,94952,95208,95464,95720,95976,96232,96488,96744,97000,97256,97512,97768,98024,98280,98536,98792,99048,99304,99560,99816,100072,100328,100584,100840,101096,101352,101608,101864,102120,102376,102632,102888,103144,103400,103656,103912,104168,104424,104680,104936,105192,105448,105704,105960,106216,106472,106728,106984,107240,107496,107752,108008,108264,108520,108776,109032,109288,109544,109800,110056,110312,110568,110824,111080,111336,111592,111848,112104,112360,112616,112872,113128,113384,113640,113896,114152,114408,114664,114920,115176,115432,115688,115944,116200,116456,116712,116968,117224,117480,117736,117992,118248,118504,118760,119016,119272,119528,119784,120040,120296,120552,120808,121064,121320,121576,121832,122088,122344,122600,122856,123112,123368,123624,123880,124136,124392,124648,124904,125160,125416,125672,125928,126184,126440,126696,126952,127208,127464,127720,127976,128232,128488,128744,129000,129256,129512,129768,130024,130280,130536,130792,131048,131304,131560,131816,132072,132328,132584,132840,133096,133352,133608,133864,134120,134376,134632,134888,135144,135400,135656,135912,136168,136424,136680,136936,137192,137448,137704,137960,138216,138472,138728,138984,139240,139496,139752,140008,140264,140520,140776,141032,141288,141544,141800,142056,142312,142568,142824,143080,143336,143592,143848,144104,144360,144616,144872,145128,145384,145640,145896,146152,146408,146664,146920,147176,147432,147688,147944,148200,148456,148712,148968,149224,149480,149736,149992,150248,150504,150760,151016,151272,151528,151784,152040,152296,152552,152808,153064,153320,153576,153832,154088,154344,154600,154856,155112,155368,155624,155880,156136,156392,156648,156904,157160,157416,157672,157928,158184,158440,158696,158952,159208,159464,159720,159976,160232,160488,160744,161000,161256,161512,161768,162024,162280,162536,162792,163048,163304,163560,163816,164072,164328,164584,164840,165096,165352,165608,165864,166120,166376,166632,166888,167144,167400,167656,167912,168168,168424,168680,168936,169192,169448,169704,169960,170216,170472,170728,170984,171240,171496,171752,172008,172264,172520,172776,173032,173288,173544,173800,174056,174312,174568,174824,175080,175336,175592,175848,176104,176360,176616,176872,177128,177384,177640,177896,178152,178408,178664,178920,179176,179432,179688,179944,180200,180456,180712,180968,181224,181480,181736,181992,182248,182504,182760,183016,183272,183528,183784,184040,184296,184552,184808,185064,185320,185576,185832,186088,186344,186600,186856,187112,187368,187624,187880,188136,188392,188648,188904,189160,189416,189672,189928,190184,190440,190696,190952,191208,191464,191720,191976,192232,192488,192744,193000,193256,193512,193768,194024,194280,194536,194792,195048,195304,195560,195816,196072,196328,196584,196840,197096,197352,197608,197864,198120,198376,198632,198888,199144,199400,199656,199912,200168,200424,200680,200936,201192,201448,201704,201960,202216,202472,202728,202984,203240,203496,203752,204008,204264,204520,204776,205032,205288,205544,205800,206056,206312,206568,206824,207080,207336,207592,207848,208104,208360,208616,208872,209128,209384,209640,209896,210152,210408,210664,210920,211176,211432,211688,211944,212200,212456,212712,212968,213224,213480,213736,213992,214248,214504,214760,215016,215272,215528,215784,216040,216296,216552,216808,217064,217320,217576,217832,218088,218344,218600,218856,219112,219368,219624,219880,220136,220392,220648,220904,221160,221416,221672,221928,222184,222440,222696,222952,223208,223464,223720,223976,224232,224488,224744,225000,225256,225512,225768,226024,226280,226536,226792,227048,227304,227560,227816,228072,228328,228584,228840,229096,229352,229608,229864,230120,230376,230632,230888,231144,231400,231656,231912,232168,232424,232680,232936,233192,233448,233704,233960,234216,234472,234728,234984,235240,235496,235752,236008,236264,236520,236776,237032,237288,237544,237800,238056,238312,238568,238824,239080,239336,239592,239848,240104,240360,240616,240872,241128,241384,241640,241896,242152,242408,242664,242920,243176,243432,243688,243944,244200,244456,244712,244968,245224,245480,245736,245992,246248,246504,246760,247016,247272,247528,247784,248040,248296,248552,248808,249064,249320,249576,249832,250088,250344,250600,250856,251112,251368,251624,251880,252136,252392,252648,252904,253160,253416,253672,253928,254184,254440,254696,254952,255208,255464,255720,255976,256232,256488,256744,257000,257256,257512,257768,258024,258280,258536,258792,259048,259304,259560,259816,260072,260328,260584,260840,261096,261352,261608,261864,262120,262376,262632,262888); +-- Query Hash: 29adb2092878b6b245bee82f409a5fc3 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1512,2024,2536,3048,3560,4072,4584,5096,5608,6120,6632,7144,7656,8168,8680,9192,9704,10216,10728,11240,11752,12264,12776,13288,13800,14312,14824,15336,15848,16360,16872,17384,17896,18408,18920,19432,19944,20456,20968,21480,21992,22504,23016,23528,24040,24552,25064,25576,26088,26600,27112,27624,28136,28648,29160,29672,30184,30696,31208,31720,32232,32744,33256,33768,34280,34792,35304,35816,36328,36840,37352,37864,38376,38888,39400,39912,40424,40936,41448,41960,42472,42984,43496,44008,44520,45032,45544,46056,46568,47080,47592,48104,48616,49128,49640,50152,50664,51176,51688,52200,52712,53224,53736,54248,54760,55272,55784,56296,56808,57320,57832,58344,58856,59368,59880,60392,60904,61416,61928,62440,62952,63464,63976,64488,65000,65512,66024,66536,67048,67560,68072,68584,69096,69608,70120,70632,71144,71656,72168,72680,73192,73704,74216,74728,75240,75752,76264,76776,77288,77800,78312,78824,79336,79848,80360,80872,81384,81896,82408,82920,83432,83944,84456,84968,85480,85992,86504,87016,87528,88040,88552,89064,89576,90088,90600,91112,91624,92136,92648,93160,93672,94184,94696,95208,95720,96232,96744,97256,97768,98280,98792,99304,99816,100328,100840,101352,101864,102376,102888,103400,103912,104424,104936,105448,105960,106472,106984,107496,108008,108520,109032,109544,110056,110568,111080,111592,112104,112616,113128,113640,114152,114664,115176,115688,116200,116712,117224,117736,118248,118760,119272,119784,120296,120808,121320,121832,122344,122856,123368,123880,124392,124904,125416,125928,126440,126952,127464,127976,128488,129000,129512,130024,130536,131048,131560,132072,132584,133096,133608,134120,134632,135144,135656,136168,136680,137192,137704,138216,138728,139240,139752,140264,140776,141288,141800,142312,142824,143336,143848,144360,144872,145384,145896,146408,146920,147432,147944,148456,148968,149480,149992,150504,151016,151528,152040,152552,153064,153576,154088,154600,155112,155624,156136,156648,157160,157672,158184,158696,159208,159720,160232,160744,161256,161768,162280,162792,163304,163816,164328,164840,165352,165864,166376,166888,167400,167912,168424,168936,169448,169960,170472,170984,171496,172008,172520,173032,173544,174056,174568,175080,175592,176104,176616,177128,177640,178152,178664,179176,179688,180200,180712,181224,181736,182248,182760,183272,183784,184296,184808,185320,185832,186344,186856,187368,187880,188392,188904,189416,189928,190440,190952,191464,191976,192488,193000,193512,194024,194536,195048,195560,196072,196584,197096,197608,198120,198632,199144,199656,200168,200680,201192,201704,202216,202728,203240,203752,204264,204776,205288,205800,206312,206824,207336,207848,208360,208872,209384,209896,210408,210920,211432,211944,212456,212968,213480,213992,214504,215016,215528,216040,216552,217064,217576,218088,218600,219112,219624,220136,220648,221160,221672,222184,222696,223208,223720,224232,224744,225256,225768,226280,226792,227304,227816,228328,228840,229352,229864,230376,230888,231400,231912,232424,232936,233448,233960,234472,234984,235496,236008,236520,237032,237544,238056,238568,239080,239592,240104,240616,241128,241640,242152,242664,243176,243688,244200,244712,245224,245736,246248,246760,247272,247784,248296,248808,249320,249832,250344,250856,251368,251880,252392,252904,253416,253928,254440,254952,255464,255976,256488,257000,257512,258024,258536,259048,259560,260072,260584,261096,261608,262120,262632,263144,263656,264168,264680,265192,265704,266216,266728,267240,267752,268264,268776,269288,269800,270312,270824,271336,271848,272360,272872,273384,273896,274408,274920,275432,275944,276456,276968,277480,277992,278504,279016,279528,280040,280552,281064,281576,282088,282600,283112,283624,284136,284648,285160,285672,286184,286696,287208,287720,288232,288744,289256,289768,290280,290792,291304,291816,292328,292840,293352,293864,294376,294888,295400,295912,296424,296936,297448,297960,298472,298984,299496,300008,300520,301032,301544,302056,302568,303080,303592,304104,304616,305128,305640,306152,306664,307176,307688,308200,308712,309224,309736,310248,310760,311272,311784,312296,312808,313320,313832,314344,314856,315368,315880,316392,316904,317416,317928,318440,318952,319464,319976,320488,321000,321512,322024,322536,323048,323560,324072,324584,325096,325608,326120,326632,327144,327656,328168,328680,329192,329704,330216,330728,331240,331752,332264,332776,333288,333800,334312,334824,335336,335848,336360,336872,337384,337896,338408,338920,339432,339944,340456,340968,341480,341992,342504,343016,343528,344040,344552,345064,345576,346088,346600,347112,347624,348136,348648,349160,349672,350184,350696,351208,351720,352232,352744,353256,353768,354280,354792,355304,355816,356328,356840,357352,357864,358376,358888,359400,359912,360424,360936,361448,361960,362472,362984,363496,364008,364520,365032,365544,366056,366568,367080,367592,368104,368616,369128,369640,370152,370664,371176,371688,372200,372712,373224,373736,374248,374760,375272,375784,376296,376808,377320,377832,378344,378856,379368,379880,380392,380904,381416,381928,382440,382952,383464,383976,384488,385000,385512,386024,386536,387048,387560,388072,388584,389096,389608,390120,390632,391144,391656,392168,392680,393192,393704,394216,394728,395240,395752,396264,396776,397288,397800,398312,398824,399336,399848,400360,400872,401384,401896,402408,402920,403432,403944,404456,404968,405480,405992,406504,407016,407528,408040,408552,409064,409576,410088,410600,411112,411624,412136,412648,413160,413672,414184,414696,415208,415720,416232,416744,417256,417768,418280,418792,419304,419816,420328,420840,421352,421864,422376,422888,423400,423912,424424,424936,425448,425960,426472,426984,427496,428008,428520,429032,429544,430056,430568,431080,431592,432104,432616,433128,433640,434152,434664,435176,435688,436200,436712,437224,437736,438248,438760,439272,439784,440296,440808,441320,441832,442344,442856,443368,443880,444392,444904,445416,445928,446440,446952,447464,447976,448488,449000,449512,450024,450536,451048,451560,452072,452584,453096,453608,454120,454632,455144,455656,456168,456680,457192,457704,458216,458728,459240,459752,460264,460776,461288,461800,462312,462824,463336,463848,464360,464872,465384,465896,466408,466920,467432,467944,468456,468968,469480,469992,470504,471016,471528,472040,472552,473064,473576,474088,474600,475112,475624,476136,476648,477160,477672,478184,478696,479208,479720,480232,480744,481256,481768,482280,482792,483304,483816,484328,484840,485352,485864,486376,486888,487400,487912,488424,488936,489448,489960,490472,490984,491496,492008,492520,493032,493544,494056,494568,495080,495592,496104,496616,497128,497640,498152,498664,499176,499688,500200,500712,501224,501736,502248,502760,503272,503784,504296,504808,505320,505832,506344,506856,507368,507880,508392,508904,509416,509928,510440,510952,511464,511976,512488,513000,513512,514024,514536,515048,515560,516072,516584,517096,517608,518120,518632,519144,519656,520168,520680,521192,521704,522216,522728,523240,523752,524264,524776); +-- Query Hash: d22c2e8fce342bd83398e5c1574c5b23 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,21480,41960,62440,82920,103400,123880,144360,164840,185320,205800,226280,246760,267240,287720,308200,328680,349160,369640,390120,410600,431080,451560,472040,492520,513000,533480,553960,574440,594920,615400,635880); +-- Query Hash: 233effbf5f668d651f11a4ab853a6b00 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,11240,21480,31720,41960,52200,62440,72680,82920,93160,103400,113640,123880,134120,144360,154600,164840,175080,185320,195560,205800,216040,226280,236520,246760,257000,267240,277480,287720,297960,308200,318440,328680,338920,349160,359400,369640,379880,390120,400360,410600,420840,431080,441320,451560,461800,472040,482280,492520,502760,513000,523240,533480,543720,553960,564200,574440,584680,594920,605160,615400,625640,635880,646120); +-- Query Hash: 84b5c9fc4a13ea5ec97d1cbd9309221a +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,6120,11240,16360,21480,26600,31720,36840,41960,47080,52200,57320,62440,67560,72680,77800,82920,88040,93160,98280,103400,108520,113640,118760,123880,129000,134120,139240,144360,149480,154600,159720,164840,169960,175080,180200,185320,190440,195560,200680,205800,210920,216040,221160,226280,231400,236520,241640,246760,251880,257000,262120,267240,272360,277480,282600,287720,292840,297960,303080,308200,313320,318440,323560,328680,333800,338920,344040,349160,354280,359400,364520,369640,374760,379880,385000,390120,395240,400360,405480,410600,415720,420840,425960,431080,436200,441320,446440,451560,456680,461800,466920,472040,477160,482280,487400,492520,497640,502760,507880,513000,518120,523240,528360,533480,538600,543720,548840,553960,559080,564200,569320,574440,579560,584680,589800,594920,600040,605160,610280,615400,620520,625640,630760,635880,641000,646120,651240); +-- Query Hash: 01c06e209b2d767dd50cb075188a2096 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,3560,6120,8680,11240,13800,16360,18920,21480,24040,26600,29160,31720,34280,36840,39400,41960,44520,47080,49640,52200,54760,57320,59880,62440,65000,67560,70120,72680,75240,77800,80360,82920,85480,88040,90600,93160,95720,98280,100840,103400,105960,108520,111080,113640,116200,118760,121320,123880,126440,129000,131560,134120,136680,139240,141800,144360,146920,149480,152040,154600,157160,159720,162280,164840,167400,169960,172520,175080,177640,180200,182760,185320,187880,190440,193000,195560,198120,200680,203240,205800,208360,210920,213480,216040,218600,221160,223720,226280,228840,231400,233960,236520,239080,241640,244200,246760,249320,251880,254440,257000,259560,262120,264680,267240,269800,272360,274920,277480,280040,282600,285160,287720,290280,292840,295400,297960,300520,303080,305640,308200,310760,313320,315880,318440,321000,323560,326120,328680,331240,333800,336360,338920,341480,344040,346600,349160,351720,354280,356840,359400,361960,364520,367080,369640,372200,374760,377320,379880,382440,385000,387560,390120,392680,395240,397800,400360,402920,405480,408040,410600,413160,415720,418280,420840,423400,425960,428520,431080,433640,436200,438760,441320,443880,446440,449000,451560,454120,456680,459240,461800,464360,466920,469480,472040,474600,477160,479720,482280,484840,487400,489960,492520,495080,497640,500200,502760,505320,507880,510440,513000,515560,518120,520680,523240,525800,528360,530920,533480,536040,538600,541160,543720,546280,548840,551400,553960,556520,559080,561640,564200,566760,569320,571880,574440,577000,579560,582120,584680,587240,589800,592360,594920,597480,600040,602600,605160,607720,610280,612840,615400,617960,620520,623080,625640,628200,630760,633320,635880,638440,641000,643560,646120,648680,651240,653800); +-- Query Hash: 7fbe567a05d79f23888cb6ccadd6875f +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,2280,3560,4840,6120,7400,8680,9960,11240,12520,13800,15080,16360,17640,18920,20200,21480,22760,24040,25320,26600,27880,29160,30440,31720,33000,34280,35560,36840,38120,39400,40680,41960,43240,44520,45800,47080,48360,49640,50920,52200,53480,54760,56040,57320,58600,59880,61160,62440,63720,65000,66280,67560,68840,70120,71400,72680,73960,75240,76520,77800,79080,80360,81640,82920,84200,85480,86760,88040,89320,90600,91880,93160,94440,95720,97000,98280,99560,100840,102120,103400,104680,105960,107240,108520,109800,111080,112360,113640,114920,116200,117480,118760,120040,121320,122600,123880,125160,126440,127720,129000,130280,131560,132840,134120,135400,136680,137960,139240,140520,141800,143080,144360,145640,146920,148200,149480,150760,152040,153320,154600,155880,157160,158440,159720,161000,162280,163560,164840,166120,167400,168680,169960,171240,172520,173800,175080,176360,177640,178920,180200,181480,182760,184040,185320,186600,187880,189160,190440,191720,193000,194280,195560,196840,198120,199400,200680,201960,203240,204520,205800,207080,208360,209640,210920,212200,213480,214760,216040,217320,218600,219880,221160,222440,223720,225000,226280,227560,228840,230120,231400,232680,233960,235240,236520,237800,239080,240360,241640,242920,244200,245480,246760,248040,249320,250600,251880,253160,254440,255720,257000,258280,259560,260840,262120,263400,264680,265960,267240,268520,269800,271080,272360,273640,274920,276200,277480,278760,280040,281320,282600,283880,285160,286440,287720,289000,290280,291560,292840,294120,295400,296680,297960,299240,300520,301800,303080,304360,305640,306920,308200,309480,310760,312040,313320,314600,315880,317160,318440,319720,321000,322280,323560,324840,326120,327400,328680,329960,331240,332520,333800,335080,336360,337640,338920,340200,341480,342760,344040,345320,346600,347880,349160,350440,351720,353000,354280,355560,356840,358120,359400,360680,361960,363240,364520,365800,367080,368360,369640,370920,372200,373480,374760,376040,377320,378600,379880,381160,382440,383720,385000,386280,387560,388840,390120,391400,392680,393960,395240,396520,397800,399080,400360,401640,402920,404200,405480,406760,408040,409320,410600,411880,413160,414440,415720,417000,418280,419560,420840,422120,423400,424680,425960,427240,428520,429800,431080,432360,433640,434920,436200,437480,438760,440040,441320,442600,443880,445160,446440,447720,449000,450280,451560,452840,454120,455400,456680,457960,459240,460520,461800,463080,464360,465640,466920,468200,469480,470760,472040,473320,474600,475880,477160,478440,479720,481000,482280,483560,484840,486120,487400,488680,489960,491240,492520,493800,495080,496360,497640,498920,500200,501480,502760,504040,505320,506600,507880,509160,510440,511720,513000,514280,515560,516840,518120,519400,520680,521960,523240,524520,525800,527080,528360,529640,530920,532200,533480,534760,536040,537320,538600,539880,541160,542440,543720,545000,546280,547560,548840,550120,551400,552680,553960,555240,556520,557800,559080,560360,561640,562920,564200,565480,566760,568040,569320,570600,571880,573160,574440,575720,577000,578280,579560,580840,582120,583400,584680,585960,587240,588520,589800,591080,592360,593640,594920,596200,597480,598760,600040,601320,602600,603880,605160,606440,607720,609000,610280,611560,612840,614120,615400,616680,617960,619240,620520,621800,623080,624360,625640,626920,628200,629480,630760,632040,633320,634600,635880,637160,638440,639720,641000,642280,643560,644840,646120,647400,648680,649960,651240,652520,653800,655080); +-- Query Hash: 777f07dd51183ae5e812b49bde3b5f3d +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1640,2280,2920,3560,4200,4840,5480,6120,6760,7400,8040,8680,9320,9960,10600,11240,11880,12520,13160,13800,14440,15080,15720,16360,17000,17640,18280,18920,19560,20200,20840,21480,22120,22760,23400,24040,24680,25320,25960,26600,27240,27880,28520,29160,29800,30440,31080,31720,32360,33000,33640,34280,34920,35560,36200,36840,37480,38120,38760,39400,40040,40680,41320,41960,42600,43240,43880,44520,45160,45800,46440,47080,47720,48360,49000,49640,50280,50920,51560,52200,52840,53480,54120,54760,55400,56040,56680,57320,57960,58600,59240,59880,60520,61160,61800,62440,63080,63720,64360,65000,65640,66280,66920,67560,68200,68840,69480,70120,70760,71400,72040,72680,73320,73960,74600,75240,75880,76520,77160,77800,78440,79080,79720,80360,81000,81640,82280,82920,83560,84200,84840,85480,86120,86760,87400,88040,88680,89320,89960,90600,91240,91880,92520,93160,93800,94440,95080,95720,96360,97000,97640,98280,98920,99560,100200,100840,101480,102120,102760,103400,104040,104680,105320,105960,106600,107240,107880,108520,109160,109800,110440,111080,111720,112360,113000,113640,114280,114920,115560,116200,116840,117480,118120,118760,119400,120040,120680,121320,121960,122600,123240,123880,124520,125160,125800,126440,127080,127720,128360,129000,129640,130280,130920,131560,132200,132840,133480,134120,134760,135400,136040,136680,137320,137960,138600,139240,139880,140520,141160,141800,142440,143080,143720,144360,145000,145640,146280,146920,147560,148200,148840,149480,150120,150760,151400,152040,152680,153320,153960,154600,155240,155880,156520,157160,157800,158440,159080,159720,160360,161000,161640,162280,162920,163560,164200,164840,165480,166120,166760,167400,168040,168680,169320,169960,170600,171240,171880,172520,173160,173800,174440,175080,175720,176360,177000,177640,178280,178920,179560,180200,180840,181480,182120,182760,183400,184040,184680,185320,185960,186600,187240,187880,188520,189160,189800,190440,191080,191720,192360,193000,193640,194280,194920,195560,196200,196840,197480,198120,198760,199400,200040,200680,201320,201960,202600,203240,203880,204520,205160,205800,206440,207080,207720,208360,209000,209640,210280,210920,211560,212200,212840,213480,214120,214760,215400,216040,216680,217320,217960,218600,219240,219880,220520,221160,221800,222440,223080,223720,224360,225000,225640,226280,226920,227560,228200,228840,229480,230120,230760,231400,232040,232680,233320,233960,234600,235240,235880,236520,237160,237800,238440,239080,239720,240360,241000,241640,242280,242920,243560,244200,244840,245480,246120,246760,247400,248040,248680,249320,249960,250600,251240,251880,252520,253160,253800,254440,255080,255720,256360,257000,257640,258280,258920,259560,260200,260840,261480,262120,262760,263400,264040,264680,265320,265960,266600,267240,267880,268520,269160,269800,270440,271080,271720,272360,273000,273640,274280,274920,275560,276200,276840,277480,278120,278760,279400,280040,280680,281320,281960,282600,283240,283880,284520,285160,285800,286440,287080,287720,288360,289000,289640,290280,290920,291560,292200,292840,293480,294120,294760,295400,296040,296680,297320,297960,298600,299240,299880,300520,301160,301800,302440,303080,303720,304360,305000,305640,306280,306920,307560,308200,308840,309480,310120,310760,311400,312040,312680,313320,313960,314600,315240,315880,316520,317160,317800,318440,319080,319720,320360,321000,321640,322280,322920,323560,324200,324840,325480,326120,326760,327400,328040,328680,329320,329960,330600,331240,331880,332520,333160,333800,334440,335080,335720,336360,337000,337640,338280,338920,339560,340200,340840,341480,342120,342760,343400,344040,344680,345320,345960,346600,347240,347880,348520,349160,349800,350440,351080,351720,352360,353000,353640,354280,354920,355560,356200,356840,357480,358120,358760,359400,360040,360680,361320,361960,362600,363240,363880,364520,365160,365800,366440,367080,367720,368360,369000,369640,370280,370920,371560,372200,372840,373480,374120,374760,375400,376040,376680,377320,377960,378600,379240,379880,380520,381160,381800,382440,383080,383720,384360,385000,385640,386280,386920,387560,388200,388840,389480,390120,390760,391400,392040,392680,393320,393960,394600,395240,395880,396520,397160,397800,398440,399080,399720,400360,401000,401640,402280,402920,403560,404200,404840,405480,406120,406760,407400,408040,408680,409320,409960,410600,411240,411880,412520,413160,413800,414440,415080,415720,416360,417000,417640,418280,418920,419560,420200,420840,421480,422120,422760,423400,424040,424680,425320,425960,426600,427240,427880,428520,429160,429800,430440,431080,431720,432360,433000,433640,434280,434920,435560,436200,436840,437480,438120,438760,439400,440040,440680,441320,441960,442600,443240,443880,444520,445160,445800,446440,447080,447720,448360,449000,449640,450280,450920,451560,452200,452840,453480,454120,454760,455400,456040,456680,457320,457960,458600,459240,459880,460520,461160,461800,462440,463080,463720,464360,465000,465640,466280,466920,467560,468200,468840,469480,470120,470760,471400,472040,472680,473320,473960,474600,475240,475880,476520,477160,477800,478440,479080,479720,480360,481000,481640,482280,482920,483560,484200,484840,485480,486120,486760,487400,488040,488680,489320,489960,490600,491240,491880,492520,493160,493800,494440,495080,495720,496360,497000,497640,498280,498920,499560,500200,500840,501480,502120,502760,503400,504040,504680,505320,505960,506600,507240,507880,508520,509160,509800,510440,511080,511720,512360,513000,513640,514280,514920,515560,516200,516840,517480,518120,518760,519400,520040,520680,521320,521960,522600,523240,523880,524520,525160,525800,526440,527080,527720,528360,529000,529640,530280,530920,531560,532200,532840,533480,534120,534760,535400,536040,536680,537320,537960,538600,539240,539880,540520,541160,541800,542440,543080,543720,544360,545000,545640,546280,546920,547560,548200,548840,549480,550120,550760,551400,552040,552680,553320,553960,554600,555240,555880,556520,557160,557800,558440,559080,559720,560360,561000,561640,562280,562920,563560,564200,564840,565480,566120,566760,567400,568040,568680,569320,569960,570600,571240,571880,572520,573160,573800,574440,575080,575720,576360,577000,577640,578280,578920,579560,580200,580840,581480,582120,582760,583400,584040,584680,585320,585960,586600,587240,587880,588520,589160,589800,590440,591080,591720,592360,593000,593640,594280,594920,595560,596200,596840,597480,598120,598760,599400,600040,600680,601320,601960,602600,603240,603880,604520,605160,605800,606440,607080,607720,608360,609000,609640,610280,610920,611560,612200,612840,613480,614120,614760,615400,616040,616680,617320,617960,618600,619240,619880,620520,621160,621800,622440,623080,623720,624360,625000,625640,626280,626920,627560,628200,628840,629480,630120,630760,631400,632040,632680,633320,633960,634600,635240,635880,636520,637160,637800,638440,639080,639720,640360,641000,641640,642280,642920,643560,644200,644840,645480,646120,646760,647400,648040,648680,649320,649960,650600,651240,651880,652520,653160,653800,654440,655080,655720); +-- Query Hash: 409a0e3ed7a8e7b2104cae43159a3666 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1320,1640,1960,2280,2600,2920,3240,3560,3880,4200,4520,4840,5160,5480,5800,6120,6440,6760,7080,7400,7720,8040,8360,8680,9000,9320,9640,9960,10280,10600,10920,11240,11560,11880,12200,12520,12840,13160,13480,13800,14120,14440,14760,15080,15400,15720,16040,16360,16680,17000,17320,17640,17960,18280,18600,18920,19240,19560,19880,20200,20520,20840,21160,21480,21800,22120,22440,22760,23080,23400,23720,24040,24360,24680,25000,25320,25640,25960,26280,26600,26920,27240,27560,27880,28200,28520,28840,29160,29480,29800,30120,30440,30760,31080,31400,31720,32040,32360,32680,33000,33320,33640,33960,34280,34600,34920,35240,35560,35880,36200,36520,36840,37160,37480,37800,38120,38440,38760,39080,39400,39720,40040,40360,40680,41000,41320,41640,41960,42280,42600,42920,43240,43560,43880,44200,44520,44840,45160,45480,45800,46120,46440,46760,47080,47400,47720,48040,48360,48680,49000,49320,49640,49960,50280,50600,50920,51240,51560,51880,52200,52520,52840,53160,53480,53800,54120,54440,54760,55080,55400,55720,56040,56360,56680,57000,57320,57640,57960,58280,58600,58920,59240,59560,59880,60200,60520,60840,61160,61480,61800,62120,62440,62760,63080,63400,63720,64040,64360,64680,65000,65320,65640,65960,66280,66600,66920,67240,67560,67880,68200,68520,68840,69160,69480,69800,70120,70440,70760,71080,71400,71720,72040,72360,72680,73000,73320,73640,73960,74280,74600,74920,75240,75560,75880,76200,76520,76840,77160,77480,77800,78120,78440,78760,79080,79400,79720,80040,80360,80680,81000,81320,81640,81960,82280,82600,82920,83240,83560,83880,84200,84520,84840,85160,85480,85800,86120,86440,86760,87080,87400,87720,88040,88360,88680,89000,89320,89640,89960,90280,90600,90920,91240,91560,91880,92200,92520,92840,93160,93480,93800,94120,94440,94760,95080,95400,95720,96040,96360,96680,97000,97320,97640,97960,98280,98600,98920,99240,99560,99880,100200,100520,100840,101160,101480,101800,102120,102440,102760,103080,103400,103720,104040,104360,104680,105000,105320,105640,105960,106280,106600,106920,107240,107560,107880,108200,108520,108840,109160,109480,109800,110120,110440,110760,111080,111400,111720,112040,112360,112680,113000,113320,113640,113960,114280,114600,114920,115240,115560,115880,116200,116520,116840,117160,117480,117800,118120,118440,118760,119080,119400,119720,120040,120360,120680,121000,121320,121640,121960,122280,122600,122920,123240,123560,123880,124200,124520,124840,125160,125480,125800,126120,126440,126760,127080,127400,127720,128040,128360,128680,129000,129320,129640,129960,130280,130600,130920,131240,131560,131880,132200,132520,132840,133160,133480,133800,134120,134440,134760,135080,135400,135720,136040,136360,136680,137000,137320,137640,137960,138280,138600,138920,139240,139560,139880,140200,140520,140840,141160,141480,141800,142120,142440,142760,143080,143400,143720,144040,144360,144680,145000,145320,145640,145960,146280,146600,146920,147240,147560,147880,148200,148520,148840,149160,149480,149800,150120,150440,150760,151080,151400,151720,152040,152360,152680,153000,153320,153640,153960,154280,154600,154920,155240,155560,155880,156200,156520,156840,157160,157480,157800,158120,158440,158760,159080,159400,159720,160040,160360,160680,161000,161320,161640,161960,162280,162600,162920,163240,163560,163880,164200,164520,164840,165160,165480,165800,166120,166440,166760,167080,167400,167720,168040,168360,168680,169000,169320,169640,169960,170280,170600,170920,171240,171560,171880,172200,172520,172840,173160,173480,173800,174120,174440,174760,175080,175400,175720,176040,176360,176680,177000,177320,177640,177960,178280,178600,178920,179240,179560,179880,180200,180520,180840,181160,181480,181800,182120,182440,182760,183080,183400,183720,184040,184360,184680,185000,185320,185640,185960,186280,186600,186920,187240,187560,187880,188200,188520,188840,189160,189480,189800,190120,190440,190760,191080,191400,191720,192040,192360,192680,193000,193320,193640,193960,194280,194600,194920,195240,195560,195880,196200,196520,196840,197160,197480,197800,198120,198440,198760,199080,199400,199720,200040,200360,200680,201000,201320,201640,201960,202280,202600,202920,203240,203560,203880,204200,204520,204840,205160,205480,205800,206120,206440,206760,207080,207400,207720,208040,208360,208680,209000,209320,209640,209960,210280,210600,210920,211240,211560,211880,212200,212520,212840,213160,213480,213800,214120,214440,214760,215080,215400,215720,216040,216360,216680,217000,217320,217640,217960,218280,218600,218920,219240,219560,219880,220200,220520,220840,221160,221480,221800,222120,222440,222760,223080,223400,223720,224040,224360,224680,225000,225320,225640,225960,226280,226600,226920,227240,227560,227880,228200,228520,228840,229160,229480,229800,230120,230440,230760,231080,231400,231720,232040,232360,232680,233000,233320,233640,233960,234280,234600,234920,235240,235560,235880,236200,236520,236840,237160,237480,237800,238120,238440,238760,239080,239400,239720,240040,240360,240680,241000,241320,241640,241960,242280,242600,242920,243240,243560,243880,244200,244520,244840,245160,245480,245800,246120,246440,246760,247080,247400,247720,248040,248360,248680,249000,249320,249640,249960,250280,250600,250920,251240,251560,251880,252200,252520,252840,253160,253480,253800,254120,254440,254760,255080,255400,255720,256040,256360,256680,257000,257320,257640,257960,258280,258600,258920,259240,259560,259880,260200,260520,260840,261160,261480,261800,262120,262440,262760,263080,263400,263720,264040,264360,264680,265000,265320,265640,265960,266280,266600,266920,267240,267560,267880,268200,268520,268840,269160,269480,269800,270120,270440,270760,271080,271400,271720,272040,272360,272680,273000,273320,273640,273960,274280,274600,274920,275240,275560,275880,276200,276520,276840,277160,277480,277800,278120,278440,278760,279080,279400,279720,280040,280360,280680,281000,281320,281640,281960,282280,282600,282920,283240,283560,283880,284200,284520,284840,285160,285480,285800,286120,286440,286760,287080,287400,287720,288040,288360,288680,289000,289320,289640,289960,290280,290600,290920,291240,291560,291880,292200,292520,292840,293160,293480,293800,294120,294440,294760,295080,295400,295720,296040,296360,296680,297000,297320,297640,297960,298280,298600,298920,299240,299560,299880,300200,300520,300840,301160,301480,301800,302120,302440,302760,303080,303400,303720,304040,304360,304680,305000,305320,305640,305960,306280,306600,306920,307240,307560,307880,308200,308520,308840,309160,309480,309800,310120,310440,310760,311080,311400,311720,312040,312360,312680,313000,313320,313640,313960,314280,314600,314920,315240,315560,315880,316200,316520,316840,317160,317480,317800,318120,318440,318760,319080,319400,319720,320040,320360,320680,321000,321320,321640,321960,322280,322600,322920,323240,323560,323880,324200,324520,324840,325160,325480,325800,326120,326440,326760,327080,327400,327720,328040,328360,328680,329000,329320,329640,329960,330280,330600,330920,331240,331560,331880,332200,332520,332840,333160,333480,333800,334120,334440,334760,335080,335400,335720,336040,336360,336680,337000,337320,337640,337960,338280,338600,338920,339240,339560,339880,340200,340520,340840,341160,341480,341800,342120,342440,342760,343080,343400,343720,344040,344360,344680,345000,345320,345640,345960,346280,346600,346920,347240,347560,347880,348200,348520,348840,349160,349480,349800,350120,350440,350760,351080,351400,351720,352040,352360,352680,353000,353320,353640,353960,354280,354600,354920,355240,355560,355880,356200,356520,356840,357160,357480,357800,358120,358440,358760,359080,359400,359720,360040,360360,360680,361000,361320,361640,361960,362280,362600,362920,363240,363560,363880,364200,364520,364840,365160,365480,365800,366120,366440,366760,367080,367400,367720,368040,368360,368680,369000,369320,369640,369960,370280,370600,370920,371240,371560,371880,372200,372520,372840,373160,373480,373800,374120,374440,374760,375080,375400,375720,376040,376360,376680,377000,377320,377640,377960,378280,378600,378920,379240,379560,379880,380200,380520,380840,381160,381480,381800,382120,382440,382760,383080,383400,383720,384040,384360,384680,385000,385320,385640,385960,386280,386600,386920,387240,387560,387880,388200,388520,388840,389160,389480,389800,390120,390440,390760,391080,391400,391720,392040,392360,392680,393000,393320,393640,393960,394280,394600,394920,395240,395560,395880,396200,396520,396840,397160,397480,397800,398120,398440,398760,399080,399400,399720,400040,400360,400680,401000,401320,401640,401960,402280,402600,402920,403240,403560,403880,404200,404520,404840,405160,405480,405800,406120,406440,406760,407080,407400,407720,408040,408360,408680,409000,409320,409640,409960,410280,410600,410920,411240,411560,411880,412200,412520,412840,413160,413480,413800,414120,414440,414760,415080,415400,415720,416040,416360,416680,417000,417320,417640,417960,418280,418600,418920,419240,419560,419880,420200,420520,420840,421160,421480,421800,422120,422440,422760,423080,423400,423720,424040,424360,424680,425000,425320,425640,425960,426280,426600,426920,427240,427560,427880,428200,428520,428840,429160,429480,429800,430120,430440,430760,431080,431400,431720,432040,432360,432680,433000,433320,433640,433960,434280,434600,434920,435240,435560,435880,436200,436520,436840,437160,437480,437800,438120,438440,438760,439080,439400,439720,440040,440360,440680,441000,441320,441640,441960,442280,442600,442920,443240,443560,443880,444200,444520,444840,445160,445480,445800,446120,446440,446760,447080,447400,447720,448040,448360,448680,449000,449320,449640,449960,450280,450600,450920,451240,451560,451880,452200,452520,452840,453160,453480,453800,454120,454440,454760,455080,455400,455720,456040,456360,456680,457000,457320,457640,457960,458280,458600,458920,459240,459560,459880,460200,460520,460840,461160,461480,461800,462120,462440,462760,463080,463400,463720,464040,464360,464680,465000,465320,465640,465960,466280,466600,466920,467240,467560,467880,468200,468520,468840,469160,469480,469800,470120,470440,470760,471080,471400,471720,472040,472360,472680,473000,473320,473640,473960,474280,474600,474920,475240,475560,475880,476200,476520,476840,477160,477480,477800,478120,478440,478760,479080,479400,479720,480040,480360,480680,481000,481320,481640,481960,482280,482600,482920,483240,483560,483880,484200,484520,484840,485160,485480,485800,486120,486440,486760,487080,487400,487720,488040,488360,488680,489000,489320,489640,489960,490280,490600,490920,491240,491560,491880,492200,492520,492840,493160,493480,493800,494120,494440,494760,495080,495400,495720,496040,496360,496680,497000,497320,497640,497960,498280,498600,498920,499240,499560,499880,500200,500520,500840,501160,501480,501800,502120,502440,502760,503080,503400,503720,504040,504360,504680,505000,505320,505640,505960,506280,506600,506920,507240,507560,507880,508200,508520,508840,509160,509480,509800,510120,510440,510760,511080,511400,511720,512040,512360,512680,513000,513320,513640,513960,514280,514600,514920,515240,515560,515880,516200,516520,516840,517160,517480,517800,518120,518440,518760,519080,519400,519720,520040,520360,520680,521000,521320,521640,521960,522280,522600,522920,523240,523560,523880,524200,524520,524840,525160,525480,525800,526120,526440,526760,527080,527400,527720,528040,528360,528680,529000,529320,529640,529960,530280,530600,530920,531240,531560,531880,532200,532520,532840,533160,533480,533800,534120,534440,534760,535080,535400,535720,536040,536360,536680,537000,537320,537640,537960,538280,538600,538920,539240,539560,539880,540200,540520,540840,541160,541480,541800,542120,542440,542760,543080,543400,543720,544040,544360,544680,545000,545320,545640,545960,546280,546600,546920,547240,547560,547880,548200,548520,548840,549160,549480,549800,550120,550440,550760,551080,551400,551720,552040,552360,552680,553000,553320,553640,553960,554280,554600,554920,555240,555560,555880,556200,556520,556840,557160,557480,557800,558120,558440,558760,559080,559400,559720,560040,560360,560680,561000,561320,561640,561960,562280,562600,562920,563240,563560,563880,564200,564520,564840,565160,565480,565800,566120,566440,566760,567080,567400,567720,568040,568360,568680,569000,569320,569640,569960,570280,570600,570920,571240,571560,571880,572200,572520,572840,573160,573480,573800,574120,574440,574760,575080,575400,575720,576040,576360,576680,577000,577320,577640,577960,578280,578600,578920,579240,579560,579880,580200,580520,580840,581160,581480,581800,582120,582440,582760,583080,583400,583720,584040,584360,584680,585000,585320,585640,585960,586280,586600,586920,587240,587560,587880,588200,588520,588840,589160,589480,589800,590120,590440,590760,591080,591400,591720,592040,592360,592680,593000,593320,593640,593960,594280,594600,594920,595240,595560,595880,596200,596520,596840,597160,597480,597800,598120,598440,598760,599080,599400,599720,600040,600360,600680,601000,601320,601640,601960,602280,602600,602920,603240,603560,603880,604200,604520,604840,605160,605480,605800,606120,606440,606760,607080,607400,607720,608040,608360,608680,609000,609320,609640,609960,610280,610600,610920,611240,611560,611880,612200,612520,612840,613160,613480,613800,614120,614440,614760,615080,615400,615720,616040,616360,616680,617000,617320,617640,617960,618280,618600,618920,619240,619560,619880,620200,620520,620840,621160,621480,621800,622120,622440,622760,623080,623400,623720,624040,624360,624680,625000,625320,625640,625960,626280,626600,626920,627240,627560,627880,628200,628520,628840,629160,629480,629800,630120,630440,630760,631080,631400,631720,632040,632360,632680,633000,633320,633640,633960,634280,634600,634920,635240,635560,635880,636200,636520,636840,637160,637480,637800,638120,638440,638760,639080,639400,639720,640040,640360,640680,641000,641320,641640,641960,642280,642600,642920,643240,643560,643880,644200,644520,644840,645160,645480,645800,646120,646440,646760,647080,647400,647720,648040,648360,648680,649000,649320,649640,649960,650280,650600,650920,651240,651560,651880,652200,652520,652840,653160,653480,653800,654120,654440,654760,655080,655400,655720,656040); +-- Query Hash: b1ce7d8c906b7a9b11e97d49e8c80ad2 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1160,1320,1480,1640,1800,1960,2120,2280,2440,2600,2760,2920,3080,3240,3400,3560,3720,3880,4040,4200,4360,4520,4680,4840,5000,5160,5320,5480,5640,5800,5960,6120,6280,6440,6600,6760,6920,7080,7240,7400,7560,7720,7880,8040,8200,8360,8520,8680,8840,9000,9160,9320,9480,9640,9800,9960,10120,10280,10440,10600,10760,10920,11080,11240,11400,11560,11720,11880,12040,12200,12360,12520,12680,12840,13000,13160,13320,13480,13640,13800,13960,14120,14280,14440,14600,14760,14920,15080,15240,15400,15560,15720,15880,16040,16200,16360,16520,16680,16840,17000,17160,17320,17480,17640,17800,17960,18120,18280,18440,18600,18760,18920,19080,19240,19400,19560,19720,19880,20040,20200,20360,20520,20680,20840,21000,21160,21320,21480,21640,21800,21960,22120,22280,22440,22600,22760,22920,23080,23240,23400,23560,23720,23880,24040,24200,24360,24520,24680,24840,25000,25160,25320,25480,25640,25800,25960,26120,26280,26440,26600,26760,26920,27080,27240,27400,27560,27720,27880,28040,28200,28360,28520,28680,28840,29000,29160,29320,29480,29640,29800,29960,30120,30280,30440,30600,30760,30920,31080,31240,31400,31560,31720,31880,32040,32200,32360,32520,32680,32840,33000,33160,33320,33480,33640,33800,33960,34120,34280,34440,34600,34760,34920,35080,35240,35400,35560,35720,35880,36040,36200,36360,36520,36680,36840,37000,37160,37320,37480,37640,37800,37960,38120,38280,38440,38600,38760,38920,39080,39240,39400,39560,39720,39880,40040,40200,40360,40520,40680,40840,41000,41160,41320,41480,41640,41800,41960,42120,42280,42440,42600,42760,42920,43080,43240,43400,43560,43720,43880,44040,44200,44360,44520,44680,44840,45000,45160,45320,45480,45640,45800,45960,46120,46280,46440,46600,46760,46920,47080,47240,47400,47560,47720,47880,48040,48200,48360,48520,48680,48840,49000,49160,49320,49480,49640,49800,49960,50120,50280,50440,50600,50760,50920,51080,51240,51400,51560,51720,51880,52040,52200,52360,52520,52680,52840,53000,53160,53320,53480,53640,53800,53960,54120,54280,54440,54600,54760,54920,55080,55240,55400,55560,55720,55880,56040,56200,56360,56520,56680,56840,57000,57160,57320,57480,57640,57800,57960,58120,58280,58440,58600,58760,58920,59080,59240,59400,59560,59720,59880,60040,60200,60360,60520,60680,60840,61000,61160,61320,61480,61640,61800,61960,62120,62280,62440,62600,62760,62920,63080,63240,63400,63560,63720,63880,64040,64200,64360,64520,64680,64840,65000,65160,65320,65480,65640,65800,65960,66120,66280,66440,66600,66760,66920,67080,67240,67400,67560,67720,67880,68040,68200,68360,68520,68680,68840,69000,69160,69320,69480,69640,69800,69960,70120,70280,70440,70600,70760,70920,71080,71240,71400,71560,71720,71880,72040,72200,72360,72520,72680,72840,73000,73160,73320,73480,73640,73800,73960,74120,74280,74440,74600,74760,74920,75080,75240,75400,75560,75720,75880,76040,76200,76360,76520,76680,76840,77000,77160,77320,77480,77640,77800,77960,78120,78280,78440,78600,78760,78920,79080,79240,79400,79560,79720,79880,80040,80200,80360,80520,80680,80840,81000,81160,81320,81480,81640,81800,81960,82120,82280,82440,82600,82760,82920,83080,83240,83400,83560,83720,83880,84040,84200,84360,84520,84680,84840,85000,85160,85320,85480,85640,85800,85960,86120,86280,86440,86600,86760,86920,87080,87240,87400,87560,87720,87880,88040,88200,88360,88520,88680,88840,89000,89160,89320,89480,89640,89800,89960,90120,90280,90440,90600,90760,90920,91080,91240,91400,91560,91720,91880,92040,92200,92360,92520,92680,92840,93000,93160,93320,93480,93640,93800,93960,94120,94280,94440,94600,94760,94920,95080,95240,95400,95560,95720,95880,96040,96200,96360,96520,96680,96840,97000,97160,97320,97480,97640,97800,97960,98120,98280,98440,98600,98760,98920,99080,99240,99400,99560,99720,99880,100040,100200,100360,100520,100680,100840,101000,101160,101320,101480,101640,101800,101960,102120,102280,102440,102600,102760,102920,103080,103240,103400,103560,103720,103880,104040,104200,104360,104520,104680,104840,105000,105160,105320,105480,105640,105800,105960,106120,106280,106440,106600,106760,106920,107080,107240,107400,107560,107720,107880,108040,108200,108360,108520,108680,108840,109000,109160,109320,109480,109640,109800,109960,110120,110280,110440,110600,110760,110920,111080,111240,111400,111560,111720,111880,112040,112200,112360,112520,112680,112840,113000,113160,113320,113480,113640,113800,113960,114120,114280,114440,114600,114760,114920,115080,115240,115400,115560,115720,115880,116040,116200,116360,116520,116680,116840,117000,117160,117320,117480,117640,117800,117960,118120,118280,118440,118600,118760,118920,119080,119240,119400,119560,119720,119880,120040,120200,120360,120520,120680,120840,121000,121160,121320,121480,121640,121800,121960,122120,122280,122440,122600,122760,122920,123080,123240,123400,123560,123720,123880,124040,124200,124360,124520,124680,124840,125000,125160,125320,125480,125640,125800,125960,126120,126280,126440,126600,126760,126920,127080,127240,127400,127560,127720,127880,128040,128200,128360,128520,128680,128840,129000,129160,129320,129480,129640,129800,129960,130120,130280,130440,130600,130760,130920,131080,131240,131400,131560,131720,131880,132040,132200,132360,132520,132680,132840,133000,133160,133320,133480,133640,133800,133960,134120,134280,134440,134600,134760,134920,135080,135240,135400,135560,135720,135880,136040,136200,136360,136520,136680,136840,137000,137160,137320,137480,137640,137800,137960,138120,138280,138440,138600,138760,138920,139080,139240,139400,139560,139720,139880,140040,140200,140360,140520,140680,140840,141000,141160,141320,141480,141640,141800,141960,142120,142280,142440,142600,142760,142920,143080,143240,143400,143560,143720,143880,144040,144200,144360,144520,144680,144840,145000,145160,145320,145480,145640,145800,145960,146120,146280,146440,146600,146760,146920,147080,147240,147400,147560,147720,147880,148040,148200,148360,148520,148680,148840,149000,149160,149320,149480,149640,149800,149960,150120,150280,150440,150600,150760,150920,151080,151240,151400,151560,151720,151880,152040,152200,152360,152520,152680,152840,153000,153160,153320,153480,153640,153800,153960,154120,154280,154440,154600,154760,154920,155080,155240,155400,155560,155720,155880,156040,156200,156360,156520,156680,156840,157000,157160,157320,157480,157640,157800,157960,158120,158280,158440,158600,158760,158920,159080,159240,159400,159560,159720,159880,160040,160200,160360,160520,160680,160840,161000,161160,161320,161480,161640,161800,161960,162120,162280,162440,162600,162760,162920,163080,163240,163400,163560,163720,163880,164040,164200,164360,164520,164680,164840,165000,165160,165320,165480,165640,165800,165960,166120,166280,166440,166600,166760,166920,167080,167240,167400,167560,167720,167880,168040,168200,168360,168520,168680,168840,169000,169160,169320,169480,169640,169800,169960,170120,170280,170440,170600,170760,170920,171080,171240,171400,171560,171720,171880,172040,172200,172360,172520,172680,172840,173000,173160,173320,173480,173640,173800,173960,174120,174280,174440,174600,174760,174920,175080,175240,175400,175560,175720,175880,176040,176200,176360,176520,176680,176840,177000,177160,177320,177480,177640,177800,177960,178120,178280,178440,178600,178760,178920,179080,179240,179400,179560,179720,179880,180040,180200,180360,180520,180680,180840,181000,181160,181320,181480,181640,181800,181960,182120,182280,182440,182600,182760,182920,183080,183240,183400,183560,183720,183880,184040,184200,184360,184520,184680,184840,185000,185160,185320,185480,185640,185800,185960,186120,186280,186440,186600,186760,186920,187080,187240,187400,187560,187720,187880,188040,188200,188360,188520,188680,188840,189000,189160,189320,189480,189640,189800,189960,190120,190280,190440,190600,190760,190920,191080,191240,191400,191560,191720,191880,192040,192200,192360,192520,192680,192840,193000,193160,193320,193480,193640,193800,193960,194120,194280,194440,194600,194760,194920,195080,195240,195400,195560,195720,195880,196040,196200,196360,196520,196680,196840,197000,197160,197320,197480,197640,197800,197960,198120,198280,198440,198600,198760,198920,199080,199240,199400,199560,199720,199880,200040,200200,200360,200520,200680,200840,201000,201160,201320,201480,201640,201800,201960,202120,202280,202440,202600,202760,202920,203080,203240,203400,203560,203720,203880,204040,204200,204360,204520,204680,204840,205000,205160,205320,205480,205640,205800,205960,206120,206280,206440,206600,206760,206920,207080,207240,207400,207560,207720,207880,208040,208200,208360,208520,208680,208840,209000,209160,209320,209480,209640,209800,209960,210120,210280,210440,210600,210760,210920,211080,211240,211400,211560,211720,211880,212040,212200,212360,212520,212680,212840,213000,213160,213320,213480,213640,213800,213960,214120,214280,214440,214600,214760,214920,215080,215240,215400,215560,215720,215880,216040,216200,216360,216520,216680,216840,217000,217160,217320,217480,217640,217800,217960,218120,218280,218440,218600,218760,218920,219080,219240,219400,219560,219720,219880,220040,220200,220360,220520,220680,220840,221000,221160,221320,221480,221640,221800,221960,222120,222280,222440,222600,222760,222920,223080,223240,223400,223560,223720,223880,224040,224200,224360,224520,224680,224840,225000,225160,225320,225480,225640,225800,225960,226120,226280,226440,226600,226760,226920,227080,227240,227400,227560,227720,227880,228040,228200,228360,228520,228680,228840,229000,229160,229320,229480,229640,229800,229960,230120,230280,230440,230600,230760,230920,231080,231240,231400,231560,231720,231880,232040,232200,232360,232520,232680,232840,233000,233160,233320,233480,233640,233800,233960,234120,234280,234440,234600,234760,234920,235080,235240,235400,235560,235720,235880,236040,236200,236360,236520,236680,236840,237000,237160,237320,237480,237640,237800,237960,238120,238280,238440,238600,238760,238920,239080,239240,239400,239560,239720,239880,240040,240200,240360,240520,240680,240840,241000,241160,241320,241480,241640,241800,241960,242120,242280,242440,242600,242760,242920,243080,243240,243400,243560,243720,243880,244040,244200,244360,244520,244680,244840,245000,245160,245320,245480,245640,245800,245960,246120,246280,246440,246600,246760,246920,247080,247240,247400,247560,247720,247880,248040,248200,248360,248520,248680,248840,249000,249160,249320,249480,249640,249800,249960,250120,250280,250440,250600,250760,250920,251080,251240,251400,251560,251720,251880,252040,252200,252360,252520,252680,252840,253000,253160,253320,253480,253640,253800,253960,254120,254280,254440,254600,254760,254920,255080,255240,255400,255560,255720,255880,256040,256200,256360,256520,256680,256840,257000,257160,257320,257480,257640,257800,257960,258120,258280,258440,258600,258760,258920,259080,259240,259400,259560,259720,259880,260040,260200,260360,260520,260680,260840,261000,261160,261320,261480,261640,261800,261960,262120,262280,262440,262600,262760,262920,263080,263240,263400,263560,263720,263880,264040,264200,264360,264520,264680,264840,265000,265160,265320,265480,265640,265800,265960,266120,266280,266440,266600,266760,266920,267080,267240,267400,267560,267720,267880,268040,268200,268360,268520,268680,268840,269000,269160,269320,269480,269640,269800,269960,270120,270280,270440,270600,270760,270920,271080,271240,271400,271560,271720,271880,272040,272200,272360,272520,272680,272840,273000,273160,273320,273480,273640,273800,273960,274120,274280,274440,274600,274760,274920,275080,275240,275400,275560,275720,275880,276040,276200,276360,276520,276680,276840,277000,277160,277320,277480,277640,277800,277960,278120,278280,278440,278600,278760,278920,279080,279240,279400,279560,279720,279880,280040,280200,280360,280520,280680,280840,281000,281160,281320,281480,281640,281800,281960,282120,282280,282440,282600,282760,282920,283080,283240,283400,283560,283720,283880,284040,284200,284360,284520,284680,284840,285000,285160,285320,285480,285640,285800,285960,286120,286280,286440,286600,286760,286920,287080,287240,287400,287560,287720,287880,288040,288200,288360,288520,288680,288840,289000,289160,289320,289480,289640,289800,289960,290120,290280,290440,290600,290760,290920,291080,291240,291400,291560,291720,291880,292040,292200,292360,292520,292680,292840,293000,293160,293320,293480,293640,293800,293960,294120,294280,294440,294600,294760,294920,295080,295240,295400,295560,295720,295880,296040,296200,296360,296520,296680,296840,297000,297160,297320,297480,297640,297800,297960,298120,298280,298440,298600,298760,298920,299080,299240,299400,299560,299720,299880,300040,300200,300360,300520,300680,300840,301000,301160,301320,301480,301640,301800,301960,302120,302280,302440,302600,302760,302920,303080,303240,303400,303560,303720,303880,304040,304200,304360,304520,304680,304840,305000,305160,305320,305480,305640,305800,305960,306120,306280,306440,306600,306760,306920,307080,307240,307400,307560,307720,307880,308040,308200,308360,308520,308680,308840,309000,309160,309320,309480,309640,309800,309960,310120,310280,310440,310600,310760,310920,311080,311240,311400,311560,311720,311880,312040,312200,312360,312520,312680,312840,313000,313160,313320,313480,313640,313800,313960,314120,314280,314440,314600,314760,314920,315080,315240,315400,315560,315720,315880,316040,316200,316360,316520,316680,316840,317000,317160,317320,317480,317640,317800,317960,318120,318280,318440,318600,318760,318920,319080,319240,319400,319560,319720,319880,320040,320200,320360,320520,320680,320840,321000,321160,321320,321480,321640,321800,321960,322120,322280,322440,322600,322760,322920,323080,323240,323400,323560,323720,323880,324040,324200,324360,324520,324680,324840,325000,325160,325320,325480,325640,325800,325960,326120,326280,326440,326600,326760,326920,327080,327240,327400,327560,327720,327880,328040,328200,328360,328520,328680,328840,329000,329160,329320,329480,329640,329800,329960,330120,330280,330440,330600,330760,330920,331080,331240,331400,331560,331720,331880,332040,332200,332360,332520,332680,332840,333000,333160,333320,333480,333640,333800,333960,334120,334280,334440,334600,334760,334920,335080,335240,335400,335560,335720,335880,336040,336200,336360,336520,336680,336840,337000,337160,337320,337480,337640,337800,337960,338120,338280,338440,338600,338760,338920,339080,339240,339400,339560,339720,339880,340040,340200,340360,340520,340680,340840,341000,341160,341320,341480,341640,341800,341960,342120,342280,342440,342600,342760,342920,343080,343240,343400,343560,343720,343880,344040,344200,344360,344520,344680,344840,345000,345160,345320,345480,345640,345800,345960,346120,346280,346440,346600,346760,346920,347080,347240,347400,347560,347720,347880,348040,348200,348360,348520,348680,348840,349000,349160,349320,349480,349640,349800,349960,350120,350280,350440,350600,350760,350920,351080,351240,351400,351560,351720,351880,352040,352200,352360,352520,352680,352840,353000,353160,353320,353480,353640,353800,353960,354120,354280,354440,354600,354760,354920,355080,355240,355400,355560,355720,355880,356040,356200,356360,356520,356680,356840,357000,357160,357320,357480,357640,357800,357960,358120,358280,358440,358600,358760,358920,359080,359240,359400,359560,359720,359880,360040,360200,360360,360520,360680,360840,361000,361160,361320,361480,361640,361800,361960,362120,362280,362440,362600,362760,362920,363080,363240,363400,363560,363720,363880,364040,364200,364360,364520,364680,364840,365000,365160,365320,365480,365640,365800,365960,366120,366280,366440,366600,366760,366920,367080,367240,367400,367560,367720,367880,368040,368200,368360,368520,368680,368840,369000,369160,369320,369480,369640,369800,369960,370120,370280,370440,370600,370760,370920,371080,371240,371400,371560,371720,371880,372040,372200,372360,372520,372680,372840,373000,373160,373320,373480,373640,373800,373960,374120,374280,374440,374600,374760,374920,375080,375240,375400,375560,375720,375880,376040,376200,376360,376520,376680,376840,377000,377160,377320,377480,377640,377800,377960,378120,378280,378440,378600,378760,378920,379080,379240,379400,379560,379720,379880,380040,380200,380360,380520,380680,380840,381000,381160,381320,381480,381640,381800,381960,382120,382280,382440,382600,382760,382920,383080,383240,383400,383560,383720,383880,384040,384200,384360,384520,384680,384840,385000,385160,385320,385480,385640,385800,385960,386120,386280,386440,386600,386760,386920,387080,387240,387400,387560,387720,387880,388040,388200,388360,388520,388680,388840,389000,389160,389320,389480,389640,389800,389960,390120,390280,390440,390600,390760,390920,391080,391240,391400,391560,391720,391880,392040,392200,392360,392520,392680,392840,393000,393160,393320,393480,393640,393800,393960,394120,394280,394440,394600,394760,394920,395080,395240,395400,395560,395720,395880,396040,396200,396360,396520,396680,396840,397000,397160,397320,397480,397640,397800,397960,398120,398280,398440,398600,398760,398920,399080,399240,399400,399560,399720,399880,400040,400200,400360,400520,400680,400840,401000,401160,401320,401480,401640,401800,401960,402120,402280,402440,402600,402760,402920,403080,403240,403400,403560,403720,403880,404040,404200,404360,404520,404680,404840,405000,405160,405320,405480,405640,405800,405960,406120,406280,406440,406600,406760,406920,407080,407240,407400,407560,407720,407880,408040,408200,408360,408520,408680,408840,409000,409160,409320,409480,409640,409800,409960,410120,410280,410440,410600,410760,410920,411080,411240,411400,411560,411720,411880,412040,412200,412360,412520,412680,412840,413000,413160,413320,413480,413640,413800,413960,414120,414280,414440,414600,414760,414920,415080,415240,415400,415560,415720,415880,416040,416200,416360,416520,416680,416840,417000,417160,417320,417480,417640,417800,417960,418120,418280,418440,418600,418760,418920,419080,419240,419400,419560,419720,419880,420040,420200,420360,420520,420680,420840,421000,421160,421320,421480,421640,421800,421960,422120,422280,422440,422600,422760,422920,423080,423240,423400,423560,423720,423880,424040,424200,424360,424520,424680,424840,425000,425160,425320,425480,425640,425800,425960,426120,426280,426440,426600,426760,426920,427080,427240,427400,427560,427720,427880,428040,428200,428360,428520,428680,428840,429000,429160,429320,429480,429640,429800,429960,430120,430280,430440,430600,430760,430920,431080,431240,431400,431560,431720,431880,432040,432200,432360,432520,432680,432840,433000,433160,433320,433480,433640,433800,433960,434120,434280,434440,434600,434760,434920,435080,435240,435400,435560,435720,435880,436040,436200,436360,436520,436680,436840,437000,437160,437320,437480,437640,437800,437960,438120,438280,438440,438600,438760,438920,439080,439240,439400,439560,439720,439880,440040,440200,440360,440520,440680,440840,441000,441160,441320,441480,441640,441800,441960,442120,442280,442440,442600,442760,442920,443080,443240,443400,443560,443720,443880,444040,444200,444360,444520,444680,444840,445000,445160,445320,445480,445640,445800,445960,446120,446280,446440,446600,446760,446920,447080,447240,447400,447560,447720,447880,448040,448200,448360,448520,448680,448840,449000,449160,449320,449480,449640,449800,449960,450120,450280,450440,450600,450760,450920,451080,451240,451400,451560,451720,451880,452040,452200,452360,452520,452680,452840,453000,453160,453320,453480,453640,453800,453960,454120,454280,454440,454600,454760,454920,455080,455240,455400,455560,455720,455880,456040,456200,456360,456520,456680,456840,457000,457160,457320,457480,457640,457800,457960,458120,458280,458440,458600,458760,458920,459080,459240,459400,459560,459720,459880,460040,460200,460360,460520,460680,460840,461000,461160,461320,461480,461640,461800,461960,462120,462280,462440,462600,462760,462920,463080,463240,463400,463560,463720,463880,464040,464200,464360,464520,464680,464840,465000,465160,465320,465480,465640,465800,465960,466120,466280,466440,466600,466760,466920,467080,467240,467400,467560,467720,467880,468040,468200,468360,468520,468680,468840,469000,469160,469320,469480,469640,469800,469960,470120,470280,470440,470600,470760,470920,471080,471240,471400,471560,471720,471880,472040,472200,472360,472520,472680,472840,473000,473160,473320,473480,473640,473800,473960,474120,474280,474440,474600,474760,474920,475080,475240,475400,475560,475720,475880,476040,476200,476360,476520,476680,476840,477000,477160,477320,477480,477640,477800,477960,478120,478280,478440,478600,478760,478920,479080,479240,479400,479560,479720,479880,480040,480200,480360,480520,480680,480840,481000,481160,481320,481480,481640,481800,481960,482120,482280,482440,482600,482760,482920,483080,483240,483400,483560,483720,483880,484040,484200,484360,484520,484680,484840,485000,485160,485320,485480,485640,485800,485960,486120,486280,486440,486600,486760,486920,487080,487240,487400,487560,487720,487880,488040,488200,488360,488520,488680,488840,489000,489160,489320,489480,489640,489800,489960,490120,490280,490440,490600,490760,490920,491080,491240,491400,491560,491720,491880,492040,492200,492360,492520,492680,492840,493000,493160,493320,493480,493640,493800,493960,494120,494280,494440,494600,494760,494920,495080,495240,495400,495560,495720,495880,496040,496200,496360,496520,496680,496840,497000,497160,497320,497480,497640,497800,497960,498120,498280,498440,498600,498760,498920,499080,499240,499400,499560,499720,499880,500040,500200,500360,500520,500680,500840,501000,501160,501320,501480,501640,501800,501960,502120,502280,502440,502600,502760,502920,503080,503240,503400,503560,503720,503880,504040,504200,504360,504520,504680,504840,505000,505160,505320,505480,505640,505800,505960,506120,506280,506440,506600,506760,506920,507080,507240,507400,507560,507720,507880,508040,508200,508360,508520,508680,508840,509000,509160,509320,509480,509640,509800,509960,510120,510280,510440,510600,510760,510920,511080,511240,511400,511560,511720,511880,512040,512200,512360,512520,512680,512840,513000,513160,513320,513480,513640,513800,513960,514120,514280,514440,514600,514760,514920,515080,515240,515400,515560,515720,515880,516040,516200,516360,516520,516680,516840,517000,517160,517320,517480,517640,517800,517960,518120,518280,518440,518600,518760,518920,519080,519240,519400,519560,519720,519880,520040,520200,520360,520520,520680,520840,521000,521160,521320,521480,521640,521800,521960,522120,522280,522440,522600,522760,522920,523080,523240,523400,523560,523720,523880,524040,524200,524360,524520,524680,524840,525000,525160,525320,525480,525640,525800,525960,526120,526280,526440,526600,526760,526920,527080,527240,527400,527560,527720,527880,528040,528200,528360,528520,528680,528840,529000,529160,529320,529480,529640,529800,529960,530120,530280,530440,530600,530760,530920,531080,531240,531400,531560,531720,531880,532040,532200,532360,532520,532680,532840,533000,533160,533320,533480,533640,533800,533960,534120,534280,534440,534600,534760,534920,535080,535240,535400,535560,535720,535880,536040,536200,536360,536520,536680,536840,537000,537160,537320,537480,537640,537800,537960,538120,538280,538440,538600,538760,538920,539080,539240,539400,539560,539720,539880,540040,540200,540360,540520,540680,540840,541000,541160,541320,541480,541640,541800,541960,542120,542280,542440,542600,542760,542920,543080,543240,543400,543560,543720,543880,544040,544200,544360,544520,544680,544840,545000,545160,545320,545480,545640,545800,545960,546120,546280,546440,546600,546760,546920,547080,547240,547400,547560,547720,547880,548040,548200,548360,548520,548680,548840,549000,549160,549320,549480,549640,549800,549960,550120,550280,550440,550600,550760,550920,551080,551240,551400,551560,551720,551880,552040,552200,552360,552520,552680,552840,553000,553160,553320,553480,553640,553800,553960,554120,554280,554440,554600,554760,554920,555080,555240,555400,555560,555720,555880,556040,556200,556360,556520,556680,556840,557000,557160,557320,557480,557640,557800,557960,558120,558280,558440,558600,558760,558920,559080,559240,559400,559560,559720,559880,560040,560200,560360,560520,560680,560840,561000,561160,561320,561480,561640,561800,561960,562120,562280,562440,562600,562760,562920,563080,563240,563400,563560,563720,563880,564040,564200,564360,564520,564680,564840,565000,565160,565320,565480,565640,565800,565960,566120,566280,566440,566600,566760,566920,567080,567240,567400,567560,567720,567880,568040,568200,568360,568520,568680,568840,569000,569160,569320,569480,569640,569800,569960,570120,570280,570440,570600,570760,570920,571080,571240,571400,571560,571720,571880,572040,572200,572360,572520,572680,572840,573000,573160,573320,573480,573640,573800,573960,574120,574280,574440,574600,574760,574920,575080,575240,575400,575560,575720,575880,576040,576200,576360,576520,576680,576840,577000,577160,577320,577480,577640,577800,577960,578120,578280,578440,578600,578760,578920,579080,579240,579400,579560,579720,579880,580040,580200,580360,580520,580680,580840,581000,581160,581320,581480,581640,581800,581960,582120,582280,582440,582600,582760,582920,583080,583240,583400,583560,583720,583880,584040,584200,584360,584520,584680,584840,585000,585160,585320,585480,585640,585800,585960,586120,586280,586440,586600,586760,586920,587080,587240,587400,587560,587720,587880,588040,588200,588360,588520,588680,588840,589000,589160,589320,589480,589640,589800,589960,590120,590280,590440,590600,590760,590920,591080,591240,591400,591560,591720,591880,592040,592200,592360,592520,592680,592840,593000,593160,593320,593480,593640,593800,593960,594120,594280,594440,594600,594760,594920,595080,595240,595400,595560,595720,595880,596040,596200,596360,596520,596680,596840,597000,597160,597320,597480,597640,597800,597960,598120,598280,598440,598600,598760,598920,599080,599240,599400,599560,599720,599880,600040,600200,600360,600520,600680,600840,601000,601160,601320,601480,601640,601800,601960,602120,602280,602440,602600,602760,602920,603080,603240,603400,603560,603720,603880,604040,604200,604360,604520,604680,604840,605000,605160,605320,605480,605640,605800,605960,606120,606280,606440,606600,606760,606920,607080,607240,607400,607560,607720,607880,608040,608200,608360,608520,608680,608840,609000,609160,609320,609480,609640,609800,609960,610120,610280,610440,610600,610760,610920,611080,611240,611400,611560,611720,611880,612040,612200,612360,612520,612680,612840,613000,613160,613320,613480,613640,613800,613960,614120,614280,614440,614600,614760,614920,615080,615240,615400,615560,615720,615880,616040,616200,616360,616520,616680,616840,617000,617160,617320,617480,617640,617800,617960,618120,618280,618440,618600,618760,618920,619080,619240,619400,619560,619720,619880,620040,620200,620360,620520,620680,620840,621000,621160,621320,621480,621640,621800,621960,622120,622280,622440,622600,622760,622920,623080,623240,623400,623560,623720,623880,624040,624200,624360,624520,624680,624840,625000,625160,625320,625480,625640,625800,625960,626120,626280,626440,626600,626760,626920,627080,627240,627400,627560,627720,627880,628040,628200,628360,628520,628680,628840,629000,629160,629320,629480,629640,629800,629960,630120,630280,630440,630600,630760,630920,631080,631240,631400,631560,631720,631880,632040,632200,632360,632520,632680,632840,633000,633160,633320,633480,633640,633800,633960,634120,634280,634440,634600,634760,634920,635080,635240,635400,635560,635720,635880,636040,636200,636360,636520,636680,636840,637000,637160,637320,637480,637640,637800,637960,638120,638280,638440,638600,638760,638920,639080,639240,639400,639560,639720,639880,640040,640200,640360,640520,640680,640840,641000,641160,641320,641480,641640,641800,641960,642120,642280,642440,642600,642760,642920,643080,643240,643400,643560,643720,643880,644040,644200,644360,644520,644680,644840,645000,645160,645320,645480,645640,645800,645960,646120,646280,646440,646600,646760,646920,647080,647240,647400,647560,647720,647880,648040,648200,648360,648520,648680,648840,649000,649160,649320,649480,649640,649800,649960,650120,650280,650440,650600,650760,650920,651080,651240,651400,651560,651720,651880,652040,652200,652360,652520,652680,652840,653000,653160,653320,653480,653640,653800,653960,654120,654280,654440,654600,654760,654920,655080,655240,655400,655560,655720,655880,656040,656200); +-- Query Hash: f59aff38836fd18f7660e9d299b323d5 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); +-- Query Hash: 46c5f5b6c31d62cf0eedf95fa5869254 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_200k WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); +-- Query Hash: 56bd35e852de4f083ab337edbb90de02 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_300k WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); +-- Query Hash: 82e1555fc50aae7a4634243c4179f8f4 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_400k WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); +-- Query Hash: c7b0f030ec157796f709324ac699f8ca +EXPLAIN (COSTS OFF) SELECT * FROM t_range_500k WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); +-- Query Hash: 208c5f0105e7a8b6a730af61d64f09b6 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_600k WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); +-- Query Hash: b67207a2e805a361f7f1e8dc8a925fdd +EXPLAIN (COSTS OFF) SELECT * FROM t_range_700k WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); +-- Query Hash: f075a79f20910f7f9fb02cf29d58e408 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_800k WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); +-- Query Hash: f9605d447096d011773f1c73bdd599c1 +EXPLAIN (COSTS OFF) SELECT * FROM t_range_900k WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); +-- Query Hash: 38847518cd55e24add1e8125e00d837d +EXPLAIN (COSTS OFF) SELECT * FROM t_range_1m WHERE id in (1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1488,1492,1496,1500,1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1548,1552,1556,1560,1564,1568,1572,1576,1580,1584,1588,1592,1596,1600,1604,1608,1612,1616,1620,1624,1628,1632,1636,1640,1644,1648,1652,1656,1660,1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1828,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1876,1880,1884,1888,1892,1896,1900,1904,1908,1912,1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1972,1976,1980,1984,1988,1992,1996,2000,2004,2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068,2072,2076,2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2120,2124,2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276,2280,2284,2288,2292,2296,2300,2304,2308,2312,2316,2320,2324,2328,2332,2336,2340,2344,2348,2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508,2512,2516,2520,2524,2528,2532,2536,2540,2544,2548,2552,2556,2560,2564,2568,2572,2576,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676,2680,2684,2688,2692,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744,2748,2752,2756,2760,2764,2768,2772,2776,2780,2784,2788,2792,2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856,2860,2864,2868,2872,2876,2880,2884,2888,2892,2896,2900,2904,2908,2912,2916,2920,2924,2928,2932,2936,2940,2944,2948,2952,2956,2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3004,3008,3012,3016,3020,3024,3028,3032,3036,3040,3044,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172,3176,3180,3184,3188,3192,3196,3200,3204,3208,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256,3260,3264,3268,3272,3276,3280,3284,3288,3292,3296,3300,3304,3308,3312,3316,3320,3324,3328,3332,3336,3340,3344,3348,3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404,3408,3412,3416,3420,3424,3428,3432,3436,3440,3444,3448,3452,3456,3460,3464,3468,3472,3476,3480,3484,3488,3492,3496,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3548,3552,3556,3560,3564,3568,3572,3576,3580,3584,3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664,3668,3672,3676,3680,3684,3688,3692,3696,3700,3704,3708,3712,3716,3720,3724,3728,3732,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824,3828,3832,3836,3840,3844,3848,3852,3856,3860,3864,3868,3872,3876,3880,3884,3888,3892,3896,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936,3940,3944,3948,3952,3956,3960,3964,3968,3972,3976,3980,3984,3988,3992,3996,4000,4004,4008,4012,4016,4020,4024,4028,4032,4036,4040,4044,4048,4052,4056,4060,4064,4068,4072,4076,4080,4084,4088,4092,4096,4100,4104,4108,4112,4116,4120,4124,4128,4132,4136,4140,4144,4148,4152,4156,4160,4164,4168,4172,4176,4180,4184,4188,4192,4196,4200,4204,4208,4212,4216,4220,4224,4228,4232,4236,4240,4244,4248,4252,4256,4260,4264,4268,4272,4276,4280,4284,4288,4292,4296,4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348,4352,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4408,4412,4416,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472,4476,4480,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528,4532,4536,4540,4544,4548,4552,4556,4560,4564,4568,4572,4576,4580,4584,4588,4592,4596,4600,4604,4608,4612,4616,4620,4624,4628,4632,4636,4640,4644,4648,4652,4656,4660,4664,4668,4672,4676,4680,4684,4688,4692,4696,4700,4704,4708,4712,4716,4720,4724,4728,4732,4736,4740,4744,4748,4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844,4848,4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900,4904,4908,4912,4916,4920,4924,4928,4932,4936,4940,4944,4948,4952,4956,4960,4964,4968,4972,4976,4980,4984,4988,4992,4996); -- Query Hash: d5f0641093478e5f0b19a2ec7ffae628 EXPLAIN (COSTS OFF) SELECT * FROM t_range_100k; -- Query Hash: e32ea0054063b7f9da6790d6b43e3e14