1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-18 03:41:30 +02:00

Column: types adjustment

This commit is contained in:
David Grudl
2018-04-17 14:32:02 +02:00
parent 47179d5632
commit 30dec49a9d
2 changed files with 8 additions and 8 deletions

View File

@@ -45,14 +45,14 @@ Assert::null($columns[0]->getVendorInfo('xxx'));
if (!in_array($config['system'], ['sqlite', 'sqlsrv'], true)) {
Assert::same('i', $columns[0]->getType());
}
Assert::null($columns[0]->isNullable());
Assert::false($columns[0]->isNullable());
Assert::same('xXx', $columns[3]->getName());
Assert::null($columns[3]->getTableName());
if (!in_array($config['system'], ['sqlite', 'sqlsrv'], true)) {
Assert::same('i', $columns[0]->getType());
}
Assert::null($columns[3]->isNullable());
Assert::false($columns[3]->isNullable());
Assert::same('xXx', $info->getColumn('xxx')->getName());
Assert::same('xXx', $info->getColumn('xXx')->getName());