vogievetsky opened a new pull request #12037:
URL: https://github.com/apache/druid/pull/12037
Right now there is a bug that can lead to parts of queries typed into the
query view being lost:
To repro:
1. Run some query e.g:
```sql
SELECT
channel,
COUNT(*) AS "Count"
FROM wikipedia
GROUP BY 1
ORDER BY 2 DESC
```
2. Edit the query somehow, say change "Count" to "CountBlah"
3. Use the table actions to modify the query:

Notice the query edit of "Blah" is lost as the table action overwrites the
query completely.
Instead it should now provide an action (a function that takes a query and
manipulates it) instead so the action is simply applied to the edited query.
This PR also:
- Skips the java check in the helper script to make JDK11 dev easier
- Simplifies the format guesser
- Adds and improves react hooks
This PR has:
- [x] been self-reviewed.
- [x] been tested in a test Druid cluster.
--
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]