Re: C++ Segmentation Fault RecordBatchReader::ReadNext in CentOS only

2021-06-11 Thread Eduardo Ponce
RTTI symbol not found for class > > 'std::_Sp_counted_ptr_inplace > >> std::allocator, (__gnu_cxx::_Lock_policy)2>' > > >> warning: RTTI symbol not found for class > > >> 'std::_Sp_counted_ptr_inplace > std::allocator, > > >>

Re: C++ Segmentation Fault RecordBatchReader::ReadNext in CentOS only

2021-06-11 Thread Rares Vernica
ymbol not found for class > >> 'std::_Sp_counted_ptr_inplace std::allocator, > >> (__gnu_cxx::_Lock_policy)2>' > >> std::shared_ptr (count 7, weak 7) 0x7fae680022d0) at XIndex.cpp:284 > >> > >> The plug-in code (i.e., XIndex.cpp) is from here &

Re: C++ Segmentation Fault RecordBatchReader::ReadNext in CentOS only

2021-06-11 Thread Antoine Pitrou
ks, -- kou In "Re: C++ Segmentation Fault RecordBatchReader::ReadNext in CentOS only" on Wed, 9 Jun 2021 21:39:04 -0700, Rares Vernica wrote: I got the apache-arrow-4.0.1 source and compiled it with the Debug flag. No segmentation fault occurred. I then removed the Debug flag and still no

Re: C++ Segmentation Fault RecordBatchReader::ReadNext in CentOS only

2021-06-11 Thread Wes McKinney
with the way > > > the pre-built binaries are generated... > > > > The pre-built binaries are the official RPM packages, right? > > > > They are built with the default gcc-g++ package not g++ from > > devtoolset-3. This may be related. Could you try building > >

Re: C++ Segmentation Fault RecordBatchReader::ReadNext in CentOS only

2021-06-10 Thread Rares Vernica
-built binaries are generated... > > The pre-built binaries are the official RPM packages, right? > > They are built with the default gcc-g++ package not g++ from > devtoolset-3. This may be related. Could you try building > your program with the default gcc-g++ package? > > &

Re: C++ Segmentation Fault RecordBatchReader::ReadNext in CentOS only

2021-06-09 Thread Sutou Kouhei
fault gcc-g++ package not g++ from devtoolset-3. This may be related. Could you try building your program with the default gcc-g++ package? Thanks, -- kou In "Re: C++ Segmentation Fault RecordBatchReader::ReadNext in CentOS only" on Wed, 9 Jun 2021 21:39:04 -0700, Rares Vernica

Re: C++ Segmentation Fault RecordBatchReader::ReadNext in CentOS only

2021-06-09 Thread Rares Vernica
I got the apache-arrow-4.0.1 source and compiled it with the Debug flag. No segmentation fault occurred. I then removed the Debug flag and still no segmentation fault. I then tried the 4.0.0 source. Still no issues. Finally, I tried the 3.0.0 source and still no issues. Then I went back to the pre

Re: C++ Segmentation Fault RecordBatchReader::ReadNext in CentOS only

2021-06-08 Thread Sutou Kouhei
Hi, Could you try building Apache Arrow C++ with -DCMAKE_BUILD_TYPE=Debug and get backtrace again? It will show the source location on segmentation fault. Thanks, -- kou In "C++ Segmentation Fault RecordBatchReader::ReadNext in CentOS only" on Tue, 8 Jun 2021 12:01:27 -0700, Rares Vernica