Skip to content

Commit

Permalink
PARQUET-1798: Indeed it seems I cannot reference the generated folder…
Browse files Browse the repository at this point in the history
… in my test but thrift_internal is what I was looking for
  • Loading branch information
westonpace committed May 10, 2021
1 parent 4769e73 commit 49c3060
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cpp/src/parquet/arrow/arrow_schema_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,14 @@
#include "gmock/gmock.h"
#include "gtest/gtest.h"

#include "generated/parquet_types.h"

#include "parquet/arrow/reader.h"
#include "parquet/arrow/reader_internal.h"
#include "parquet/arrow/schema.h"
#include "parquet/file_reader.h"
#include "parquet/schema.h"
#include "parquet/schema_internal.h"
#include "parquet/test_util.h"
#include "parquet/thrift_internal.h"

#include "arrow/array.h"
#include "arrow/testing/gtest_util.h"
Expand All @@ -44,6 +43,7 @@ using ParquetType = parquet::Type;
using parquet::ConvertedType;
using parquet::LogicalType;
using parquet::Repetition;
using parquet::format::SchemaElement;
using parquet::internal::LevelInfo;
using parquet::schema::GroupNode;
using parquet::schema::NodePtr;
Expand Down Expand Up @@ -1179,7 +1179,7 @@ class TestConvertRoundTrip : public ::testing::Test {
protected:
std::shared_ptr<::arrow::Schema> arrow_schema_;
std::shared_ptr<SchemaDescriptor> parquet_schema_;
std::vector<format::SchemaElement> parquet_format_schema_;
std::vector<SchemaElement> parquet_format_schema_;
std::shared_ptr<::arrow::Schema> result_schema_;
};

Expand Down

0 comments on commit 49c3060

Please sign in to comment.