yugabyte=# EXPLAIN (ANALYZE, DIST) UPDATE test SET c1 = 'B' WHERE id IN (1, 2, 3);
QUERY PLAN
------------------------------------------------------------------------------------------------------------------------
Update on test (cost=0.00..4.11 rows=1 width=128) (actual time=1.915..1.915 rows=0 loops=1)
-> Index Scan using test_pkey on test (cost=0.00..4.11 rows=1 width=128) (actual time=1.873..1.877 rows=3 loops=1)
Index Cond: (id = ANY ('{1,2,3}'::integer[]))
Storage Table Read Requests: 1
Storage Table Read Execution Time: 0.315 ms
Storage Table Rows Scanned: 3
Storage Table Write Requests: 3
Planning Time: 0.101 ms
Execution Time: 5.163 ms
Storage Read Requests: 1
Storage Read Execution Time: 0.315 ms
Storage Rows Scanned: 3
Catalog Read Requests: 3
Catalog Read Execution Time: 2.762 ms
Catalog Write Requests: 0
Storage Write Requests: 3
Storage Flush Requests: 1
Storage Flush Execution Time: 2.549 ms
Storage Execution Time: 5.626 ms
Peak Memory Usage: 59 kB
(20 rows)