singlestoredb-laravel-driver icon indicating copy to clipboard operation
singlestoredb-laravel-driver copied to clipboard

The official SingleStore Laravel driver.

Results 19 singlestoredb-laravel-driver issues
Sort by recently updated
recently updated
newest added

Hey all, I'm working with the S2 team, and we've run into huge performance issues when querying on multiple JSON fields in S2 (see Support ticket #27009) Example: ``` WHERE...

Reported by Ken V (@Xewl) on Twitter: https://twitter.com/Xewl/status/1612700319674413056

An error occurs when trying multiple transactions at once. "message": "There is already an active transaction", "exception": "PDOException", example code ``` DB::beginTransaction(); MarketingAgreementLog::create([ 'user_id' => 1, 'is_agreement' => true, 'type'...

It would be great if this feature was supported. As I understand, the following would have to be done in order to change a field (This example changes a field...

enhancement
good first issue
help wanted

We are in the process of migrating to Singlestore and have encountered a compatibility issue with Laravel's Database Notifications. The issue arises from the HasDatabaseNotifications trait, which defines a relationship...

resolves #84 As described in the issue it is not allowed to use order by within delete in Singlestore. We have overwritten the `compileDelete` so inside delete queries _order by_...

Hello, we have been encountering this error since we upgraded to SingleStore version 8.5.15: ``` Illuminate\Database\QueryException /cliRuntime.php in {closure} SQLSTATE[HY000] [2002] Operation timed out (SQL: select * from `user` where...

**Description:** There's a significant performance issue when executing a specific query using the Laravel driver for SingleStore. The query runs much slower compared to executing it directly through the admin...

Although advertised as MySql compatible, there are several gotchas and missing features from the typical Eloquent + MySql experience. These should be outlined in the docs somewhere. An obvious one...