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

typo in powa--4.0.0.sql in REL_4_0_0 #30

Closed
pessonnier opened this issue Apr 29, 2020 · 4 comments
Closed

typo in powa--4.0.0.sql in REL_4_0_0 #30

pessonnier opened this issue Apr 29, 2020 · 4 comments
Assignees
Labels

Comments

@pessonnier
Copy link

in REL_4_0_0, the file powa--4.0.0.sql has a typo : two missing 's' line 584 and 585

    res.seq_can_per_sec = (a.seq_scan - b.seq_scan)::double precision / sec;
    res.idx_can_per_sec = (a.idx_scan - b.idx_scan)::double precision / sec;

should be

    res.seq_scan_per_sec = (a.seq_scan - b.seq_scan)::double precision / sec;
    res.idx_scan_per_sec = (a.idx_scan - b.idx_scan)::double precision / sec;
@rjuju rjuju self-assigned this Apr 29, 2020
@rjuju rjuju added the bug label Apr 29, 2020
@rjuju
Copy link
Member

rjuju commented Apr 29, 2020

Thanks @pessonnier I'll take care of that soon!

@rjuju
Copy link
Member

rjuju commented Apr 29, 2020

This should be fixed as of 37a09c6. Can you confirm that it solves all your issues? If yes I'll release this version shortly.

@pessonnier
Copy link
Author

it's look fine, no errors during create extension nor in powa-web

                                     List of installed extensions
        Name        | Version |   Schema   |                        Description                        
--------------------+---------+------------+-----------------------------------------------------------
 btree_gist         | 1.5     | public     | support for indexing common datatypes in GiST
 hypopg             | 1.1.3   | public     | Hypothetical indexes for PostgreSQL
 pg_qualstats       | 2.0.1   | public     | An extension collecting statistics about quals
 pg_stat_kcache     | 2.1.1   | public     | Kernel statistics gathering
 pg_stat_statements | 1.6     | public     | track execution statistics of all SQL statements executed
 pg_wait_sampling   | 1.1     | public     | sampling based statistics of wait events
 plpgsql            | 1.0     | pg_catalog | PL/pgSQL procedural language
 powa               | 4.0.1   | public     | PostgreSQL Workload Analyser-core
(8 rows)

thank you

@rjuju
Copy link
Member

rjuju commented May 16, 2020

FTR v4.0.1 was released a few days ago.

@rjuju rjuju closed this as completed Jun 4, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants