(
scx: &'a StatementContext<'a>,
filter: Option<ShowStatementFilter<Aug>>,
)
| 768 | } |
| 769 | |
| 770 | pub fn show_cluster_replicas<'a>( |
| 771 | scx: &'a StatementContext<'a>, |
| 772 | filter: Option<ShowStatementFilter<Aug>>, |
| 773 | ) -> Result<ShowSelect<'a>, PlanError> { |
| 774 | let query = " |
| 775 | SELECT cluster, replica, size, ready, comment |
| 776 | FROM mz_internal.mz_show_cluster_replicas |
| 777 | " |
| 778 | .to_string(); |
| 779 | |
| 780 | ShowSelect::new( |
| 781 | scx, |
| 782 | query, |
| 783 | filter, |
| 784 | None, |
| 785 | Some(&["cluster", "replica", "size", "ready", "comment"]), |
| 786 | ) |
| 787 | } |
| 788 | |
| 789 | pub fn show_secrets<'a>( |
| 790 | scx: &'a StatementContext<'a>, |
no test coverage detected