- Timestamp:
- 03/15/12 17:51:45 (13 years ago)
- Location:
- branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/Aggregation
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/Aggregation/AggregateCommandBase.cs
r7267 r7625 74 74 public override void Execute() { 75 75 base.Execute(); 76 if (!ColumnGroup.Columns.Any()) return; 76 77 if (!ColumnGroup.Sorted) 77 78 throw new CommandExecutionException("ColumnGroup must be sorted to use aggregation commands.", this); -
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/Aggregation/DeleteRowsWithDuplicateKeyValuesCommand.cs
r7267 r7625 50 50 public override void Execute() { 51 51 base.Execute(); 52 if (!ColumnGroup.Columns.Any()) return; 52 53 if (!ColumnGroup.Sorted) 53 54 throw new CommandExecutionException("ColumnGroup must be sorted to delete rows with duplicate key.", this);
Note: See TracChangeset
for help on using the changeset viewer.