Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-mysqlbackend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-mysqlbackend
Commits
1a25e89f
Commit
1a25e89f
authored
4 years ago
by
Timm Fitschen
Browse files
Options
Downloads
Plain Diff
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
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+1
-0
1 addition, 0 deletions
CHANGELOG.md
procedures/retrieveEntity.sql
+1
-1
1 addition, 1 deletion
procedures/retrieveEntity.sql
with
2 additions
and
1 deletion
CHANGELOG.md
+
1
−
0
View file @
1a25e89f
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
procedures/retrieveEntity.sql
+
1
−
1
View file @
1a25e89f
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment