| Crates.io | arrow_cli |
| lib.rs | arrow_cli |
| version | 0.2.0 |
| created_at | 2023-03-26 16:30:45.755263+00 |
| updated_at | 2025-04-27 06:30:05.736962+00 |
| description | Replace with description |
| homepage | |
| repository | https://github.com/sundy-li/arrow_cli |
| max_upload_size | |
| id | 821383 |
| size | 97,038 |
arrow_cli is a CLI tool for interacting with server in Flight SQL protocol.
cargo install arrow_cli
> arrow_cli --help
Usage: arrow_cli <--user <USER>|--password <PASSWORD>|--host <HOST>|--port <PORT>>
❯ arrow_cli -h arch -u sundy -p abc --port 8900
Welcome to Arrow CLI.
Connecting to http://arch:8900/ as user sundy.
arch :) select avg(number) from numbers(10);
select avg(number) from numbers(10);
+-------------+
| avg(number) |
+-------------+
| 4.5 |
+-------------+
1 rows in set (0.036 sec)
arch :) show tables like 'c%';
show tables like 'c%';
+-------------------+
| tables_in_default |
+-------------------+
| customer |
+-------------------+
1 rows in set (0.030 sec)
arch :) exit
Bye
❯ echo "select number from numbers(3)" | arrow_cli -h arch -u sundy -p abc --port 8900
0
1
2