1. 08 7月, 2020 1 次提交
  2. 02 7月, 2020 1 次提交
  3. 01 7月, 2020 1 次提交
  4. 25 6月, 2020 2 次提交
  5. 24 6月, 2020 1 次提交
  6. 23 6月, 2020 2 次提交
  7. 22 6月, 2020 1 次提交
  8. 19 6月, 2020 4 次提交
  9. 18 6月, 2020 6 次提交
  10. 16 6月, 2020 1 次提交
  11. 15 6月, 2020 1 次提交
  12. 13 6月, 2020 2 次提交
  13. 12 6月, 2020 2 次提交
  14. 10 6月, 2020 2 次提交
  15. 09 6月, 2020 1 次提交
    • M
      refactor(console): migrate code editor to React + overhaul query result experience (#376) · 68d62dd5
      Méril 提交于
      * refactor(console): migrate code editor to React + overhaul query result experience
      
      Bug fixing:
      
      - Scroll bar on Schema view
      - Animation leaving stale tables for the Schema view
      - Fix error handling on failing requests (and cancelled)
      
      Improvements:
      
      - Use toast notifications to give feedback to the user on query responses
      - Improve wording of error messages + handle more scenarios
      - Create the foundation of @questdb/client + support DDL, DQL and ERROR types
      - Add splitter between Schema and Editor
      - Move loader bar to the top of the page
      - Improve transitions
      - Uniform the use of z-index
      - Add ellipsis mode to Text component
      - Improve support of QuestDB SQL in Ace
      
      Chores:
      
      - Remove dead code
      - Upgrade deps
      
      * feat(Splitter): add max boundary
      68d62dd5
  16. 08 6月, 2020 1 次提交
  17. 03 6月, 2020 1 次提交
  18. 02 6月, 2020 1 次提交
    • M
      feat(console): add Saved Queries and support for new config file (#352) · 6e65c3a9
      Méril 提交于
      > This is a preview of the new Saved Queries component.
      > 
      > In order to test it, edit the file in:
      > 
      > ```
      > <root_dir>/public/assets/console-configuration.json
      > ```
      > 
      > Like the following:
      > 
      > ```json
      > {
      >   "readOnly": false,
      >   "savedQueries": [
      >     {
      >       "name": "Select data",
      >       "value": "SELECT * FROM trips;"
      >     },
      >     {
      >       "name": "Aggregations",
      >       "value": "SELECT count() FROM trips;"
      >     },
      >     {
      >       "name": "Keyed aggregations",
      >       "value":  "SELECT hour(trip_datetime), count() FROM trips;"
      >     },
      >     {
      >       "name": "Keyed aggregations by time with SAMPLE BY",
      >       "value":  "SELECT hour(trip_datetime), count() FROM trips SAMPLE BY 1M;"
      >     },
      >     {
      >       "name": "Assemble tables based on time with ASOF JOIN",
      >       "value":  "trips ASOF JOIN weather;"
      >     }
      >   ]
      > }
      > ```
      6e65c3a9
  19. 29 5月, 2020 2 次提交
  20. 28 5月, 2020 2 次提交
  21. 27 5月, 2020 2 次提交
  22. 26 5月, 2020 3 次提交