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
14cf065a
You need to sign in or sign up before continuing.
Verified
Commit
14cf065a
authored
1 year ago
by
Timm Fitschen
Browse files
Options
Downloads
Plain Diff
Merge branch 'f-filesystem-cleanup' into f-filesystem-core
parents
cf5531c5
6f713b92
No related branches found
No related tags found
1 merge request
!12
DRAFT: ENH: file system: core
Pipeline
#48952
failed
1 year ago
Stage: test
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
procedures/query/initEntity.sql
+3
-2
3 additions, 2 deletions
procedures/query/initEntity.sql
with
3 additions
and
2 deletions
procedures/query/initEntity.sql
+
3
−
2
View file @
14cf065a
...
...
@@ -80,9 +80,10 @@ initEntityLabel: BEGIN
IF
(
versioned
,
'` (id, _iversion) SELECT eids.internal_id, _get_head_iversion(eids.internal_id) '
,
'` (id) SELECT eids.internal_id '
),
'FROM entity_ids AS eids WHERE eids.id='
,
eid
,
';'
);
'FROM entity_ids AS eids WHERE eids.id=?;'
);
SET
@
query_param
=
eid
;
PREPARE
initEntityStmt
FROM
@
initEntityStmtStr
;
EXECUTE
initEntityStmt
;
EXECUTE
initEntityStmt
USING
@
query_param
;
DEALLOCATE
PREPARE
initEntityStmt
;
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