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
When using the LoginRequest RateLimiter that caches a failed login attempt Laravel attempts to run a query that starts with "INSERT OR ignore.. " . This syntax is not supported by snowflake.
This codeflow is part of the Laravel Framework. and I am unaware of how to change the query to use an alternative syntax.
Any alternative to the INSERT IGNORE syntax would be to use an insert that uses a select statement that has a where exists clause.
Example Query:
insert or ignore into "cache" ("key", "value", "expiration") values (?, ?, ?)
When using the LoginRequest RateLimiter that caches a failed login attempt Laravel attempts to run a query that starts with "INSERT OR ignore.. " . This syntax is not supported by snowflake.
This codeflow is part of the Laravel Framework. and I am unaware of how to change the query to use an alternative syntax.
Any alternative to the INSERT IGNORE syntax would be to use an insert that uses a select statement that has a where exists clause.
Example Query:
insert or ignore into "cache" ("key", "value", "expiration") values (?, ?, ?)
This exception is being thrown at
App\ Http\ Requests\ Auth\ LoginRequest: 45 authenticate
` public function authenticate(): void
{
Laravel Version : 11.5.0
PHP Version: 8.2.15
The text was updated successfully, but these errors were encountered: