SELECT 
  feature_id, 
  feature_type 
FROM 
  cscart_product_features 
  INNER JOIN cscart_ult_objects_sharing ON (
    cscart_ult_objects_sharing.share_object_id = cscart_product_features.feature_id 
    AND cscart_ult_objects_sharing.share_company_id = 1 
    AND cscart_ult_objects_sharing.share_object_type = 'product_features'
  ) 
WHERE 
  feature_id IN (1, 58, 55, 56, 65, 6, 66, 86, 47, 10, 39)

Query time 0.00058

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "11.56"
    },
    "nested_loop": [
      {
        "table": {
          "table_name": "cscart_product_features",
          "access_type": "range",
          "possible_keys": [
            "PRIMARY"
          ],
          "key": "PRIMARY",
          "used_key_parts": [
            "feature_id"
          ],
          "key_length": "3",
          "rows_examined_per_scan": 11,
          "rows_produced_per_join": 11,
          "filtered": "100.00",
          "index_condition": "(`test_uchur_k`.`cscart_product_features`.`feature_id` in (1,58,55,56,65,6,66,86,47,10,39))",
          "cost_info": {
            "read_cost": "6.61",
            "eval_cost": "1.10",
            "prefix_cost": "7.71",
            "data_read_per_join": "21K"
          },
          "used_columns": [
            "feature_id",
            "feature_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": [
            "test_uchur_k.cscart_product_features.feature_id",
            "const",
            "const"
          ],
          "rows_examined_per_scan": 1,
          "rows_produced_per_join": 11,
          "filtered": "100.00",
          "using_index": true,
          "cost_info": {
            "read_cost": "2.75",
            "eval_cost": "1.10",
            "prefix_cost": "11.56",
            "data_read_per_join": "1K"
          },
          "used_columns": [
            "share_company_id",
            "share_object_id",
            "share_object_type"
          ],
          "attached_condition": "(`test_uchur_k`.`cscart_ult_objects_sharing`.`share_object_id` = `test_uchur_k`.`cscart_product_features`.`feature_id`)"
        }
      }
    ]
  }
}

Result

feature_id feature_type
1 E
6 M
10 M
39 S
47 M
55 S
56 M
58 M
65 M
66 S
86 S