├── .gitignore ├── .goreleaser.yml ├── LICENSE ├── README.md ├── autocomplete.go ├── chc.go ├── clickhouse_http.go ├── clickhouse_requests.go ├── helpers.go ├── output.go ├── progressbar.go └── prompt_loop.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filimonov/chc/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filimonov/chc/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filimonov/chc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filimonov/chc/HEAD/README.md -------------------------------------------------------------------------------- /autocomplete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filimonov/chc/HEAD/autocomplete.go -------------------------------------------------------------------------------- /chc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filimonov/chc/HEAD/chc.go -------------------------------------------------------------------------------- /clickhouse_http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filimonov/chc/HEAD/clickhouse_http.go -------------------------------------------------------------------------------- /clickhouse_requests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filimonov/chc/HEAD/clickhouse_requests.go -------------------------------------------------------------------------------- /helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filimonov/chc/HEAD/helpers.go -------------------------------------------------------------------------------- /output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filimonov/chc/HEAD/output.go -------------------------------------------------------------------------------- /progressbar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filimonov/chc/HEAD/progressbar.go -------------------------------------------------------------------------------- /prompt_loop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filimonov/chc/HEAD/prompt_loop.go --------------------------------------------------------------------------------