Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
shuke987 committed Jan 9, 2025
1 parent c9f6283 commit a735c8a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ class Suite implements GroovyInterceptable {
// get all column names as list
List<String> columnNames = new ArrayList<>()
for (int i = 0; i < meta.getColumnCount(); i++) {
columnNames.add(meta.getColumnName(i + 1))
columnNames.add(meta.getColumnLabel(i + 1))
}

// add result to res map list, each row is a map with key is column name
Expand Down

0 comments on commit a735c8a

Please sign in to comment.