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 = 'ru' 
  LEFT JOIN cscart_product_global_option_links as c ON c.option_id = a.option_id 
WHERE 
  c.product_id IN (
    1096, 1098, 1095, 1078, 1086, 1099, 886, 
    884, 1055, 1056, 1057, 1058, 786, 789, 
    792, 699, 777, 774, 781, 1118, 1024, 
    1025, 1028, 1050, 1051, 1052, 1049, 
    1067, 1033, 1034, 1037, 1035, 1036, 
    1038, 1032, 1062, 1061, 1060, 1063, 
    1059, 1064, 1066, 976, 978, 968, 971, 
    636, 969, 972, 977, 1116, 564, 848, 836, 
    834, 592, 590, 859, 828, 842, 857, 879, 
    839, 868, 852, 873, 591, 864, 875, 832, 
    1109, 1097, 1113, 1119, 679, 568, 578, 
    583, 573, 1040, 1072, 1022, 1023, 1054, 
    1053, 1070, 815, 811, 820, 819, 1100, 
    1115, 959, 952, 950, 951
  ) 
  AND a.product_id = 0 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.00045

JSON explain

{
  "query_block": {
    "select_id": 1,
    "message": "Impossible WHERE noticed after reading const tables"
  }
}