| 1062 | } |
| 1063 | |
| 1064 | std::shared_ptr<ColumnEncryptionProperties> column_encryption_properties( |
| 1065 | const std::string& path) const { |
| 1066 | if (file_encryption_properties_) { |
| 1067 | return file_encryption_properties_->column_encryption_properties(path); |
| 1068 | } else { |
| 1069 | return NULLPTR; |
| 1070 | } |
| 1071 | } |
| 1072 | |
| 1073 | // \brief Return the default column properties |
| 1074 | const ColumnProperties& default_column_properties() const { |
nothing calls this directly
no test coverage detected