fix the order in getNativeQueryLine (#17326)

This commit is contained in:
Zeyu-Chen-SFDC 2024-12-13 08:29:56 -08:00 committed by GitHub
parent fed36844f1
commit 12eed753f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -84,8 +84,8 @@ public class RequestLogLine
Arrays.asList(
timestamp,
remoteAddr,
objectMapper.writeValueAsString(query),
objectMapper.writeValueAsString(queryStats)
objectMapper.writeValueAsString(queryStats),
objectMapper.writeValueAsString(query)
)
);
}