| 71 | } // namespace |
| 72 | |
| 73 | Status BigQueryTableAccessor::New( |
| 74 | const string& project_id, const string& dataset_id, const string& table_id, |
| 75 | int64 timestamp_millis, int64 row_buffer_size, const string& end_point, |
| 76 | const std::vector<string>& columns, const BigQueryTablePartition& partition, |
| 77 | std::unique_ptr<BigQueryTableAccessor>* accessor) { |
| 78 | return New(project_id, dataset_id, table_id, timestamp_millis, |
| 79 | row_buffer_size, end_point, columns, partition, nullptr, nullptr, |
| 80 | accessor); |
| 81 | } |
| 82 | |
| 83 | Status BigQueryTableAccessor::New( |
| 84 | const string& project_id, const string& dataset_id, const string& table_id, |
nothing calls this directly
no test coverage detected