SELECT 
  bundle_image_id, 
  bundle_id 
FROM 
  cscart_product_bundle_images 
WHERE 
  bundle_id IN (1, 2, 3)

Query time 0.00654

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "1.60"
    },
    "table": {
      "table_name": "cscart_product_bundle_images",
      "access_type": "index",
      "possible_keys": [
        "bundle_id"
      ],
      "key": "bundle_id",
      "used_key_parts": [
        "bundle_id"
      ],
      "key_length": "4",
      "rows_examined_per_scan": 3,
      "rows_produced_per_join": 3,
      "filtered": "100.00",
      "using_index": true,
      "cost_info": {
        "read_cost": "1.00",
        "eval_cost": "0.60",
        "prefix_cost": "1.60",
        "data_read_per_join": "48"
      },
      "used_columns": [
        "bundle_image_id",
        "bundle_id"
      ],
      "attached_condition": "(`twebezli_Commercemodalpopup`.`cscart_product_bundle_images`.`bundle_id` in (1,2,3))"
    }
  }
}

Result

bundle_image_id bundle_id
1 1
2 2
3 3