SELECT 
  a.*, 
  b.option_name, 
  b.internal_option_name, 
  b.option_text, 
  b.description, 
  b.inner_hint, 
  b.incorrect_message, 
  b.comment 
FROM 
  cscart_product_options as a 
  LEFT JOIN cscart_product_options_descriptions as b ON a.option_id = b.option_id 
  AND b.lang_code = 'pl' 
WHERE 
  a.product_id IN (
    1142, 2380, 1941, 2052, 1139, 2055, 1960, 
    1926, 1990, 2341, 2053, 1937, 1148, 
    1149, 1147, 1150, 1145, 1146, 1152, 
    1151, 1156, 1143, 1157, 1144, 1153
  ) 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.00018

JSON explain

{
  "query_block": {
    "select_id": 1,
    "message": "no matching row in const table"
  }
}