mirror of https://github.com/milvus-io/milvus.git
[skip e2e] Reorder header files for query/ExprImpl.h (#13717)
Signed-off-by: yudong.cai <yudong.cai@zilliz.com>pull/13779/head
parent
5d4c4f38c8
commit
92bee96b74
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue