SELECT 
  option_id, 
  option_type 
FROM 
  cscart_product_options 
  INNER JOIN cscart_ult_objects_sharing ON (
    cscart_ult_objects_sharing.share_object_id = cscart_product_options.option_id 
    AND cscart_ult_objects_sharing.share_company_id = 1 
    AND cscart_ult_objects_sharing.share_object_type = 'product_options'
  ) 
WHERE 
  option_id IN (
    836, 1052, 1053, 1078, 1083, 1085, 1086, 
    1260, 1261, 1262
  )

Query time 0.00038

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "10.51"
    },
    "nested_loop": [
      {
        "table": {
          "table_name": "cscart_product_options",
          "access_type": "range",
          "possible_keys": [
            "PRIMARY"
          ],
          "key": "PRIMARY",
          "used_key_parts": [
            "option_id"
          ],
          "key_length": "3",
          "rows_examined_per_scan": 10,
          "rows_produced_per_join": 10,
          "filtered": "100.00",
          "index_condition": "(`primapearl_r_new`.`cscart_product_options`.`option_id` in (836,1052,1053,1078,1083,1085,1086,1260,1261,1262))",
          "cost_info": {
            "read_cost": "6.01",
            "eval_cost": "1.00",
            "prefix_cost": "7.01",
            "data_read_per_join": "27K"
          },
          "used_columns": [
            "option_id",
            "option_type"
          ]
        }
      },
      {
        "table": {
          "table_name": "cscart_ult_objects_sharing",
          "access_type": "eq_ref",
          "possible_keys": [
            "PRIMARY"
          ],
          "key": "PRIMARY",
          "used_key_parts": [
            "share_object_id",
            "share_company_id",
            "share_object_type"
          ],
          "key_length": "159",
          "ref": [
            "primapearl_r_new.cscart_product_options.option_id",
            "const",
            "const"
          ],
          "rows_examined_per_scan": 1,
          "rows_produced_per_join": 10,
          "filtered": "100.00",
          "using_index": true,
          "cost_info": {
            "read_cost": "2.50",
            "eval_cost": "1.00",
            "prefix_cost": "10.51",
            "data_read_per_join": "1K"
          },
          "used_columns": [
            "share_company_id",
            "share_object_id",
            "share_object_type"
          ],
          "attached_condition": "(`primapearl_r_new`.`cscart_ult_objects_sharing`.`share_object_id` = `primapearl_r_new`.`cscart_product_options`.`option_id`)"
        }
      }
    ]
  }
}

Result

option_id option_type
836 S
1052 S
1053 S
1078 S
1083 S
1085 S
1086 S
1260 S
1261 S
1262 S