-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SNOW-692945: refactoring for resultset C wrapper #724
SNOW-692945: refactoring for resultset C wrapper #724
Conversation
52a9e80
to
0c5b00a
Compare
0c5b00a
to
a6b3a3e
Compare
a6b3a3e
to
3f2906d
Compare
@sfc-gh-dstempniak Please help to check what's the failure with |
@sfc-gh-ext-simba-hx One test failed on Macaarch64:
After rerun it succeeded:
|
@sfc-gh-dprzybysz |
Linker error during building libsnowflakeclient on Linux-aarch64: 2024-10-16 18:40:55 /mnt/host/deps-build/linux/Release/arrow/lib64/libarrow.a(type.cc.o): In function `arrow::Field::MergeOptions::ToString[abi:cxx11]() const':
2024-10-16 18:40:55 type.cc:(.text+0x4d74): undefined reference to `std::__cxx11::basic_stringstream<char, std::char_traits<char>, std::allocator<char> >::basic_stringstream()'
2024-10-16 18:40:55 /mnt/host/deps-build/linux/Release/arrow/lib64/libarrow.a(type.cc.o): In function `arrow::Field::ToString[abi:cxx11](bool) const':
2024-10-16 18:40:55 type.cc:(.text+0x5144): undefined reference to `std::__cxx11::basic_stringstream<char, std::char_traits<char>, std::allocator<char> >::basic_stringstream()'
2024-10-16 18:40:55 /mnt/host/deps-build/linux/Release/arrow/lib64/libarrow.a(type.cc.o): In function `arrow::TypeHolder::ToString[abi:cxx11](std::vector<arrow::TypeHolder, std::allocator<arrow::TypeHolder> > const&)':
2024-10-16 18:40:55 type.cc:(.text+0x541c): undefined reference to `std::__cxx11::basic_stringstream<char, std::char_traits<char>, std::allocator<char> >::basic_stringstream()'
2024-10-16 18:40:55 /mnt/host/deps-build/linux/Release/arrow/lib64/libarrow.a(type.cc.o): In function `arrow::ListType::ToString[abi:cxx11]() const':
2024-10-16 18:40:55 type.cc:(.text+0x56d4): undefined reference to `std::__cxx11::basic_stringstream<char, std::char_traits<char>, std::allocator<char> >::basic_stringstream()'
2024-10-16 18:40:55 /mnt/host/deps-build/linux/Release/arrow/lib64/libarrow.a(type.cc.o): In function `arrow::LargeListType::ToString[abi:cxx11]() const':
2024-10-16 18:40:55 type.cc:(.text+0x58f4): undefined reference to `std::__cxx11::basic_stringstream<char, std::char_traits<char>, std::allocator<char> >::basic_stringstream()'
2024-10-16 18:40:55 /mnt/host/deps-build/linux/Release/arrow/lib64/libarrow.a(type.cc.o):type.cc:(.text+0x5b14): more undefined references to `std::__cxx11::basic_stringstream<char, std::char_traits<char>, std::allocator<char> >::basic_stringstream()' follow Seems like a weird error, consider rebasing - maybe it will go away |
Preparing for adding multiple statements support, refactoring on the resultset C wrapper. Remove unnecessary code and make it more cleaner for adding new feature.