-
-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: parse text[] as array<string> #157
fix: parse text[] as array<string> #157
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR Summary
This PR fixes type handling in PostgreSQL text arrays by ensuring numeric values remain as strings rather than being automatically converted to integers/floats.
- Modified
src/MartinGeorgiev/Utils/DataStructure.php
to preserve string types for numeric values in text arrays - Updated
tests/MartinGeorgiev/Doctrine/DBAL/Types/TextArrayTest.php
to use strict type checking withassertSame()
- Adjusted test data in
tests/MartinGeorgiev/Utils/DataStructureTest.php
to properly handle numeric values as strings - Aligned behavior with PostgreSQL's native text[] type which maintains all elements as strings
💡 (1/5) You can manually trigger the bot by mentioning @greptileai in a comment!
3 file(s) reviewed, 2 comment(s)
Edit PR Review Bot Settings | Greptile
|
||
continue; | ||
} | ||
|
||
if (!\is_string($text)) { | ||
$exceptionMessage = 'Unsupported data type encountered. Expected null, integer, float or string value. Instead it is "%s".'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
logic: Error message mentions expecting integer/float values but code no longer handles these types
@@ -43,7 +43,7 @@ public static function provideValidTransformations(): array | |||
0 => 'dfasdf', | |||
1 => 'qw,,e{q"we', | |||
2 => "'qrer'", | |||
3 => 604, | |||
3 => '604', | |||
4 => '"aaa","b""bb","ccc"', | |||
], | |||
'postgresValue' => '{"dfasdf","qw,,e{q\"we","\'qrer\'",604,"\"aaa\",\"b\"\"bb\",\"ccc\""}', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
logic: Mismatch between test data - phpValue has '604' as string but postgresValue has 604 as unquoted number. This will cause type inconsistency.
@@ -44,7 +44,7 @@ public static function provideValidTransformations(): array | |||
], | |||
[ | |||
'phpValue' => [ | |||
1, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why was this changed?
@@ -43,7 +43,7 @@ public static function provideValidTransformations(): array | |||
0 => 'dfasdf', | |||
1 => 'qw,,e{q"we', | |||
2 => "'qrer'", | |||
3 => 604, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why was this changed?
@coderabbitai wdyt? |
🧩 Analysis chainI'll need to see the specific changes in this PR. Let me look more specifically for the TextArray implementation and the changes: Let's focus on analyzing the PHP files related to array type handling: Let's ensure we're getting the TextArray file and its changes: Let's take a different approach to find the relevant file: Let's try to find all array type handlers in the codebase and inspect the PR changes directly: Now that I can see the PR changes, let me check the specific files mentioned in the commit: Let's try a more direct approach: Now I need to analyze the functionality of the TextArray type to understand the impact of the changes: Since I still haven't found the file, let's try another approach: Let's look at the PR directly from GitHub: Now I have a better understanding of the PR. Let me analyze the significance of the change: @martin-georgiev After reviewing the PR, I believe this is a correct fix. The current behavior of When PostgreSQL stores data in a This change improves type consistency and follows the principle of least surprise. Users would expect I recommend approving this PR as it makes the library's behavior more predictable and consistent with PostgreSQL's native typing system. 🏁 Script executed:
Length of output: 793 🏁 Script executed:
Length of output: 9094 🏁 Script executed:
Length of output: 2645 🏁 Script executed:
Length of output: 34615 🏁 Script executed:
Length of output: 5280 🏁 Script executed:
Length of output: 78207 🏁 Script executed:
Length of output: 71498 🏁 Script executed:
Length of output: 2837 🏁 Script executed:
Length of output: 55 🏁 Script executed:
Length of output: 200 🏁 Script executed:
Length of output: 2211 🏁 Script executed:
Length of output: 6310 @martin-georgiev After carefully examining the PR, I believe this is a correct fix that should be approved. The changes address a clear inconsistency between PostgreSQL's behavior and the current implementation. The current implementation of The PR makes three key changes:
This change correctly ensures that when users store ✅ Actions performedComments resolved. |
@coderabbitai, how else can you improve this functionality? |
Tip For best results, initiate chat on the files or code changes. 🧩 Analysis chain🏁 Script executed:
Length of output: 28147 @martin-georgiev After examining the code, here are several ways to improve the TextArray functionality:
Would you like me to elaborate on any of these improvements or provide a code example for implementing one of them? |
@coderabbitai will this still be an issue with the release of #304? |
Tip For best results, initiate chat on the files or code changes. 🧩 Analysis chain🏁 Script executed:
Length of output: 26234 PR #157 specifically fixed the issue where numeric-looking strings in TextArray were being converted to actual numbers by removing the type juggling code in the DataStructure class. PR #304 completely replaces the DataStructure class with the new ArrayDataTransformer implementation that has comprehensive type preservation for all kinds of values:
So not only is the issue from PR #157 fixed in PR #304, but the new implementation provides a much more robust and comprehensive solution for type preservation across all array types. Code Analysis ToolsTool Analysis ResultsCodeRabbit ran static analysis tools on your files and found the following: No specific issues were found in your files. You can proceed with your changes. |
Tip For best results, initiate chat on the files or code changes. 🧩 Analysis chain🏁 Script executed:
Length of output: 23690 Looking at the changes in PR #304:
PR #304 is even more comprehensive than PR #157 as it also handles other numeric formats like scientific notation and very large numbers, plus it adds better exception handling. So no, this won't still be an issue with the release of PR #304 - it's fully addressed and improved upon. Code Analysis ToolsTool Analysis ResultsCodeRabbit ran static analysis tools on your files and found the following: No specific issues were found in your files. You can proceed with your changes. |
Closing in favour of #304 |
Hey,
The way
MartinGeorgiev\Doctrine\DBAL\Types\TextArray
converts database values to php floats/int broke my expectations.When I save
['a', '1', '0.1']
to my database, I expect to get back the same['a', '1', '0.1']
, NOT['a', 1, 0.1]
. Especially when the column name is "text".I also checked postgres itself, and there is no magic casting: