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

Method column_keys

cpp/src/parquet/encryption/encryption.cc:80–89  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

78}
79
80FileDecryptionProperties::Builder* FileDecryptionProperties::Builder::column_keys(
81 ColumnPathToDecryptionPropertiesMap column_decryption_properties) {
82 if (column_decryption_properties.size() == 0) return this;
83
84 if (column_decryption_properties_.size() != 0)
85 throw ParquetException("Column properties already set");
86
87 column_decryption_properties_ = std::move(column_decryption_properties);
88 return this;
89}
90
91FileDecryptionProperties::Builder* FileDecryptionProperties::Builder::footer_key(
92 SecureString footer_key) {

Callers 3

TESTFunction · 0.80

Calls 2

ParquetExceptionFunction · 0.85
sizeMethod · 0.45

Tested by 2

TESTFunction · 0.64