diff options
| author | Matthijs Bijman <matthijs@bijman.org> | 2017-02-27 15:19:15 +0100 |
|---|---|---|
| committer | Matthijs Bijman <matthijs@bijman.org> | 2017-02-27 15:19:15 +0100 |
| commit | 34aaaad34e72c921ea72d7b023e5a5270e76dd40 (patch) | |
| tree | 64c65d557c5323a23f4ce6f31b20da744d44badb /Simulator/include/database/Queries.h | |
| parent | cc5c5a7eac0ebcf97c283e1e0dd1674c855a261a (diff) | |
Add tasks that run on 1 machine
Diffstat (limited to 'Simulator/include/database/Queries.h')
| -rw-r--r-- | Simulator/include/database/Queries.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Simulator/include/database/Queries.h b/Simulator/include/database/Queries.h index 59133058..6f7f90ec 100644 --- a/Simulator/include/database/Queries.h +++ b/Simulator/include/database/Queries.h @@ -84,10 +84,10 @@ namespace Database /* Returns all columns of each task belonging to the given trace. - Returns: <int : id, int : start_tick, inn : total_flop_count, int : trace_id, int : task_dependency_id> + Returns: <int : id, int : start_tick, inn : total_flop_count, int : trace_id, int : task_dependency_id, std::string : parallelizability> Binds: <int : trace_id> */ - Query<int, int, int, int, int> GET_TASKS_OF_TRACE(std::string(R"query( + Query<int, int, int, int, int, std::string> GET_TASKS_OF_TRACE(std::string(R"query( SELECT * FROM tasks WHERE trace_id = $id; )query")); |
