Николай Лебеденко

Results 4 comments of Николай Лебеденко

As far as I know, when you installing the symfony is used the symfony/symfony-standard and file https://github.com/symfony/symfony-standard/blob/master/composer.lock

My solution: ```php /**@var \FOD\DBALClickHouse\Connection $conn */ $olapConnection = $this->_doctrine_manager->getConnection('clickhouse'); $clickHouseConnection = $olapConnection->getWrappedConnection(); $class = new \ReflectionClass($clickHouseConnection); $property = $class->getProperty('smi2CHClient'); $property->setAccessible(true); /** @var \ClickHouseDB\Client $client */ $client = $property->getValue($clickHouseConnection); $params...

This is a real problem for our project, especially for production. And this trick doesn't work: ``` schema_filter: ~^(?!doctrine_)~ ``` because it causes an even bigger problem: ``` bin/console doctrine:migrations:migrate...