Details
-
Bug
-
Status: Closed (View Workflow)
-
Critical
-
Resolution: Fixed
-
1.0.9
-
None
-
2017-15
Description
We found a bug when you have a query with cross engine join and a filter where the string contains a quote character:
select r.* from column_store_table c
|
join innodb_table t on t.id = c.inno_id
|
where t.title = '\''
|
The server returns:
Internal error: fatal error executing query in crossengine client lib(17)(17)
The same happens with backslash char:
select r.* from raw_detection r
|
join tracks t on t.id = r.track_id
|
where t.title = '\\'
|
limit 10
|