You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Gentlemen. A bit of partolite work with doctrine. You have very poor standards, these things should not appear. Remember: If something works, don't move it.
The text was updated successfully, but these errors were encountered:
michaljusiega
changed the title
OCI8 - undefined index
OCI8 - undefined index, CRITICAL !
Dec 2, 2019
Bug Report
Summary
Some changes in 2.10 make a BC break. On line 281 in OCI8Statement, the column is not valid in array, so throws a Notice: Undefined index: test.
Before upgrade to 2.10 the line looks like:
$column = $this->_paramMap[$column] ?? $column;
After upgrade do 2.10 is:
$column = $this->_paramMap[$column];
Current behaviour
Undefined index in array. The null coalesce operator was removed (WHY, who accept this ?)
How to reproduce
The EntityManager must be of OCI8 instance.
Expected behaviour
Should be work by using default column.
Gentlemen. A bit of partolite work with doctrine. You have very poor standards, these things should not appear. Remember: If something works, don't move it.
The text was updated successfully, but these errors were encountered: