| 586 | } |
| 587 | |
| 588 | static std::string getHelpFooter() |
| 589 | { |
| 590 | return |
| 591 | "Example printing memory used by each Unix user:\n" |
| 592 | "ps aux | tail -n +2 | awk '{ printf(\"%s\\t%s\\n\", $1, $4) }' | " |
| 593 | "clickhouse-local -S \"user String, mem Float64\" -q" |
| 594 | " \"SELECT user, round(sum(mem), 2) as mem_total FROM table GROUP BY user ORDER" |
| 595 | " BY mem_total DESC FORMAT PrettyCompact\""; |
| 596 | } |
| 597 | |
| 598 | void LocalServer::init(int argc, char ** argv) |
| 599 | { |