We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
vhs uses sql condition which are not compatible with postgreSQL. The colume name must be quoted (https://www.postgresql.org/docs/current/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS) to work with postgre and mysql.
(Quick) Fix; Classes/ViewHelpers/Content/AbstractContentViewHelper line 149 - 154
if (is_numeric($this->arguments['column'])) { $conditions = sprintf('"colPos" = %d', (integer) $this->arguments['column']); } if (true === (boolean) $this->arguments['sectionIndexOnly']) { $conditions .= ' AND "sectionIndex" = 1'; }
If you use colPos without quotes postgre search the column colpos (in lowercase).
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
vhs uses sql condition which are not compatible with postgreSQL.
The colume name must be quoted (https://www.postgresql.org/docs/current/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS)
to work with postgre and mysql.
(Quick) Fix;
Classes/ViewHelpers/Content/AbstractContentViewHelper line 149 - 154
If you use colPos without quotes postgre search the column colpos (in lowercase).
The text was updated successfully, but these errors were encountered: