mirror of https://github.com/apache/druid.git
fix the order in getNativeQueryLine (#17326)
This commit is contained in:
parent
fed36844f1
commit
12eed753f7
|
@ -84,8 +84,8 @@ public class RequestLogLine
|
|||
Arrays.asList(
|
||||
timestamp,
|
||||
remoteAddr,
|
||||
objectMapper.writeValueAsString(query),
|
||||
objectMapper.writeValueAsString(queryStats)
|
||||
objectMapper.writeValueAsString(queryStats),
|
||||
objectMapper.writeValueAsString(query)
|
||||
)
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue