Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
sitingren authored May 6, 2024
1 parent 5418c63 commit 71527ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion driver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ func TestBasicQuery(t *testing.T) {
connDB := openConnection(t)
defer closeConnection(t, connDB)

rows, err := connDB.QueryContext(ctx, "SELECT * FROM v_monitor.cpu_usage LIMIT 5")
rows, err := connDB.QueryContext(ctx, "SELECT node_name, start_time, end_time, average_cpu_usage_percent FROM v_monitor.cpu_usage LIMIT 5")
assertNoErr(t, err)

defer rows.Close()
Expand Down

0 comments on commit 71527ff

Please sign in to comment.