[MCOL-4214] Show more meaningful error message when cross-engine support is not configured Created: 2020-07-27 Updated: 2023-10-26 Resolved: 2023-10-26 |
|
| Status: | Closed |
| Project: | MariaDB ColumnStore |
| Component/s: | DMLProc |
| Affects Version/s: | None |
| Fix Version/s: | Icebox |
| Type: | Bug | Priority: | Minor |
| Reporter: | susil.behera | Assignee: | Unassigned |
| Resolution: | Won't Fix | Votes: | 0 |
| Labels: | None | ||
| Environment: |
Server version: 10.5.4-MariaDB MariaDB Server |
||
| Description |
|
To perform write operations like UPDATE/DELETE on a columnstore table by referencing to an Inndb table one needs cross-engine configuration. But if someone tries without it the error message is not suggesting anything about the required configuration. On a setup without cross-engine configuration> UPDATE t_cs SET b=(SELECT b FROM t_innodb LIMIT 1); DELETE FROM t_cs WHERE b=(SELECT b FROM t_innodb LIMIT 1); The error msgs should be suggesting the actual problem. |