You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cannot parse expression of type Bool here: ,56,,1,1,'hrb-0035c001',191868145,2): While executing ValuesBlockInputFormat. (SYNTAX_ERROR) IN:INSERT INTO raw_ozon_products_list (archived,getter_stats_id,is_discounted,is_fbo_visible,is_fbs_visible,offer_id ,product_id,shop_id) VALUES (,56,,1,1,'hrb-0035c001',191868145,2)
The text was updated successfully, but these errors were encountered:
(https://github.com/smi2/phpClickHouse/blob/master/src/Quote/StrictQuoteLine.php) on line 62 you guys use 'implode' function to generate SQL request to database. The trouble is that implode(',', [false, true]) returns ",1" because implode just ignores "false".
The typical consequence of this trouble is that:
Cannot parse expression of type Bool here: ,56,,1,1,'hrb-0035c001',191868145,2): While executing ValuesBlockInputFormat. (SYNTAX_ERROR) IN:INSERT INTO
raw_ozon_products_list
(archived
,getter_stats_id
,is_discounted
,is_fbo_visible
,is_fbs_visible
,offer_id
,product_id
,shop_id
) VALUES (,56,,1,1,'hrb-0035c001',191868145,2)The text was updated successfully, but these errors were encountered: