David Christensen

Results 32 comments of David Christensen

This worked for me (Emacs 26.3): ``` (add-hook 'vue-mode-hook (lambda () (setq syntax-ppss-table nil))) ``` Note the difference in the hook name compared to some of the answers above.

Hi @couilllard45682, I assume at the very least you should be able to use a `.pgpass` file to provide any password. Otherwise I think we'd have to change the logic...

Hi @mdeguzis — the `.pgpass` would be for the user which is running the script in question; basically at the time of the `DBI->connect()` call. If the icinga daemon is...

Hi @miraclesvenni — is there a minimum version for this check? If so I'd love to see a check to enforce that.

Looks like the regexes aren't matching due to extra missing items being reported; i.e., the `Comment "extension;pg_catalog.plpgsql"` etc lines. I assume that is output generated by the `check_postgres` script itself,...

I'm wondering is this is related to fallout/cleanup from postgresql's 50fc694e43742ce3d04a5e9f708432cb022c5f0d, perhaps some changes in `pg_depend` causing a different state after dropping a pl; since `pg_pltemplate` went away, comments, etc,...

Looks like this will fix the tests; not sure if it's sane or not: ```diff modified check_postgres.pl @@ -1310,6 +1310,7 @@ JOIN pg_roles r ON (r.oid = l.lanowner)}, SQL2 =>...

Thanks, didn't know about this. We'll see if we can make a UA exception to allow this.

Which version of check_postgres is this?

I'm fine with adding a query suppression option if one doesn't exist, however I don't think we want to get into the sanitation business for this. Since this isn't an...