string(4099) "Query failed: SELECT
                    product.category_id
                    , product.product_id
                    , CONCAT_WS('.', productName.package, productName.name) AS name
                    , round(product.price / 1.95583, 2) AS price
                    , product.price_drop_percent AS dropPercent
                    , round(product.price / 1.95583, 2) AS basePrice
                    , brand.name AS brandName
                    , brand.brand_id AS brandId
                    , brand.brand_type_id AS brandType
                    , product.time_spent_on_site
                    , round(product.price_after_discount / 1.95583, 2) as price_after_discount
                    , round((product.price - product.price_after_discount) / product.price * 100, 2) as productDiscount
        
                   ,DATE(product.date_added_to_shop) as onSite
        
                FROM category
                JOIN product ON (
                                    product.category_id = category.category_id
                                    AND product.is_in_shop = 1
                                )
                LEFT JOIN product_category_alias ON (product_category_alias.product_id = product.product_id)
                JOIN brand ON (brand.brand_id = product.brand_id)
                /* Product title translation */
                JOIN translation AS productName ON (productName.translation_id = product.title_translation_id)                 
        
             WHERE  (category.category_id IN (:category0, :category1, :category2, :category3, :category4, :category5, :category6, :category7, :category8, :category9, :category10, :category11, :category12, :category13, :category14, :category15, :category16, :category17, :category18, :category19, :category20, :category21, :category22, :category23, :category24, :category25, :category26, :category27, :category28, :category29, :category30, :category31, :category32, :category33, :category34, :category35, :category36, :category37, :category38, :category39, :category40, :category41, :category42, :category43, :category44, :category45, :category46, :category47, :category48, :category49, :category50, :category51, :category52, :category53, :category54, :category55, :category56, :category57, :category58, :category59, :category60, :category61, :category62, :category63, :category64, :category65, :category66, :category67, :category68, :category69, :category70, :category71, :category72, :category73, :category74, :category75, :category76, :category77, :category78, :category79, :category80, :category81, :category82, :category83) OR product_category_alias.category_id IN (:category0, :category1, :category2, :category3, :category4, :category5, :category6, :category7, :category8, :category9, :category10, :category11, :category12, :category13, :category14, :category15, :category16, :category17, :category18, :category19, :category20, :category21, :category22, :category23, :category24, :category25, :category26, :category27, :category28, :category29, :category30, :category31, :category32, :category33, :category34, :category35, :category36, :category37, :category38, :category39, :category40, :category41, :category42, :category43, :category44, :category45, :category46, :category47, :category48, :category49, :category50, :category51, :category52, :category53, :category54, :category55, :category56, :category57, :category58, :category59, :category60, :category61, :category62, :category63, :category64, :category65, :category66, :category67, :category68, :category69, :category70, :category71, :category72, :category73, :category74, :category75, :category76, :category77, :category78, :category79, :category80, :category81, :category82, :category83)) 
            GROUP BY
                product.product_id
             
            ORDER BY product.date_added_to_shop DESC, product.product_id DESC 
            LIMIT 60 OFFSET 1260  | MESSAGE: SQLSTATE[22003]: Numeric value out of range: 1690 BIGINT UNSIGNED value is out of range in '`contour_erp`.`product`.`price` - `contour_erp`.`product`.`price_after_discount`'"