mirror of
https://github.com/dg/dibi.git
synced 2025-02-23 10:26:21 +01:00
50 lines
1.1 KiB
PHP
50 lines
1.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @dataProvider ../databases.ini
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Tester\Assert;
|
|
|
|
require __DIR__ . '/bootstrap.php';
|
|
|
|
$conn = new Dibi\Connection($config);
|
|
|
|
|
|
Assert::same(
|
|
reformat('SELECT * FROM where WHERE select < 2'),
|
|
$conn->translate('SELECT * FROM where WHERE select < 2')
|
|
);
|
|
|
|
|
|
Assert::same(
|
|
reformat('SELECT * FROM [where] WHERE where.select < 2'),
|
|
$conn->translate('SELECT * FROM [where] WHERE where.select < 2')
|
|
);
|
|
|
|
|
|
Assert::same(
|
|
reformat('SELECT * FROM [where] WHERE [where].[select] < 2'),
|
|
$conn->translate('SELECT * FROM [where] WHERE [where.select] < 2')
|
|
);
|
|
|
|
|
|
Assert::same(
|
|
reformat('SELECT * FROM [where] as [temp] WHERE [temp].[select] < 2'),
|
|
$conn->translate('SELECT * FROM [where] as [temp] WHERE [temp.select] < 2')
|
|
);
|
|
|
|
|
|
Assert::same(
|
|
reformat('SELECT * FROM [where] WHERE [quot\'n\' space] > 2'),
|
|
$conn->translate("SELECT * FROM [where] WHERE [quot'n' space] > 2")
|
|
);
|
|
|
|
|
|
Assert::same(
|
|
reformat('SELECT * FROM [where] WHERE [where].[quot\'n\' space] > 2'),
|
|
$conn->translate("SELECT * FROM [where] WHERE [where.quot'n' space] > 2")
|
|
);
|