1. 23 6月, 2020 1 次提交
  2. 22 6月, 2020 1 次提交
  3. 12 6月, 2020 2 次提交
  4. 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
  5. 24 5月, 2020 1 次提交