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 apply GroupBy modifier because the working table does not contain the following columns needed for partitioning: {string.Join(",",unavailablePartitionVariables.Distinct())}");
124
125
125
126
//Every aggregator variable must be found in the working table as a column
thrownewRDFQueryException($"Cannot apply GroupBy modifier because the working table does not contain the following columns needed for aggregation: {string.Join(",",unavailableAggregatorVariables.Distinct())}");
130
132
131
133
//There should NOT be intersection between partition variables (GroupBy) and projection variables (Aggregators)
thrownewRDFQueryException($"Cannot apply GroupBy modifier because the following variables have been specified both for partitioning (in GroupBy) and projection (in Aggregator): {string.Join(",",commonPartitionProjectionVariables.Distinct())}");
0 commit comments