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 (
    79001, 79138, 79159, 79173, 79196, 79197, 
    79198, 79199, 79200, 79201, 79202, 
    79223, 79232, 79233, 79235, 79259, 
    79340, 79417, 79432, 79451
  )

Query time 0.00031

Explain
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE cscart_product_options range PRIMARY PRIMARY 3 20 Using where
1 SIMPLE cscart_ult_objects_sharing eq_ref PRIMARY PRIMARY 159 toolboxdigitalshop_dev.cscart_product_options.option_id,const,const 1 Using where; Using index

Result

option_id option_type
79001 S
79138 S
79159 S
79173 S
79196 S
79197 S
79198 S
79199 S
79200 S
79201 S
79202 S
79223 S
79232 S
79233 S
79235 S
79259 S
79340 S
79417 S
79432 S
79451 S