MCPcopy Create free account
hub / github.com/apache/arrow / GetProperties

Method GetProperties

cpp/src/arrow/ipc/feather_test.cc:126–139  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

124 void SetUp() { TestFeatherBase::SetUp(); }
125
126 WriteProperties GetProperties() {
127 auto param = GetParam();
128
129 auto props = WriteProperties::Defaults();
130 props.version = param.version;
131
132 // Don't fail if the build doesn't have LZ4_FRAME or ZSTD enabled
133 if (util::Codec::IsAvailable(param.compression)) {
134 props.compression = param.compression;
135 } else {
136 props.compression = Compression::UNCOMPRESSED;
137 }
138 return props;
139 }
140};
141
142class TestFeatherRoundTrip : public ::testing::TestWithParam<ipc::test::MakeRecordBatch*>,

Callers 11

LoadPropertiesFromDSNFunction · 0.45
SQLConnectFunction · 0.45
RegisterDsnFunction · 0.45
DisplayConnectionWindowFunction · 0.45
TestConnectionFunction · 0.45
InitMethod · 0.45
InitMethod · 0.45
GetFileInfoMethod · 0.45
TestFromUriAbfsMethod · 0.45

Calls 1

DefaultsFunction · 0.50

Tested by

no test coverage detected