| 397 | const string& user_name() { return user_name_; } |
| 398 | |
| 399 | int64 run_id() LOCKS_EXCLUDED(mu_) { |
| 400 | mutex_lock lock(mu_); |
| 401 | return run_id_; |
| 402 | } |
| 403 | |
| 404 | Status SetGraph(Sqlite* db, uint64 now, double computed_time, |
| 405 | std::unique_ptr<GraphDef> g) SQLITE_TRANSACTIONS_EXCLUDED(*db) |
nothing calls this directly
no test coverage detected