Fix v2.9 release build issues (#1087)

* Fix include order inside `tests/unit/query_variable_start_planner.cpp` fails on an Rhel7 based OS
This commit is contained in:
Marko Budiselić 2023-07-20 16:15:27 +02:00 committed by GitHub
parent 2ec6b7f40b
commit 992e718a97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,6 +15,10 @@
#include "disk_test_utils.hpp"
#include "gtest/gtest.h"
// Has to be before the rest of includes because of TRUE redefinition. Antlr
// and krb5 in conflict on CentOS7.
#include "query_plan_common.hpp"
// Do NOT remove this comment because clang-format will reorder includes.
#include "query/frontend/semantic/symbol_generator.hpp"
#include "query/frontend/semantic/symbol_table.hpp"
#include "query/plan/planner.hpp"
@ -22,8 +26,6 @@
#include "storage/v2/inmemory/storage.hpp"
#include "utils/algorithm.hpp"
#include "query_plan_common.hpp"
#include "formatters.hpp"
using namespace memgraph::query::plan;