inputRelation2.failOnEmpty();
if (inputRelation1.getCardinality() != inputRelation2.getCardinality()) {
throw new IllegalArgumentException("Cannot union on relations of different cardinality");
}
dummyRelation = new EmptyRelation();
resultRelation = caf.getSpaceForNewRelation(inputRelation1.getCardinality());
labelResult(resultRelation, "Bag difference of " + inputRelation1.toString(caf) + " and " + inputRelation2.toString(caf));
boolean skipFirstComma = true;
StringBuilder sbWklejka1 = new StringBuilder();