1. 26 Sep, 2019 5 commits
  2. 23 Sep, 2019 1 commit
  3. 18 Sep, 2019 1 commit
    • Ante Kresic's avatar
      Add configuration file support to all commands · 38718a0b
      Ante Kresic authored
      By utilizing the spf13/viper library, this commit enables all command line
      flags to be set by using a configuration file (i.e. `config.yaml`) which
      should be located in the root directory of the command.
      38718a0b
  4. 12 Sep, 2019 1 commit
  5. 30 Aug, 2019 1 commit
  6. 28 Aug, 2019 29 commits
  7. 26 Jul, 2019 1 commit
    • Ante Kresic's avatar
      Improve Timescale query timing by confirming query completion · 57922da0
      Ante Kresic authored
      When using the `pgx` sql driver, running the query does not wait for a
      response from the server. In order to verify that the query has returned
      complete results, we must run `Rows.Next()` until it returns false
      meaning we have fetched all the rows from the query result. Note that
      this behavior is different than the current implementation of the `pq`
      driver.
      57922da0
  8. 15 Jul, 2019 1 commit
    • Stephen Polcyn's avatar
      Fix argument name · a8aec49d
      Stephen Polcyn authored
      Previously, the -n flag sent its data to the "max-queries" variable, which results in an unknown variable name when running the script because the python variable used to generate the run script is 'limit' (see line 163). "Max-queries" is only applicable as a flag for the tsbs_run_queries script, i.e., "--max-queries=###".
      a8aec49d