Skip to content

Make test failure: ext/pdo_sqlite/tests/bug_42589.phpt #11492

Closed
@CViniciusSDias

Description

@CViniciusSDias

Description

The following code:

<?php
$db = new PDO("sqlite::memory:");

$db->exec('CREATE TABLE test (field1 VARCHAR(10))');
$db->exec('INSERT INTO test VALUES("test")');

$result = $db->query('SELECT * FROM test t1 LEFT JOIN test t2 ON t1.field1 = t2.field1');
$meta1 = $result->getColumnMeta(0);
$meta2 = $result->getColumnMeta(1);

var_dump(!empty($meta1['table']) && $meta1['table'] == 'test');
var_dump(!empty($meta2['table']) && $meta2['table'] == 'test');

Resulted in this output:

bool(false)
bool(false)

But I expected this output instead:

bool(true)
bool(true)

PHP Version

PHP 8.3.0-dev

Operating System

Ubuntu 20.04.6 LTS

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions