string(1956) "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) OR product_category_alias.category_id IN (:category0)) 
            GROUP BY
                product.product_id
             
            ORDER BY product.date_added_to_shop DESC, product.product_id DESC 
            LIMIT 5 OFFSET 10  | 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`'"