Skip to content

Commit

Permalink
[cuebot] Add LluTime field in WhiteboardDaoJdbc.FRAME_MAPPER. (#1146)
Browse files Browse the repository at this point in the history
  • Loading branch information
prOOrc committed May 10, 2022
1 parent ab727e5 commit 187fe56
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1424,6 +1424,13 @@ public Frame mapRow(ResultSet rs, int rowNum) throws SQLException {
else {
builder.setStopTime(0);
}
java.sql.Timestamp ts_llu = rs.getTimestamp("ts_llu");
if (ts_llu!= null) {
builder.setLluTime((int) (ts_llu.getTime() / 1000));
}
else {
builder.setLluTime(0);
}

builder.setTotalCoreTime(rs.getInt("int_total_past_core_time"));
builder.setTotalGpuTime(rs.getInt("int_total_past_gpu_time"));
Expand Down

0 comments on commit 187fe56

Please sign in to comment.