Commit 44fa121
committed
bug symfony#58523 [DoctrineBridge] fix: DoctrineTokenProvider not oracle compatible (jjjb03)
This PR was merged into the 5.4 branch.
Discussion
----------
[DoctrineBridge] fix: DoctrineTokenProvider not oracle compatible
| Q | A
| ------------- | ---
| Branch? | 5.4
| Bug fix? | yes
| New feature? | no
| Deprecations? | no
| Issues | see below
| License | MIT
Problem:
Oracle DB returns all not quoted names in uppercase
(vs. SQLite for example returns non quoted column names as lowercase)
On systems with oracle DB this leads to the Warning/Exception attached below.
see also: [PHP Documentation - function.oci-fetch-array- Return Values](https://www.php.net/manual/en/function.oci-fetch-array.php#refsect1-function.oci-fetch-array-returnvalues)

<!--
Replace this notice by a description of your feature/bugfix.
This will help reviewers and should be a good start for the documentation.
Additionally (see https://symfony.com/releases):
- Always add tests and ensure they pass.
- Bug fixes must be submitted against the lowest maintained branch where they apply
(lowest branches are regularly merged to upper ones so they get the fixes too).
- Features and deprecations must be submitted against the latest branch.
- For new features, provide some code snippets to help understand usage.
- Changelog entry should follow https://symfony.com/doc/current/contributing/code/conventions.html#writing-a-changelog-entry
- Never break backward compatibility (see https://symfony.com/bc).
-->
Commits
-------
119715d fix: DoctrineTokenProvider not oracle compatibleFile tree
1 file changed
+6
-4
lines changed- src/Symfony/Bridge/Doctrine/Security/RememberMe
1 file changed
+6
-4
lines changedLines changed: 6 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
55 | 55 | | |
56 | 56 | | |
57 | 57 | | |
58 | | - | |
59 | | - | |
| 58 | + | |
60 | 59 | | |
61 | 60 | | |
62 | 61 | | |
63 | | - | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
64 | 65 | | |
65 | 66 | | |
66 | | - | |
| 67 | + | |
| 68 | + | |
67 | 69 | | |
68 | 70 | | |
69 | 71 | | |
| |||
0 commit comments