doctrine / orm

Doctrine Object Relational Mapper (ORM)
https://www.doctrine-project.org/projects/orm.html
MIT License
9.94k stars 2.52k forks source link

fix: DefaultQuoteStrategy not Oracle db compatible #11713

Open jjjb03 opened 1 week ago

jjjb03 commented 1 week ago
  1. Oracle enforces non-quoted column aliases to start with an alphabetic character
  2. by prefixing the length limit is exceeded again

see list of Database Object Naming Rules, Point 6 at https://docs.oracle.com/en/database/oracle/oracle-database/21/sqlrf/Database-Object-Names-and-Qualifiers.html

I guess this is a valid approach for all databases?

This was also addressed in ~#1600~, #4610, #5607

FIXES DDC-2733/#3476