Skip to content

match denormalized properties, fixes #565 - #566

Closed
tacman wants to merge 2 commits into
thephpleague:masterfrom
tacman:denormalized-match
Closed

match denormalized properties, fixes #565#566
tacman wants to merge 2 commits into
thephpleague:masterfrom
tacman:denormalized-match

Conversation

@tacman

@tacman tacman commented Jul 20, 2025

Copy link
Copy Markdown
Contributor

instead of an exact property match, use denormalized columns:


        $records = [
            [
                'observedOn' => '2023-10-30',
                'temperature' => '-1.5',
                'place' => 'Abidjan',
            ],
            [
                'observed_on' => '2023-10-30',
                'temperature' => '-3',
                'place' => 'Abidjan',
            ],
            [
                'observed On' => '2023-10-30',
                'temperature' => '-3',
                'place' => 'Abidjan',
            ],
            [
                'observedon' => '2023-10-30',
                'temperature' => '-3',
                'place' => 'Abidjan',
            ],
        ];

@nyamsprod

Copy link
Copy Markdown
Member

See #565 for reasons to close this PR

@nyamsprod nyamsprod closed this Jul 26, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants