Skip to content

Commit 1cae66d

Browse files
committed
Use json.RawMessage instead of *json.RawMessage
This is a long-standing issue which we can remove now in v7. It is not necessary to use `*json.RawMessage` to access to `Source` of a search hit. We can simply use `json.RawMessage`, as it's a `[]byte`, so the `*json.RawMessage` was a `*[]byte`. This simplifies the code but is a breaking change, but that's okay for a major version. Close olivere#687
1 parent 72fc1a5 commit 1cae66d

22 files changed

+234
-234
lines changed

bulk_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ func TestBulk(t *testing.T) {
104104
t.Fatal("expected doc source to be != nil; got nil")
105105
}
106106
var updatedTweet tweet
107-
err = json.Unmarshal(*doc.Source, &updatedTweet)
107+
err = json.Unmarshal(doc.Source, &updatedTweet)
108108
if err != nil {
109109
t.Fatal(err)
110110
}
@@ -147,7 +147,7 @@ func TestBulk(t *testing.T) {
147147
if doc.Source == nil {
148148
t.Fatal("expected doc source to be != nil; got nil")
149149
}
150-
err = json.Unmarshal(*doc.Source, &updatedTweet)
150+
err = json.Unmarshal(doc.Source, &updatedTweet)
151151
if err != nil {
152152
t.Fatal(err)
153153
}
@@ -345,7 +345,7 @@ func TestBulkIndexDeleteUpdate(t *testing.T) {
345345
t.Fatalf("expected updated[0].GetResult.Found to be != %v; got %v", want, have)
346346
}
347347
var doc tweet
348-
if err := json.Unmarshal(*updated[0].GetResult.Source, &doc); err != nil {
348+
if err := json.Unmarshal(updated[0].GetResult.Source, &doc); err != nil {
349349
t.Fatalf("expected to unmarshal updated[0].GetResult.Source; got %v", err)
350350
}
351351
if want, have := 42, doc.Retweets; want != have {

cluster-test/cluster-test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ func (t *TestCase) search() {
337337

338338
// Deserialize hit.Source into a Tweet (could also be just a map[string]interface{}).
339339
var tweet Tweet
340-
err := json.Unmarshal(*hit.Source, &tweet)
340+
err := json.Unmarshal(hit.Source, &tweet)
341341
if err != nil {
342342
// Deserialization failed
343343
//failf("Deserialize failed: %v\n", err)

example_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ func Example() {
199199

200200
// Deserialize hit.Source into a Tweet (could also be just a map[string]interface{}).
201201
var t Tweet
202-
err := json.Unmarshal(*hit.Source, &t)
202+
err := json.Unmarshal(hit.Source, &t)
203203
if err != nil {
204204
// Deserialization failed
205205
}
@@ -373,7 +373,7 @@ func ExampleSearchService() {
373373

374374
// Deserialize hit.Source into a Tweet (could also be just a map[string]interface{}).
375375
var t Tweet
376-
err := json.Unmarshal(*hit.Source, &t)
376+
err := json.Unmarshal(hit.Source, &t)
377377
if err != nil {
378378
// Deserialization failed
379379
}
@@ -473,7 +473,7 @@ func ExampleSearchResult() {
473473

474474
// Deserialize hit.Source into a Tweet (could also be just a map[string]interface{}).
475475
var t Tweet
476-
err := json.Unmarshal(*hit.Source, &t)
476+
err := json.Unmarshal(hit.Source, &t)
477477
if err != nil {
478478
// Deserialization failed
479479
}

geo_point_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ func TestGeoPointIndexAndSearch(t *testing.T) {
103103
t.Fatalf("TotalHits: want %d, have %d", want, have)
104104
}
105105
var doc City
106-
if err := json.Unmarshal(*res.Hits.Hits[0].Source, &doc); err != nil {
106+
if err := json.Unmarshal(res.Hits.Hits[0].Source, &doc); err != nil {
107107
t.Fatal(err)
108108
}
109109
if want, have := munich.Name, doc.Name; want != have {

get.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ type GetResult struct {
255255
Routing string `json:"_routing"` // routing meta field
256256
Parent string `json:"_parent"` // parent meta field
257257
Version *int64 `json:"_version"` // version number, when Version is set to true in SearchService
258-
Source *json.RawMessage `json:"_source,omitempty"`
258+
Source json.RawMessage `json:"_source,omitempty"`
259259
Found bool `json:"found,omitempty"`
260260
Fields map[string]interface{} `json:"fields,omitempty"`
261261
//Error string `json:"error,omitempty"` // used only in MultiGet

get_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ func TestGetWithSourceFiltering(t *testing.T) {
7878
t.Errorf("expected Source != nil; got %v", res.Source)
7979
}
8080
var tw tweet
81-
err = json.Unmarshal(*res.Source, &tw)
81+
err = json.Unmarshal(res.Source, &tw)
8282
if err != nil {
8383
t.Fatal(err)
8484
}

highlight_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ func TestHighlightWithTermQuery(t *testing.T) {
192192

193193
hit := searchResult.Hits.Hits[0]
194194
var tw tweet
195-
if err := json.Unmarshal(*hit.Source, &tw); err != nil {
195+
if err := json.Unmarshal(hit.Source, &tw); err != nil {
196196
t.Fatal(err)
197197
}
198198
if hit.Highlight == nil || len(hit.Highlight) == 0 {

index_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ func TestIndexLifecycle(t *testing.T) {
6060

6161
// Decode the Source field
6262
var tweetGot tweet
63-
err = json.Unmarshal(*getResult.Source, &tweetGot)
63+
err = json.Unmarshal(getResult.Source, &tweetGot)
6464
if err != nil {
6565
t.Fatal(err)
6666
}
@@ -143,7 +143,7 @@ func TestIndexLifecycleWithAutomaticIDGeneration(t *testing.T) {
143143

144144
// Decode the Source field
145145
var tweetGot tweet
146-
err = json.Unmarshal(*getResult.Source, &tweetGot)
146+
err = json.Unmarshal(getResult.Source, &tweetGot)
147147
if err != nil {
148148
t.Fatal(err)
149149
}

mget_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ func TestMultiGet(t *testing.T) {
7373
t.Errorf("expected Source != nil; got %v", item.Source)
7474
}
7575
var doc tweet
76-
if err := json.Unmarshal(*item.Source, &doc); err != nil {
76+
if err := json.Unmarshal(item.Source, &doc); err != nil {
7777
t.Fatalf("expected to unmarshal item Source; got %v", err)
7878
}
7979
if doc.Message != tweet1.Message {
@@ -87,7 +87,7 @@ func TestMultiGet(t *testing.T) {
8787
if item.Source == nil {
8888
t.Errorf("expected Source != nil; got %v", item.Source)
8989
}
90-
if err := json.Unmarshal(*item.Source, &doc); err != nil {
90+
if err := json.Unmarshal(item.Source, &doc); err != nil {
9191
t.Fatalf("expected to unmarshal item Source; got %v", err)
9292
}
9393
if doc.Message != tweet3.Message {

msearch_test.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ func TestMultiSearch(t *testing.T) {
9090
t.Errorf("expected Hits.Hit.Index = %q; got %q", testIndexName, hit.Index)
9191
}
9292
item := make(map[string]interface{})
93-
err := json.Unmarshal(*hit.Source, &item)
93+
err := json.Unmarshal(hit.Source, &item)
9494
if err != nil {
9595
t.Fatal(err)
9696
}
@@ -111,7 +111,7 @@ func TestMultiSearch(t *testing.T) {
111111
t.Errorf("expected Hits.Hit.Index = %q; got %q", testIndexName, hit.Index)
112112
}
113113
item := make(map[string]interface{})
114-
err := json.Unmarshal(*hit.Source, &item)
114+
err := json.Unmarshal(hit.Source, &item)
115115
if err != nil {
116116
t.Fatal(err)
117117
}
@@ -193,7 +193,7 @@ func TestMultiSearchWithStrings(t *testing.T) {
193193
t.Errorf("expected Hits.Hit.Index = %q; got %q", testIndexName, hit.Index)
194194
}
195195
item := make(map[string]interface{})
196-
err := json.Unmarshal(*hit.Source, &item)
196+
err := json.Unmarshal(hit.Source, &item)
197197
if err != nil {
198198
t.Fatal(err)
199199
}
@@ -214,7 +214,7 @@ func TestMultiSearchWithStrings(t *testing.T) {
214214
t.Errorf("expected Hits.Hit.Index = %q; got %q", testIndexName, hit.Index)
215215
}
216216
item := make(map[string]interface{})
217-
err := json.Unmarshal(*hit.Source, &item)
217+
err := json.Unmarshal(hit.Source, &item)
218218
if err != nil {
219219
t.Fatal(err)
220220
}
@@ -295,7 +295,7 @@ func TestMultiSearchWithOneRequest(t *testing.T) {
295295
t.Errorf("expected Hits.Hit.Index = %q; got %q", testIndexName, hit.Index)
296296
}
297297
item := make(map[string]interface{})
298-
err := json.Unmarshal(*hit.Source, &item)
298+
err := json.Unmarshal(hit.Source, &item)
299299
if err != nil {
300300
t.Fatal(err)
301301
}

percolate_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func TestPercolate(t *testing.T) {
5858
if hit.Index != testQueryIndex {
5959
t.Fatalf("expected SearchResult.Hits.Hit.Index = %q; got %q", testQueryIndex, hit.Index)
6060
}
61-
got := string(*hit.Source)
61+
got := string(hit.Source)
6262
expected := `{"query":{"match":{"message":"bonsai tree"}}}`
6363
if got != expected {
6464
t.Fatalf("expected\n%s\n,got:\n%s", expected, got)

recipes/aws-mapping-v4/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ func main() {
168168
log.Fatal(err)
169169
}
170170
var tweet Tweet
171-
if err = json.Unmarshal(*doc.Source, &tweet); err != nil {
171+
if err = json.Unmarshal(doc.Source, &tweet); err != nil {
172172
log.Fatal(err)
173173
}
174174
fmt.Printf("%s at %s: %s (%d retweets)\n",

recipes/mapping/mapping.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ func main() {
135135
log.Fatal(err)
136136
}
137137
var tweet Tweet
138-
if err = json.Unmarshal(*doc.Source, &tweet); err != nil {
138+
if err = json.Unmarshal(doc.Source, &tweet); err != nil {
139139
log.Fatal(err)
140140
}
141141
fmt.Printf("%s at %s: %s (%d retweets)\n",

recipes/suggesters/completion/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ func main() {
170170

171171
// The document's source is in opt.Source
172172
var city City
173-
if err = json.Unmarshal(*opt.Source, &city); err != nil {
173+
if err = json.Unmarshal(opt.Source, &city); err != nil {
174174
log.Fatal(err)
175175
}
176176
_ = city

scroll_test.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ func TestScroll(t *testing.T) {
7575
t.Fatalf("expected SearchResult.Hits.Hit.Index = %q; got %q", testIndexName, hit.Index)
7676
}
7777
item := make(map[string]interface{})
78-
err := json.Unmarshal(*hit.Source, &item)
78+
err := json.Unmarshal(hit.Source, &item)
7979
if err != nil {
8080
t.Fatal(err)
8181
}
@@ -176,7 +176,7 @@ func TestScrollWithQueryAndSort(t *testing.T) {
176176
t.Fatalf("expected SearchResult.Hits.Hit.Index = %q; got %q", testIndexName, hit.Index)
177177
}
178178
item := make(map[string]interface{})
179-
err := json.Unmarshal(*hit.Source, &item)
179+
err := json.Unmarshal(hit.Source, &item)
180180
if err != nil {
181181
t.Fatal(err)
182182
}
@@ -296,7 +296,7 @@ func TestScrollWithBody(t *testing.T) {
296296
t.Fatalf("#%d: expected SearchResult.Hits.Hit.Index = %q; got %q", i, testIndexName, hit.Index)
297297
}
298298
item := make(map[string]interface{})
299-
err := json.Unmarshal(*hit.Source, &item)
299+
err := json.Unmarshal(hit.Source, &item)
300300
if err != nil {
301301
t.Fatalf("#%d: %v", i, err)
302302
}
@@ -359,7 +359,7 @@ func TestScrollWithSlice(t *testing.T) {
359359
t.Fatalf("expected SearchResult.Hits.Hit.Index = %q; got %q", testIndexName, hit.Index)
360360
}
361361
item := make(map[string]interface{})
362-
err := json.Unmarshal(*hit.Source, &item)
362+
err := json.Unmarshal(hit.Source, &item)
363363
if err != nil {
364364
t.Fatal(err)
365365
}
@@ -495,7 +495,7 @@ func TestScrollWithFilterPath(t *testing.T) {
495495
t.Fatalf("expected SearchResult.Hits.Hit.Index = %q; got %q", testIndexName, hit.Index)
496496
}
497497
item := make(map[string]interface{})
498-
err := json.Unmarshal(*hit.Source, &item)
498+
err := json.Unmarshal(hit.Source, &item)
499499
if err != nil {
500500
t.Fatal(err)
501501
}

search.go

+12-12
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ func (r *SearchResult) Each(typ reflect.Type) []interface{} {
504504
slice = append(slice, v.Interface())
505505
continue
506506
}
507-
if err := json.Unmarshal(*hit.Source, v.Addr().Interface()); err == nil {
507+
if err := json.Unmarshal(hit.Source, v.Addr().Interface()); err == nil {
508508
slice = append(slice, v.Interface())
509509
}
510510
}
@@ -543,7 +543,7 @@ type SearchHit struct {
543543
Version *int64 `json:"_version,omitempty"` // version number, when Version is set to true in SearchService
544544
Sort []interface{} `json:"sort,omitempty"` // sort information
545545
Highlight SearchHitHighlight `json:"highlight,omitempty"` // highlighter information
546-
Source *json.RawMessage `json:"_source,omitempty"` // stored document source
546+
Source json.RawMessage `json:"_source,omitempty"` // stored document source
547547
Fields map[string]interface{} `json:"fields,omitempty"` // returned (stored) fields
548548
Explanation *SearchExplanation `json:"_explanation,omitempty"` // explains how the score was computed
549549
MatchedQueries []string `json:"matched_queries,omitempty"` // matched queries
@@ -587,16 +587,16 @@ type SearchSuggestion struct {
587587
// SearchSuggestionOption is an option of a SearchSuggestion.
588588
// See https://www.elastic.co/guide/en/elasticsearch/reference/7.0/search-suggesters.html.
589589
type SearchSuggestionOption struct {
590-
Text string `json:"text"`
591-
Index string `json:"_index"`
592-
Type string `json:"_type"`
593-
Id string `json:"_id"`
594-
Score float64 `json:"score"` // term and phrase suggesters uses "score" as of 6.2.4
595-
ScoreUnderscore float64 `json:"_score"` // completion and context suggesters uses "_score" as of 6.2.4
596-
Highlighted string `json:"highlighted"`
597-
CollateMatch bool `json:"collate_match"`
598-
Freq int `json:"freq"` // from TermSuggestion.Option in Java API
599-
Source *json.RawMessage `json:"_source"`
590+
Text string `json:"text"`
591+
Index string `json:"_index"`
592+
Type string `json:"_type"`
593+
Id string `json:"_id"`
594+
Score float64 `json:"score"` // term and phrase suggesters uses "score" as of 6.2.4
595+
ScoreUnderscore float64 `json:"_score"` // completion and context suggesters uses "_score" as of 6.2.4
596+
Highlighted string `json:"highlighted"`
597+
CollateMatch bool `json:"collate_match"`
598+
Freq int `json:"freq"` // from TermSuggestion.Option in Java API
599+
Source json.RawMessage `json:"_source"`
600600
}
601601

602602
// SearchProfile is a list of shard profiling data collected during

0 commit comments

Comments
 (0)