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

Method encrypted_columns

cpp/src/parquet/encryption/encryption.cc:152–161  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

150}
151
152FileEncryptionProperties::Builder* FileEncryptionProperties::Builder::encrypted_columns(
153 ColumnPathToEncryptionPropertiesMap encrypted_columns) {
154 if (encrypted_columns.size() == 0) return this;
155
156 if (encrypted_columns_.size() != 0)
157 throw ParquetException("Column properties already set");
158
159 encrypted_columns_ = std::move(encrypted_columns);
160 return this;
161}
162
163FileEncryptionProperties::Builder* FileEncryptionProperties::Builder::aad_prefix(
164 std::string aad_prefix) {

Callers 7

StartFileMethod · 0.80
TESTFunction · 0.80
TEST_FFunction · 0.80
mainFunction · 0.80

Calls 2

ParquetExceptionFunction · 0.85
sizeMethod · 0.45

Tested by 2

TESTFunction · 0.64
TEST_FFunction · 0.64