@@ -497,6 +497,15 @@ func FTAggregateQuery(query string, options *FTAggregateOptions) AggregateQuery
497
497
if options .Verbatim {
498
498
queryArgs = append (queryArgs , "VERBATIM" )
499
499
}
500
+
501
+ if options .Scorer != "" {
502
+ queryArgs = append (queryArgs , "SCORER" , options .Scorer )
503
+ }
504
+
505
+ if options .AddScores {
506
+ queryArgs = append (queryArgs , "ADDSCORES" )
507
+ }
508
+
500
509
if options .LoadAll && options .Load != nil {
501
510
panic ("FT.AGGREGATE: LOADALL and LOAD are mutually exclusive" )
502
511
}
@@ -524,14 +533,6 @@ func FTAggregateQuery(query string, options *FTAggregateOptions) AggregateQuery
524
533
}
525
534
}
526
535
527
- if options .Scorer != "" {
528
- queryArgs = append (queryArgs , "SCORER" , options .Scorer )
529
- }
530
-
531
- if options .AddScores {
532
- queryArgs = append (queryArgs , "ADDSCORES" )
533
- }
534
-
535
536
if options .GroupBy != nil {
536
537
for _ , groupBy := range options .GroupBy {
537
538
queryArgs = append (queryArgs , "GROUPBY" , len (groupBy .Fields ))
@@ -701,6 +702,12 @@ func (c cmdable) FTAggregateWithArgs(ctx context.Context, index string, query st
701
702
if options .Verbatim {
702
703
args = append (args , "VERBATIM" )
703
704
}
705
+ if options .Scorer != "" {
706
+ args = append (args , "SCORER" , options .Scorer )
707
+ }
708
+ if options .AddScores {
709
+ args = append (args , "ADDSCORES" )
710
+ }
704
711
if options .LoadAll && options .Load != nil {
705
712
panic ("FT.AGGREGATE: LOADALL and LOAD are mutually exclusive" )
706
713
}
@@ -725,12 +732,6 @@ func (c cmdable) FTAggregateWithArgs(ctx context.Context, index string, query st
725
732
args = append (args , "AS" , apply .As )
726
733
}
727
734
}
728
- if options .Scorer != "" {
729
- args = append (args , "SCORER" , options .Scorer )
730
- }
731
- if options .AddScores {
732
- args = append (args , "ADDSCORES" )
733
- }
734
735
if options .GroupBy != nil {
735
736
for _ , groupBy := range options .GroupBy {
736
737
args = append (args , "GROUPBY" , len (groupBy .Fields ))
0 commit comments