@@ -28,84 +28,83 @@ type DateHistogramAggregation struct {
28
28
factor * float64
29
29
}
30
30
31
- func NewDateHistogramAggregation () DateHistogramAggregation {
32
- a := DateHistogramAggregation {
31
+ func NewDateHistogramAggregation () * DateHistogramAggregation {
32
+ return & DateHistogramAggregation {
33
33
subAggregations : make (map [string ]Aggregation ),
34
34
}
35
- return a
36
35
}
37
36
38
- func (a DateHistogramAggregation ) Field (field string ) DateHistogramAggregation {
37
+ func (a * DateHistogramAggregation ) Field (field string ) * DateHistogramAggregation {
39
38
a .field = field
40
39
return a
41
40
}
42
41
43
- func (a DateHistogramAggregation ) Script (script * Script ) DateHistogramAggregation {
42
+ func (a * DateHistogramAggregation ) Script (script * Script ) * DateHistogramAggregation {
44
43
a .script = script
45
44
return a
46
45
}
47
46
48
- func (a DateHistogramAggregation ) SubAggregation (name string , subAggregation Aggregation ) DateHistogramAggregation {
47
+ func (a * DateHistogramAggregation ) SubAggregation (name string , subAggregation Aggregation ) * DateHistogramAggregation {
49
48
a .subAggregations [name ] = subAggregation
50
49
return a
51
50
}
52
51
53
52
// Meta sets the meta data to be included in the aggregation response.
54
- func (a DateHistogramAggregation ) Meta (metaData map [string ]interface {}) DateHistogramAggregation {
53
+ func (a * DateHistogramAggregation ) Meta (metaData map [string ]interface {}) * DateHistogramAggregation {
55
54
a .meta = metaData
56
55
return a
57
56
}
58
57
59
58
// Allowed values are: "year", "quarter", "month", "week", "day",
60
59
// "hour", "minute". It also supports time settings like "1.5h"
61
60
// (up to "w" for weeks).
62
- func (a DateHistogramAggregation ) Interval (interval string ) DateHistogramAggregation {
61
+ func (a * DateHistogramAggregation ) Interval (interval string ) * DateHistogramAggregation {
63
62
a .interval = interval
64
63
return a
65
64
}
66
65
67
66
// Order specifies the sort order. Valid values for order are:
68
67
// "_key", "_count", a sub-aggregation name, or a sub-aggregation name
69
68
// with a metric.
70
- func (a DateHistogramAggregation ) Order (order string , asc bool ) DateHistogramAggregation {
69
+ func (a * DateHistogramAggregation ) Order (order string , asc bool ) * DateHistogramAggregation {
71
70
a .order = order
72
71
a .orderAsc = asc
73
72
return a
74
73
}
75
74
76
- func (a DateHistogramAggregation ) OrderByCount (asc bool ) DateHistogramAggregation {
75
+ func (a * DateHistogramAggregation ) OrderByCount (asc bool ) * DateHistogramAggregation {
77
76
// "order" : { "_count" : "asc" }
78
77
a .order = "_count"
79
78
a .orderAsc = asc
80
79
return a
81
80
}
82
81
83
- func (a DateHistogramAggregation ) OrderByCountAsc () DateHistogramAggregation {
82
+ func (a * DateHistogramAggregation ) OrderByCountAsc () * DateHistogramAggregation {
84
83
return a .OrderByCount (true )
85
84
}
86
85
87
- func (a DateHistogramAggregation ) OrderByCountDesc () DateHistogramAggregation {
86
+ func (a * DateHistogramAggregation ) OrderByCountDesc () * DateHistogramAggregation {
88
87
return a .OrderByCount (false )
89
88
}
90
89
91
- func (a DateHistogramAggregation ) OrderByKey (asc bool ) DateHistogramAggregation {
90
+ func (a * DateHistogramAggregation ) OrderByKey (asc bool ) * DateHistogramAggregation {
92
91
// "order" : { "_key" : "asc" }
93
92
a .order = "_key"
94
93
a .orderAsc = asc
95
94
return a
96
95
}
97
96
98
- func (a DateHistogramAggregation ) OrderByKeyAsc () DateHistogramAggregation {
97
+ func (a * DateHistogramAggregation ) OrderByKeyAsc () * DateHistogramAggregation {
99
98
return a .OrderByKey (true )
100
99
}
101
100
102
- func (a DateHistogramAggregation ) OrderByKeyDesc () DateHistogramAggregation {
101
+ func (a * DateHistogramAggregation ) OrderByKeyDesc () * DateHistogramAggregation {
103
102
return a .OrderByKey (false )
104
103
}
105
104
106
105
// OrderByAggregation creates a bucket ordering strategy which sorts buckets
107
106
// based on a single-valued calc get.
108
- func (a DateHistogramAggregation ) OrderByAggregation (aggName string , asc bool ) DateHistogramAggregation {
107
+ func (a * DateHistogramAggregation ) OrderByAggregation (aggName string , asc bool ) * DateHistogramAggregation {
109
108
// {
110
109
// "aggs" : {
111
110
// "genders" : {
@@ -126,7 +125,7 @@ func (a DateHistogramAggregation) OrderByAggregation(aggName string, asc bool) D
126
125
127
126
// OrderByAggregationAndMetric creates a bucket ordering strategy which
128
127
// sorts buckets based on a multi-valued calc get.
129
- func (a DateHistogramAggregation ) OrderByAggregationAndMetric (aggName , metric string , asc bool ) DateHistogramAggregation {
128
+ func (a * DateHistogramAggregation ) OrderByAggregationAndMetric (aggName , metric string , asc bool ) * DateHistogramAggregation {
130
129
// {
131
130
// "aggs" : {
132
131
// "genders" : {
@@ -145,59 +144,59 @@ func (a DateHistogramAggregation) OrderByAggregationAndMetric(aggName, metric st
145
144
return a
146
145
}
147
146
148
- func (a DateHistogramAggregation ) MinDocCount (minDocCount int64 ) DateHistogramAggregation {
147
+ func (a * DateHistogramAggregation ) MinDocCount (minDocCount int64 ) * DateHistogramAggregation {
149
148
a .minDocCount = & minDocCount
150
149
return a
151
150
}
152
151
153
- func (a DateHistogramAggregation ) PreZone (preZone string ) DateHistogramAggregation {
152
+ func (a * DateHistogramAggregation ) PreZone (preZone string ) * DateHistogramAggregation {
154
153
a .preZone = preZone
155
154
return a
156
155
}
157
156
158
- func (a DateHistogramAggregation ) PostZone (postZone string ) DateHistogramAggregation {
157
+ func (a * DateHistogramAggregation ) PostZone (postZone string ) * DateHistogramAggregation {
159
158
a .postZone = postZone
160
159
return a
161
160
}
162
161
163
- func (a DateHistogramAggregation ) PreZoneAdjustLargeInterval (preZoneAdjustLargeInterval bool ) DateHistogramAggregation {
162
+ func (a * DateHistogramAggregation ) PreZoneAdjustLargeInterval (preZoneAdjustLargeInterval bool ) * DateHistogramAggregation {
164
163
a .preZoneAdjustLargeInterval = & preZoneAdjustLargeInterval
165
164
return a
166
165
}
167
166
168
- func (a DateHistogramAggregation ) PreOffset (preOffset int64 ) DateHistogramAggregation {
167
+ func (a * DateHistogramAggregation ) PreOffset (preOffset int64 ) * DateHistogramAggregation {
169
168
a .preOffset = preOffset
170
169
return a
171
170
}
172
171
173
- func (a DateHistogramAggregation ) PostOffset (postOffset int64 ) DateHistogramAggregation {
172
+ func (a * DateHistogramAggregation ) PostOffset (postOffset int64 ) * DateHistogramAggregation {
174
173
a .postOffset = postOffset
175
174
return a
176
175
}
177
176
178
- func (a DateHistogramAggregation ) Factor (factor float64 ) DateHistogramAggregation {
177
+ func (a * DateHistogramAggregation ) Factor (factor float64 ) * DateHistogramAggregation {
179
178
a .factor = & factor
180
179
return a
181
180
}
182
181
183
- func (a DateHistogramAggregation ) Format (format string ) DateHistogramAggregation {
182
+ func (a * DateHistogramAggregation ) Format (format string ) * DateHistogramAggregation {
184
183
a .format = format
185
184
return a
186
185
}
187
186
188
187
// ExtendedBoundsMin accepts int, int64, string, or time.Time values.
189
- func (a DateHistogramAggregation ) ExtendedBoundsMin (min interface {}) DateHistogramAggregation {
188
+ func (a * DateHistogramAggregation ) ExtendedBoundsMin (min interface {}) * DateHistogramAggregation {
190
189
a .extendedBoundsMin = min
191
190
return a
192
191
}
193
192
194
193
// ExtendedBoundsMax accepts int, int64, string, or time.Time values.
195
- func (a DateHistogramAggregation ) ExtendedBoundsMax (max interface {}) DateHistogramAggregation {
194
+ func (a * DateHistogramAggregation ) ExtendedBoundsMax (max interface {}) * DateHistogramAggregation {
196
195
a .extendedBoundsMax = max
197
196
return a
198
197
}
199
198
200
- func (a DateHistogramAggregation ) Source () (interface {}, error ) {
199
+ func (a * DateHistogramAggregation ) Source () (interface {}, error ) {
201
200
// Example:
202
201
// {
203
202
// "aggs" : {
0 commit comments