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
I created a table in which one of the columns has the type Array (String). To insert this table, I pass an array of strings. As a result, an incorrect sql-code is generated. The array of strings is not surrounded by the characters [ and ].
I think that here it is necessary to add the missing brackets.
I created a table in which one of the columns has the type Array (String). To insert this table, I pass an array of strings. As a result, an incorrect sql-code is generated. The array of strings is not surrounded by the characters [ and ].
I think that here it is necessary to add the missing brackets.
clickhouse-php-client/src/Query/Grammar.php
Line 37 in bef4a05
To become
return "['" . implode("','", $value) . "']";
The text was updated successfully, but these errors were encountered: