[skip e2e] Reorder header files for query/ExprImpl.h (#13717)

Signed-off-by: yudong.cai <yudong.cai@zilliz.com>
pull/13779/head
Cai Yudong 2021-12-20 16:31:00 +08:00 committed by GitHub
parent 5d4c4f38c8
commit 92bee96b74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -10,12 +10,15 @@
// or implied. See the License for the specific language governing permissions and limitations under the License
#pragma once
#include "Expr.h"
#include <tuple>
#include <vector>
#include <boost/container/vector.hpp>
#include "Expr.h"
namespace milvus::query {
template <typename T>
struct TermExprImpl : TermExpr {
boost::container::vector<T> terms_;
@ -31,4 +34,5 @@ struct BinaryRangeExprImpl : BinaryRangeExpr {
T lower_value_;
T upper_value_;
};
} // namespace milvus::query