I get an error while trying to access the WooCommerce All Products page. The page ends up timing out, and it looks like this plugin is stuck in an infinite loop here.
HY000SQLSTATE[HY000]: General error: 1 near "group": syntax error
SELECT a.*, g.slug AS group FROM wp_actionscheduler_actions a LEFT JOIN wp_actionscheduler_groups g ON a.group_id=g.group_id WHERE a.action_id=260
I get the same error if I try to execute this query directly from sqlite3. It is a problem with AS group. If I remove AS group, the query succeeds fine.
I'm under the impression that SQLite has support for AS, but it's not working here 😄
The problem is that this query is coming from WooCommerce, so I don't necessarily want to go modify that plugin. Looking for advice:
- Is this fixable in the plugin?
- Is there a more certain exit condition for this
do...while loop?
I get an error while trying to access the WooCommerce All Products page. The page ends up timing out, and it looks like this plugin is stuck in an infinite loop here.
HY000SQLSTATE[HY000]: General error: 1 near "group": syntax errorSELECT a.*, g.slug AS group FROM wp_actionscheduler_actions a LEFT JOIN wp_actionscheduler_groups g ON a.group_id=g.group_id WHERE a.action_id=260I get the same error if I try to execute this query directly from
sqlite3. It is a problem withAS group. If I removeAS group, the query succeeds fine.I'm under the impression that SQLite has support for
AS, but it's not working here 😄The problem is that this query is coming from WooCommerce, so I don't necessarily want to go modify that plugin. Looking for advice:
do...whileloop?