summaryrefslogtreecommitdiff
path: root/Simulator/include/database
diff options
context:
space:
mode:
authorMatthijs Bijman <matthijs@bijman.org>2017-02-27 15:19:15 +0100
committerMatthijs Bijman <matthijs@bijman.org>2017-02-27 15:19:15 +0100
commit34aaaad34e72c921ea72d7b023e5a5270e76dd40 (patch)
tree64c65d557c5323a23f4ce6f31b20da744d44badb /Simulator/include/database
parentcc5c5a7eac0ebcf97c283e1e0dd1674c855a261a (diff)
Add tasks that run on 1 machine
Diffstat (limited to 'Simulator/include/database')
-rw-r--r--Simulator/include/database/Queries.h4
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"));