| 1030 | } |
| 1031 | |
| 1032 | std::shared_ptr<ColumnEncryptionProperties> column_encryption_properties( |
| 1033 | const std::string& path) const { |
| 1034 | if (file_encryption_properties_) { |
| 1035 | return file_encryption_properties_->column_encryption_properties(path); |
| 1036 | } else { |
| 1037 | return NULLPTR; |
| 1038 | } |
| 1039 | } |
| 1040 | |
| 1041 | // \brief Return the default column properties |
| 1042 | const ColumnProperties& default_column_properties() const { |
nothing calls this directly
no test coverage detected