Skip to content
Snippets Groups Projects
Commit 5061f463 authored by Johannes Goderbauer's avatar Johannes Goderbauer
Browse files

fix #1045257: removed wrong quotes so that several db statements work on mariaDB

# Conflicts:
#	entity/DuplicateScanner_entity/entityfields/testactiongroup/children/testduplicatescanner/onActionProcess.js
parent fb543763
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ var resultRay = [];
var campaignsQuery = "select CAMPAIGNID, CAMPAIGN.\"NAME\""
+ "from CAMPAIGN ";
var stepsQuery = "select CAMPAIGNSTEPID, CAMPAIGNSTEP.\"NAME\", CAMPAIGNSTEP.PREDECESSORSTEP_ID,"
var stepsQuery = "select CAMPAIGNSTEPID, CAMPAIGNSTEP.NAME, CAMPAIGNSTEP.PREDECESSORSTEP_ID,"
+ " CAMPAIGNSTEP.DESCRIPTION, CAMPAIGNSTEP.DATE_START, CAMPAIGNSTEP.DATE_END, CAMPAIGNID"
+ " from CAMPAIGN"
+ " join CAMPAIGNSTEP on CAMPAIGN.CAMPAIGNID = CAMPAIGNSTEP.CAMPAIGN_ID"
......
......@@ -175,7 +175,7 @@ import("JditoFilter_lib");
//filterName = "OrganisationDuplicates";
//targetEntity = "Organisation_entity";
//resultFieldsIdFieldName = "CONTACTID";
//queryPersonContactIds = "select CONTACTID, ORGANISATION.\"NAME\" from ORGANISATION"
//queryPersonContactIds = "select CONTACTID, ORGANISATION.NAME from ORGANISATION"
// + " join CONTACT on CONTACT.CONTACTID = ORGANISATION.ORGANISATIONID"
// + " where CONTACTID != '0'";
//tmpFieldsInFilterRay = ["CONTACTID", "NAME"];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment