jayeshchoudhary opened a new pull request, #10770:
URL: https://github.com/apache/pinot/pull/10770
This PR is `ui` `bugfix`
### Issue
- In the SQL editor If there were multiple query options, then queryOptions
passed to payload were incorrect.
- Backend expects `;` as a separator between multiple queryOptions
### Fix
- Separate query options by `;`
<hr>
Payload before
```json
{
"sql": "select * from baseballStats limit 10",
"trace": true,
"queryOptions": "timeoutMs=1000useMultistageEngine=true"
}
```
Payload After
```json
{
"sql": "select * from baseballStats limit 10",
"trace": true,
"queryOptions": "timeoutMs=1000;useMultistageEngine=true"
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]