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
But when execting the following command, StoneDB return "ERROR 6 (HY000): The query includes syntax that is not supported by the storage engine. Either restructure the query with supported syntax, or enable the MySQL core::Query Path in config file to execute the query with reduced performance."
The command:
SELECT*FROM t0
WHERE ((t0.c0) LIKE (t0.c0))
UNION ALLSELECT*FROM t0
WHERE (NOT ((t0.c0) LIKE (t0.c0)))
UNION ALLSELECT*FROM t0
WHERE ((((t0.c0) LIKE (t0.c0))) IS NULL);
Expected behavior
Such query is supported
How To Reproduce
CREATETABLEt0
(
c0 INT
);
SELECT*FROM t0
WHERE ((t0.c0) LIKE (t0.c0))
UNION ALLSELECT*FROM t0
WHERE (NOT ((t0.c0) LIKE (t0.c0)))
UNION ALLSELECT*FROM t0
WHERE ((((t0.c0) LIKE (t0.c0))) IS NULL);
Environment
Docker v1.0.4
Are you interested in submitting a PR to solve the problem?
Yes, I will!
The text was updated successfully, but these errors were encountered:
Have you read the Contributing Guidelines on issues?
Please confirm if bug report does NOT exists already ?
Describe the problem
According to https://stonedb.io/docs/developer-guide/statements-for-queries, StoneDB support
UNION ALL
andLIKE
.But when execting the following command, StoneDB return "ERROR 6 (HY000): The query includes syntax that is not supported by the storage engine. Either restructure the query with supported syntax, or enable the MySQL core::Query Path in config file to execute the query with reduced performance."
The command:
Expected behavior
Such query is supported
How To Reproduce
Environment
Docker v1.0.4
Are you interested in submitting a PR to solve the problem?
The text was updated successfully, but these errors were encountered: