Skip to content

Commit

Permalink
fix the order in getNativeQueryLine (apache#17326)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeyu-Chen-SFDC authored Dec 13, 2024
1 parent fed3684 commit 12eed75
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ public String getNativeQueryLine(ObjectMapper objectMapper) throws JsonProcessin
Arrays.asList(
timestamp,
remoteAddr,
objectMapper.writeValueAsString(query),
objectMapper.writeValueAsString(queryStats)
objectMapper.writeValueAsString(queryStats),
objectMapper.writeValueAsString(query)
)
);
}
Expand Down

0 comments on commit 12eed75

Please sign in to comment.