-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
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
DBAL Exception: Invalid parameter number: mixed named and positional parameters #1200
Closed
3 tasks done
Labels
Comments
SMillerDev
added a commit
that referenced
this issue
Feb 23, 2021
Merged
SMillerDev
added a commit
that referenced
this issue
Feb 23, 2021
Issue GH-1200 Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
SMillerDev
added a commit
that referenced
this issue
Feb 27, 2021
Issue GH-1200 Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
Grotax
pushed a commit
that referenced
this issue
Feb 27, 2021
Issue GH-1200 Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
Grotax
added a commit
that referenced
this issue
Feb 27, 2021
Fixed - Item list not using ID for offset 2 (#1200)
Merged
Grotax
added a commit
that referenced
this issue
Feb 27, 2021
Fixed - Item list not using ID for offset 2 (#1200) Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
Grotax
added a commit
that referenced
this issue
Feb 27, 2021
Fixed - Item list not using ID for offset 2 (#1200) Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
mnassabain
pushed a commit
to Team-Forward/news
that referenced
this issue
Mar 1, 2021
Issue nextcloudGH-1200 Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu> Signed-off-by: Marco Nassabain <marco.nassabain@hotmail.com>
mnassabain
pushed a commit
to Team-Forward/news
that referenced
this issue
Mar 1, 2021
Fixed - Item list not using ID for offset 2 (nextcloud#1200) Signed-off-by: Benjamin Brahmer <info@b-brahmer.de> Signed-off-by: Marco Nassabain <marco.nassabain@hotmail.com>
mnassabain
pushed a commit
to Team-Forward/news
that referenced
this issue
Mar 1, 2021
Issue nextcloudGH-1200 Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu> Signed-off-by: Marco Nassabain <marco.nassabain@hotmail.com>
mnassabain
pushed a commit
to Team-Forward/news
that referenced
this issue
Mar 1, 2021
Fixed - Item list not using ID for offset 2 (nextcloud#1200) Signed-off-by: Benjamin Brahmer <info@b-brahmer.de> Signed-off-by: Marco Nassabain <marco.nassabain@hotmail.com>
mnassabain
pushed a commit
to Team-Forward/news
that referenced
this issue
Mar 1, 2021
Issue nextcloudGH-1200 Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu> Signed-off-by: Marco Nassabain <marco.nassabain@hotmail.com>
mnassabain
pushed a commit
to Team-Forward/news
that referenced
this issue
Mar 1, 2021
Fixed - Item list not using ID for offset 2 (nextcloud#1200) Signed-off-by: Benjamin Brahmer <info@b-brahmer.de> Signed-off-by: Marco Nassabain <marco.nassabain@hotmail.com>
Neo11
pushed a commit
to Neo11/news
that referenced
this issue
May 28, 2022
Issue nextcloudGH-1200 Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
Neo11
pushed a commit
to Neo11/news
that referenced
this issue
May 28, 2022
Fixed - Item list not using ID for offset 2 (nextcloud#1200) Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
IMPORTANT
Read and tick the following checkbox after you have created the issue or place an x inside the brackets ;)
Explain the Problem
What problem did you encounter?
Internal server error!
Somehow the query is switched by the QueryBuilder from
SELECT `items`.* FROM `oc_news_items` `items` INNER JOIN `oc_news_feeds` `feeds` ON items.feed_id = feeds.id WHERE (feeds.user_id = :userId) AND (`items`.`id` > `:offset`) ORDER BY `items`.`last_modified` DESC, `items`.`id` DESC LIMIT 40
to
SELECT `items`.* FROM `oc_news_items` `items` INNER JOIN `oc_news_feeds` `feeds` ON items.feed_id = feeds.id WHERE (feeds.user_id = ?) AND (`items`.`id` > `:offset`) ORDER BY `items`.`last_modified` DESC, `items`.`id` DESC LIMIT 40
in
executeQuery
(note the: userId
->?
)Steps to Reproduce
Explain what you did to encounter the issue
System Information
Contents of nextcloud/data/nextcloud.log
The text was updated successfully, but these errors were encountered: