By taking this step, the PostgreSQL community set up an invaluable real-world litmus test that lasted an entire year. This strategic intolerance allowed them to gather critical insights into whether any existing code would break and to understand whether such cases were intentional or not.
The decision significantly de-risked the introduction of the new, much-welcomed syntax in SQL and PostgreSQL 16. I think this decision framework serves as a model for other projects on how to introduce changes responsibly without breaking the ecosystem.
Kudos to the PostgreSQL team for such thoughtful engineering and to Peter Eisentraut for leading this exemplary four-year journey!
[1] The Harmful Consequences of the Robustness Principle: https://www.ietf.org/archive/id/draft-iab-protocol-maintenan...
Speaking of DB changes, I wish someone had even warned me what kind of crazy nearly impossible to debug chaos could erupt from pushdown optimization when I had to migrate a huge codebase to mysql 8.
In [1]: 1e8
Out[1]: 100000000.0
In [2]: type(1e8)
Out[2]: float
For example, this was accepted:
SELECT 123abc;
This would parse the same as
SELECT 123 abc;
SQL is just not fair. SQL> select version from v$instance;
VERSION
-----------------
8.1.7.4.0
SQL> select 123abc from dual;
ABC
----------
123