Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
TAM
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIP
Labrador
TAM
Commits
d26f0892
Commit
d26f0892
authored
Jun 23, 2018
by
Max van Deursen
Committed by
Max Pigmans
Jun 30, 2018
Browse files
Options
Downloads
Patches
Plain Diff
Change left join to join so null Prerequisites does not break
parent
fcc95491
No related branches found
No related tags found
2 merge requests
!126
CHange left join to join so null Prerequisites does not break
,
!129
Dev to Master
Pipeline
#75141
passed
Jun 30, 2018
Stage: test
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/nl/tudelft/ewi/tam/repositories/UserRepository.java
+1
-1
1 addition, 1 deletion
.../java/nl/tudelft/ewi/tam/repositories/UserRepository.java
with
1 addition
and
1 deletion
src/main/java/nl/tudelft/ewi/tam/repositories/UserRepository.java
+
1
−
1
View file @
d26f0892
...
...
@@ -136,7 +136,7 @@ public class UserRepository {
+
"LEFT JOIN User_Role UR ON U.netid = UR.netid "
+
"LEFT JOIN Role R ON UR.role_id = R.id "
+
"WHERE name = \"STUDENT\") U "
+
"
LEFT
JOIN Prerequisites P ON U.netid = P.netid"
;
+
"JOIN Prerequisites P ON U.netid = P.netid"
;
/**
* Retrieve a {@link User} instance with the given netid.
...
...
...
...
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
sign in
to comment