creocoder / yii2-nested-sets

The nested sets behavior for the Yii framework.
Other
446 stars 129 forks source link

children()->count() error #91

Open Oreolek opened 8 years ago

Oreolek commented 8 years ago

ERROR: column "categories.lft" must appear in the GROUP BY clause or be used in an aggregate function

PHP code: $model->children()->count()

SQL code: SELECT COUNT(*) FROM "modeltable" WHERE (("lft" > 2) AND ("rgt" < 3)) AND ("root"=375) ORDER BY "lft"

Workaround (if this won't get a fix): children()->orderBy(NULL)->count()