namespace fix

This commit is contained in:
Arthur Passos 2023-03-24 11:51:22 -03:00
parent d13aa3c029
commit ef4f860b62

View File

@ -3,7 +3,8 @@
#include <vector> #include <vector>
#include <arrow/util/logging.h> #include <arrow/util/logging.h>
using namespace DB; namespace DB
{
TEST(ChunkedArray, ChunkedArrayWithZeroChunksShouldNotAbort) TEST(ChunkedArray, ChunkedArrayWithZeroChunksShouldNotAbort)
{ {
@ -16,3 +17,5 @@ TEST(ArrowLog, FatalLogShouldThrow)
{ {
EXPECT_ANY_THROW(::arrow::util::ArrowLog(__FILE__, __LINE__, ::arrow::util::ArrowLogLevel::ARROW_FATAL)); EXPECT_ANY_THROW(::arrow::util::ArrowLog(__FILE__, __LINE__, ::arrow::util::ArrowLogLevel::ARROW_FATAL));
} }
}