doc: pg_prewarm add configuration example

2022-06-18 Thread Dong Wook Lee
Hi hackers, I thought it would be nice to have an configuration example of the pg_prewarm extension. Therefore, I have written an example of a basic configuration. --- Regards, DongWook Lee diff --git a/doc/src/sgml/pgprewarm.sgml b/doc/src/sgml/pgprewarm.sgml index 4e68812250..754a21a076

15beta1 tab completion of extension versions

2022-06-18 Thread Jeff Janes
Extension version strings need to be quoted. Either double or single quotes will work. In released psql clients, tab completion offers double quoted suggestions: alter extension pg_trgm update TO "1.3" "1.4" "1.5" "1.6" But commit 02b8048ba5 broke that, it now offers unquoted version string

Re: 15beta1 tab completion of extension versions

2022-06-18 Thread Tom Lane
Jeff Janes writes: > Extension version strings need to be quoted. Either double or single > quotes will work. In released psql clients, tab completion offers double > quoted suggestions: > But commit 02b8048ba5 broke that, it now offers unquoted version strings > which if used as offered then le

Re: 15beta1 tab completion of extension versions

2022-06-18 Thread Tom Lane
I wrote: > Jeff Janes writes: >> Putting pg_catalog.quote_ident back >> into Query_for_list_of_available_extension_versions* fixes it, but might >> not be the best way to fix it. > Yeah, that seems like the appropriate fix. Done, thanks for the report! Actually ... after further thought it seem