Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-server
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-server
Commits
c514ee23
Commit
c514ee23
authored
2 years ago
by
Henrik tom Wörden
Browse files
Options
Downloads
Patches
Plain Diff
FIX: use correct column name
parent
360c1c5d
No related branches found
No related tags found
1 merge request
!65
F permission checks
Pipeline
#26312
failed
2 years ago
Stage: info
Stage: test
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/org/caosdb/server/query/Query.java
+2
-2
2 additions, 2 deletions
src/main/java/org/caosdb/server/query/Query.java
with
2 additions
and
2 deletions
src/main/java/org/caosdb/server/query/Query.java
+
2
−
2
View file @
c514ee23
...
...
@@ -641,9 +641,9 @@ public class Query implements QueryInterface, ToElementable, TransactionInterfac
}
else
{
final
String
baseStatement
=
(
" SELECT tmp.id, entity_acl.acl, _iversion FROM "
+
" (SELECT results.
entity_
id AS id, entities.acl AS acl_id, _iversion FROM `"
+
" (SELECT results.id AS id, entities.acl AS acl_id, _iversion FROM `"
+
resultSetTableName
+
"` AS results JOIN entities ON results.
entity_
id=entities.id) AS tmp"
+
"` AS results JOIN entities ON results.id=entities.id) AS tmp"
+
" JOIN entity_acl ON entity_acl.id=tmp.acl_id"
);
if
(!
versioned
)
{
return
baseStatement
+
";"
;
...
...
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