summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/olivere/elastic/search_queries_raw_string.go
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2018-04-16 05:37:14 -0700
committerJoram Wilander <jwawilander@gmail.com>2018-04-16 08:37:14 -0400
commit6e2cb00008cbf09e556b00f87603797fcaa47e09 (patch)
tree3c0eb55ff4226a3f024aad373140d1fb860a6404 /vendor/github.com/olivere/elastic/search_queries_raw_string.go
parentbf24f51c4e1cc6286885460672f7f449e8c6f5ef (diff)
downloadchat-6e2cb00008cbf09e556b00f87603797fcaa47e09.tar.gz
chat-6e2cb00008cbf09e556b00f87603797fcaa47e09.tar.bz2
chat-6e2cb00008cbf09e556b00f87603797fcaa47e09.zip
Depenancy upgrades and movign to dep. (#8630)
Diffstat (limited to 'vendor/github.com/olivere/elastic/search_queries_raw_string.go')
-rw-r--r--vendor/github.com/olivere/elastic/search_queries_raw_string.go26
1 files changed, 0 insertions, 26 deletions
diff --git a/vendor/github.com/olivere/elastic/search_queries_raw_string.go b/vendor/github.com/olivere/elastic/search_queries_raw_string.go
deleted file mode 100644
index 3f9685c41..000000000
--- a/vendor/github.com/olivere/elastic/search_queries_raw_string.go
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright 2012-present Oliver Eilhard, John Stanford. All rights reserved.
-// Use of this source code is governed by a MIT-license.
-// See http://olivere.mit-license.org/license.txt for details.
-
-package elastic
-
-import "encoding/json"
-
-// RawStringQuery can be used to treat a string representation of an ES query
-// as a Query. Example usage:
-// q := RawStringQuery("{\"match_all\":{}}")
-// db.Search().Query(q).From(1).Size(100).Do()
-type RawStringQuery string
-
-// NewRawStringQuery ininitializes a new RawStringQuery.
-// It is the same as RawStringQuery(q).
-func NewRawStringQuery(q string) RawStringQuery {
- return RawStringQuery(q)
-}
-
-// Source returns the JSON encoded body
-func (q RawStringQuery) Source() (interface{}, error) {
- var f interface{}
- err := json.Unmarshal([]byte(q), &f)
- return f, err
-}