Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean output of list-views and list-table #985

Merged
merged 2 commits into from
Sep 14, 2020

Commits on Sep 14, 2020

  1. Clean output of list-views and list-table

    Avoid printing a fixed `public,` prefix in the output of `make list-views` and `make list-table`.
    As `make help` says, `list-views` and `list-table` list only the public schema views and tables.
    
    New output:
    
    ```
    viewname
    boundary_z0
    boundary_z1
    boundary_z10
    boundary_z11
    boundary_z12
    boundary_z13
    boundary_z3
    boundary_z4
    boundary_z5
    boundary_z6
    boundary_z7
    boundary_z8
    boundary_z9
    geography_columns
    geometry_columns
    ...
    ```
    
    Existing output:
    
    ```
    schemaname,viewname
    public,boundary_z0
    public,boundary_z1
    public,boundary_z10
    public,boundary_z11
    public,boundary_z12
    public,boundary_z13
    public,boundary_z3
    public,boundary_z4
    public,boundary_z5
    public,boundary_z6
    public,boundary_z7
    public,boundary_z8
    public,boundary_z9
    public,geography_columns
    public,geometry_columns
    ...
    ```
    zstadler committed Sep 14, 2020
    Configuration menu
    Copy the full SHA
    d1792a3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    182eaed View commit details
    Browse the repository at this point in the history