Skip to content
Snippets Groups Projects
Commit 1a25e89f authored by Timm Fitschen's avatar Timm Fitschen
Browse files

Merge branch 'f-fix-23' into 'dev'

FIX: fix sql syntax error; fixes #23

Closes #23

See merge request caosdb/caosdb-mysqlbackend!21
parents 59cc9c8b a0d51162
No related branches found
No related tags found
No related merge requests found
......@@ -47,6 +47,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ###
* #23 Incompatibility with MariaDB 10.3
* Fixed the `>=` and `<=` operators for comparisons in POV query filters with
stored DATE values. The fix makes the implementation consistent
However, the current definition and implementation of the
......
......@@ -77,7 +77,7 @@ retrieveEntityBody: BEGIN
IF IVersion IS NULL THEN
-- RETURN EARLY - Version does not exist.
SELECT 0 WHERE 0 = 1;
SELECT 0 FROM entities WHERE 0 = 1;
LEAVE retrieveEntityBody;
END IF;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment