summaryrefslogtreecommitdiff
path: root/Simulator/include/database/Queries.h
diff options
context:
space:
mode:
Diffstat (limited to 'Simulator/include/database/Queries.h')
-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"));