PostgreSQL Hebdo #73
Par Sébastien Lardière le mardi, mars 9 2021, 09:37 - PostgreSQL - Lien permanent
Lu ces dernières semaines :
- CREATE STATISTICS – advanced query optimization
- Running multiple instances of the same PostgreSQL version on RHEL/CentOS 7/8 and Fedora
- Reconnecting your application after a Postgres failover
- How to SCRAM in Postgres with pgBouncer
- How many engineers does it take to make subscripting work?
- Hidden Gems of PostgreSQL 13
- New target_session_attrs settings for high availability and scaling in PostgreSQL v14
- pgFormatter v5.0 released
J'utilise cette configuration dans Emacs pour formatter le code SQL :
(defun pgformat-region (beg end) (interactive "r") (shell-command-on-region beg end "/usr/local/bin/pg_format -b -s 2 -W 4" t t))