Mikhail
Mikhail
It seems that the problem is with aliasing the id : `id` **AS `id`** Without it it will be all right.
@samdark , only ```id``` field does not suppot the same alias to itself. This works: ```sql SELECT `id` , `name` AS `name`, `entity_id` AS `entity_id`, `entity_type` AS `entity_type` FROM `all`...
@samdark they are old versions but many think they are more stable. I solved this problem in the project by manually using my own alias: ```php $query->select('id as doc_id, name,...
If [this](https://github.com/yiisoft/yii2-sphinx/blob/master/src/QueryBuilder.php#L510) line : ```php $columns[$i] = "$column AS " . $this->db->quoteColumnName($i); ``` change to: ```php $columns[$i] = ($i == 'id') ? $column : "$column AS " . $this->db->quoteColumnName($i); ```...
On the second thought this quick guess is not perfect
Because In Sphinx 3 it is possible to use such alias and someone might have used it for some other field.
Pity, the decision for this problem is not in the prodaction. A simple task to delete one row from a table cannot be accomplished. And I certainly will not be...
the same problem with [bootstrap5](https://github.com/yiisoft/yii2-bootstrap5/issues/85)
@schmunk42 Is it possible to have both bootstrap5 and this extension? This composer ``` "yiisoft/yii2-bootstrap5": "~2.0.2", "yiisoft/yii2-bootstrap4": "~2.0.6", "yiisoft/yii2-symfonymailer": "~2.0.3", "dmstr/yii2-adminlte-asset": "~2.6.1" ``` runs to an error ``` Your requirements...
@schmunk42 > yii2-boostrap4 and yii2-boostrap5 would install different versions of the bower-asset of bootstrap But when I have only next dependencies, they are installed fine ``` "yiisoft/yii2-bootstrap5": "~2.0.2", "yiisoft/yii2-bootstrap4": "~2.0.6",...