SELECT 
  c.product_id AS cur_product_id, 
  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' 
  LEFT JOIN cscart_product_global_option_links as c ON c.option_id = a.option_id 
WHERE 
  c.product_id IN (
    2127, 2305, 1812, 2038, 2306, 2129, 2171, 
    2039, 2040, 1985, 2114, 2344, 1949, 
    2041, 2318, 1961, 2042, 1986, 2343, 
    2077, 2172, 2185, 2159, 2216, 2218, 
    2229, 2228, 2186, 2184, 1934, 2358, 
    1994, 2006, 2075, 1962, 2065, 1992, 
    2008, 1984, 1993, 1936, 2238, 2237, 
    2311, 2298, 2043, 1954, 1953, 1752, 
    1827, 1870, 1803, 1828, 1754, 1770, 
    1879, 1874, 1829, 1864, 1904, 1842, 
    1781, 1894, 2153, 1886, 1887, 2085, 
    2195, 2130, 2382, 2011, 1919, 1922, 
    1942, 1923, 1933, 1945, 1946, 2376, 
    1746
  ) 
  AND a.product_id = 0 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.00026

JSON explain

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