Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
basic
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor 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
xrm
basic
Commits
d6713f3f
Commit
d6713f3f
authored
5 years ago
by
Johannes Goderbauer
Browse files
Options
Downloads
Patches
Plain Diff
fix #1051792: duplicate_entity used wrong join columns for ORGANISATION
parent
554832d2
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
entity/Duplicates_entity/recordcontainers/recordcontainer/contentProcess.js
+1
-1
1 addition, 1 deletion
...entity/recordcontainers/recordcontainer/contentProcess.js
with
1 addition
and
1 deletion
entity/Duplicates_entity/recordcontainers/recordcontainer/contentProcess.js
+
1
−
1
View file @
d6713f3f
...
...
@@ -48,7 +48,7 @@ else
duplicateInfosQuery
.
select
(
"
CLUSTERID, ORGANISATION.
\"
NAME
\"
"
)
.
from
(
"
DUPLICATECLUSTERS
"
)
.
join
(
"
CONTACT
"
,
"
CONTACT.CONTACTID = DUPLICATEID
"
)
.
join
(
"
ORGANISATION
"
,
"
ORGANISATION.ORGANISATIONID = CONTACT.
CONTACT
ID
"
)
.
join
(
"
ORGANISATION
"
,
"
ORGANISATION.ORGANISATIONID = CONTACT.
ORGANISATION_
ID
"
)
.
where
(
"
DUPLICATEID not in (select UNRELATEDDUPLICATES.UNRELATEDDUPLICATEID from UNRELATEDDUPLICATES)
"
)
.
andIfSet
(
"
DUPLICATECLUSTERS.CLUSTERID
"
,
vars
.
get
(
"
$local.idvalues
"
),
SqlBuilder
.
IN
())
.
orderBy
(
"
CLUSTERID
"
);
...
...
This diff is collapsed.
Click to expand it.
Johannes Goderbauer
@j.goderbauer
mentioned in commit
1132d707
·
5 years ago
mentioned in commit
1132d707
mentioned in commit 1132d70798b2261eeb0fbfcce682777d6581f4f6
Toggle commit list
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