Henry

Results 101 comments of Henry

I was able to fix this issue by using another rust image. It would be nice if `Warning: codelldb.cargo tasks are unavailable in the current environment.` was more specific and...

I believe the solution here is you need the full **ABSOLUTE** path, not the "full path". The command name by itself suggests to me the full relative path (which is...

- It would be a very inefficient solution to traverse an entire file system to determine equality. - For an object, you may not want to track every field in...

Keeping avoiding re-emitting if `newState == currentState` as the base behavior makes sense and I am not arguing otherwise. This base behavior does encourage immutable state. But I'd disagree with...

Agree this should be clarified. Also noted that the lack of native exceptions being thrown on the flutter side can cause integration tests to succeed (since the test was exited),...

Yes I did try it. The response contains an `id` field that currenly can't deserialize to a single value struct, so it fails.

Had to rip a lot out but you can replicate it with: ```rust use std::env; use serde::{Deserialize, Serialize}; use surrealdb::{ engine::remote::ws::{Client, Ws}, opt::auth::Root, sql::Thing, Surreal }; #[derive(Debug, Clone, Serialize, Deserialize)]...

But, I do see that something like ```rust #[derive(Debug, Clone, Serialize, Deserialize)] pub struct MediaMetadataRecord { id: MediaMetadataRecordSingleValue } #[derive(Debug, Clone, Serialize, Deserialize)] pub struct MediaMetadataRecordSingleValue(Thing); ``` Does work in...

Also there is https://github.com/mcmah309/surrealdb_migration_engine

I have the same issue as well. Running as `root` does not fix it for me.