You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently influxdb3 query supports queries via the command line. Eg:
$ influxdb3 query ... "SELECT * FROM cpu LIMIT 3"
This works great for simple queries. It is cumbersome for long queries or queries that require quotes since the user's shell can interfere with the quoting. It would be great if we could support both of these styles (modeled after https://github.com/influxdata/influx-cli):
This change allows *both* the write and query commands to accept input
via stdin or by a file. With this change larger queries are more
feasible to write as they can now be written in a file and smaller
writes via a string are now possible. This also makes the program work
more like people would expect it to, especially on unix based systems.
This commit also contains two tests to make sure the functionality works
as expected.
Closes#25772Closes#25892
This change allows *both* the write and query commands to accept input
via stdin or by a file. With this change larger queries are more
feasible to write as they can now be written in a file and smaller
writes via a string are now possible. This also makes the program work
more like people would expect it to, especially on unix based systems.
This commit also contains three tests to make sure the functionality works
as expected.
Closes#25772Closes#25892
Currently
influxdb3 query
supports queries via the command line. Eg:This works great for simple queries. It is cumbersome for long queries or queries that require quotes since the user's shell can interfere with the quoting. It would be great if we could support both of these styles (modeled after https://github.com/influxdata/influx-cli):
The text was updated successfully, but these errors were encountered: