From e703ee684afcd23be8394e640e4c023fbf9eb9ef Mon Sep 17 00:00:00 2001 From: mdesalvo Date: Sat, 11 May 2019 17:18:10 +0200 Subject: [PATCH] Better comment --- .../Query/Mirella/Algebra/Aggregators/RDFPartitionAggregator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RDFSharp/Query/Mirella/Algebra/Aggregators/RDFPartitionAggregator.cs b/RDFSharp/Query/Mirella/Algebra/Aggregators/RDFPartitionAggregator.cs index 6e78622a..ca6ae174 100644 --- a/RDFSharp/Query/Mirella/Algebra/Aggregators/RDFPartitionAggregator.cs +++ b/RDFSharp/Query/Mirella/Algebra/Aggregators/RDFPartitionAggregator.cs @@ -52,7 +52,7 @@ internal override void ExecutePartition(String partitionKey, DataRow tableRow) { //Get aggregator value String aggregatorValue = this.AggregatorContext.GetPartitionKeyExecutionResult(partitionKey, String.Empty) ?? String.Empty; - //Update aggregator context (sample) + //Update aggregator context (partition) if (String.IsNullOrEmpty(aggregatorValue)) this.AggregatorContext.UpdatePartitionKeyExecutionResult(partitionKey, partitionKey); }