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
Since cast to Array(String)assumes that elements are seperated by quote(that is '), but settings composed_data_type_output_format_mode='spark', discard quote, and error is met.
Modification is not so easy, lots of work need to be done. So we leave it alone now, if we have time, try fix.
Backend
CH(Clickhouse)
Bug description
SQL:
select cast(array('1','2', 'abc', '\'1\'') as string);
Vanila:
[1, 2, abc, '1']
Gluten:
['1','2', 'abc', '\'1\'']
Clickhouse:
Spark version
None
Spark configurations
No response
System information
No response
Relevant logs
No response
The text was updated successfully, but these errors were encountered: