You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After merge of feaure-80 to the master, the travis build becomes broken. It is because now it runs tests not only for mysql, but for postgresql too. The testQueryCount fails with message:
E_WARNING: pg_query(): Query failed: ERROR: column "t1.name" must appear in the GROUP BY clause or be used in an aggregate function LINE 10: "t1"."name" ^ in /home/travis/build/qcubed/framework/includes/qcubed/_core/database/QPostgreSqlDatabase.class.php on line 229
it is specific to postgresql build. postgresal dislikes any clauses with fields mentioned, if they doues not appear in some aggregate function, like MAX/MIN.
The text was updated successfully, but these errors were encountered:
After merge of feaure-80 to the master, the travis build becomes broken. It is because now it runs tests not only for mysql, but for postgresql too. The testQueryCount fails with message:
E_WARNING: pg_query(): Query failed: ERROR: column "t1.name" must appear in the GROUP BY clause or be used in an aggregate function LINE 10: "t1"."name" ^ in /home/travis/build/qcubed/framework/includes/qcubed/_core/database/QPostgreSqlDatabase.class.php on line 229
it is specific to postgresql build. postgresal dislikes any clauses with fields mentioned, if they doues not appear in some aggregate function, like MAX/MIN.
The text was updated successfully, but these errors were encountered: