Make an object with dummy data.
| 137 | |
| 138 | /// Make an object with dummy data. |
| 139 | Status MakeObject(const std::string& name, int size) { |
| 140 | Aws::S3::Model::PutObjectRequest req; |
| 141 | req.SetBucket(ToAwsString(bucket_)); |
| 142 | req.SetKey(ToAwsString(name)); |
| 143 | req.SetBody(std::make_shared<std::stringstream>(std::string(size, 'a'))); |
| 144 | return OutcomeToStatus("PutObject", client_->PutObject(req)); |
| 145 | } |
| 146 | |
| 147 | /// Make an object with Parquet data. |
| 148 | /// Appends integer columns to the beginning (to act as indices). |
nothing calls this directly
no test coverage detected