You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thrownewRDFQueryException("Cannot create RDFBooleanAndFilter because given \"leftFilter\" parameter is null.");
48
49
if(leftFilterisRDFExistsFilter)
@@ -51,6 +52,7 @@ public RDFBooleanAndFilter(RDFFilter leftFilter, RDFFilter rightFilter)
51
52
thrownewRDFQueryException("Cannot create RDFBooleanAndFilter because given \"rightFilter\" parameter is null.");
52
53
if(rightFilterisRDFExistsFilter)
53
54
thrownewRDFQueryException("Cannot create RDFBooleanAndFilter because given \"rightFilter\" parameter is of type RDFExistsFilter: this is not allowed.");
thrownewRDFQueryException("Cannot create RDFBooleanOrFilter because given \"leftFilter\" parameter is null.");
48
49
if(leftFilterisRDFExistsFilter)
@@ -51,7 +52,8 @@ public RDFBooleanOrFilter(RDFFilter leftFilter, RDFFilter rightFilter)
51
52
thrownewRDFQueryException("Cannot create RDFBooleanOrFilter because given \"rightFilter\" parameter is null.");
52
53
if(rightFilterisRDFExistsFilter)
53
54
thrownewRDFQueryException("Cannot create RDFBooleanOrFilter because given \"rightFilter\" parameter is of type RDFExistsFilter: this is not allowed.");
thrownewRDFQueryException(string.Format("Cannot apply GroupBy modifier because the working table does not contain the following columns needed for partitioning: {0}",string.Join(",",unavailablePartitionVariables.Distinct())));
122
124
123
125
//Every aggregator variable must be found in the working table as a column
thrownewRDFQueryException(string.Format("Cannot apply GroupBy modifier because the working table does not contain the following columns needed for aggregation: {0}",string.Join(",",unavailableAggregatorVariables.Distinct())));
128
130
129
131
//There should NOT be intersection between partition variables (GroupBy) and projection variables (Aggregators)
thrownewRDFQueryException(string.Format("Cannot apply GroupBy modifier because the following variables have been specified both for partitioning (in GroupBy) and projection (in Aggregator): {0}",string.Join(",",commonPartitionProjectionVariables.Distinct())));
0 commit comments