Skip to content
Snippets Groups Projects
Commit d26f0892 authored by Max van Deursen's avatar Max van Deursen Committed by Max Pigmans
Browse files

Change left join to join so null Prerequisites does not break

parent fcc95491
No related branches found
No related tags found
2 merge requests!126CHange left join to join so null Prerequisites does not break,!129Dev to Master
Pipeline #75141 passed
......@@ -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.
......
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment