PostgreSQL Community and Amazon RDS Release Minor Updates on May 9, 2024

Apps & Games / dbForge Studio for PostgreSQL / News dbForge Studio for PostgreSQL for all platforms / PostgreSQL Community and Amazon RDS Release Minor Updates on May 9, 2024
06 Jul 2024

The PostgreSQL community released a set of minor versions on May 9th, 2024 — one for each of the supported “stable” major versions. Later that same day, Amazon RDS for PostgreSQL followed up with its own release announcement. It was the first time that we launched a minor version the same day as the community, which got me thinking about how important it is to maintain PostgreSQL currency.

I am not referring to some interesting new cryptocurrency somehow based on PostgreSQL. And, although PostgreSQL is surely worth its virtual weight in gold, I don’t want to imply some tie to the gold standard either. Instead, what I aim to discuss is the importance of staying current with the latest and greatest PostgreSQL minor release version.

What are the best reasons to upgrade sooner rather than later? Conversely, what are the reasons to wait? Time to dive in.

Three Best Reasons to Upgrade Quickly

Intuitively, you know staying current is in your best interest. But let’s explore some concrete reasons you might want to stay as up to date as possible.

Known bugs get fixed

Looking at the most recent PostgreSQL community release announcement, it says: “This release fixes one security vulnerability and over 55 bugs reported over the last several months.” Even if you are not currently affected by one of those bugs, there are no guarantees that one or more of them will not bite you tomorrow.

Regressions are rare

The PostgreSQL minor versions are equivalent to what some database engines call “patches” and never contain new features — by longstanding policy they only fix bugs. In fact, the official policy says “Minor releases only contain fixes for frequently-encountered bugs, low-risk fixes, security issues, and data corruption problems. The community considers performing minor upgrades to be less risky than continuing to run an old minor version.” Because of this policy, regressions in minor version updates are extremely rare. I can only recall a few in over two decades of closely following and participating in PostgreSQL development.

Compliance

Many organizations must meet compliance directives, or at least have policies that aspire to meet some best practice. Some examples:

  • CIS Benchmark – The CIS Benchmark for PostgreSQL specifically says “One of the best ways to ensure PostgreSQL security is to implement security updates as they come out, along with any applicable OS patches that will not interfere with system operations.”
  • CISA Binding Operational Directives – According to “BOD 19-02: Vulnerability Remediation Requirements for Internet-Accessible Systems”:
    • Critical vulnerabilities must be remediated within 15 calendar days of initial detection.
    • High vulnerabilities must be remediated within 30 calendar days of initial detection.

Postgresql count where null?

In PostgreSQL, you can count rows where a specific column is NULL using the COUNT function combined with a WHERE clause. For example: SELECT COUNT(*) FROM table_name WHERE column_name IS NULL; This query counts the number of rows in `table_name` where `column_name` has a NULL value.

Postgresql select count where?

To count rows in PostgreSQL that meet a certain condition, you can use the COUNT function along with a WHERE clause. For example: SELECT COUNT(*) FROM table_name WHERE condition; Replace `condition` with the specific criteria you want to count. For instance, to count all rows where `column_name` equals 'value', the query would be: SELECT COUNT(*) FROM table_name WHERE column_name = 'value';
Update: 06 Jul 2024
dbForge Studio for PostgreSQL

dbForge Studio for PostgreSQL download for free to PC or mobile

4
852 reviews
3224 downloads

News and reviews about dbForge Studio for PostgreSQL

Loading...