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
So, for example, the following is a query to retrieve only the "image" columns for which data exists.
let result = state.storage.clipboard().find_manyvec![ clipboard::image::not(None)]).exec().await.unwrap();
This code actually works, but the odd thing is that if all the "image" columns are "NULL", then normally no records are returned, but for some reason all records are retrieved.
If there is at least one record with data in the "image" column, the aforementioned problem will not occur.
I am using TAURI to develop my application.
Suppose you have a table with the following schema
So, for example, the following is a query to retrieve only the "image" columns for which data exists.
This code actually works, but the odd thing is that if all the "image" columns are "NULL", then normally no records are returned, but for some reason all records are retrieved.
If there is at least one record with data in the "image" column, the aforementioned problem will not occur.
Is this a bug?
environment
rust version: 1.78
tauri = 1.6.7
prisma-client-rust = 0.6.11
The text was updated successfully, but these errors were encountered: