Mees Delzenne

Results 58 comments of Mees Delzenne

Hi! First of all, thanks again for your contributions! At the time we didn't merge this PR because we had some questions about whether this was the right way to...

This is not a bug but intended. The official build of surrealdb contains the `sql2` feature. This was marked as unstable because the feature introduces breaking code changes for the...

@5hanth Fetch returns a promise so it needs to be awaited first to return a response object. If you then want to have the results be parsed as an object...

> i got a bug too like this. here is my repro: The query do not parse well. why? > > ```rust > let sql = " > INSERT INTO...

The `IF NOT EXISTS` syntax is only available when the `sql2` feature is enabled for the surrealdb crate. Which is why you get a syntax error. Enabling this feature enables...

I was unaware it worked in the release. That is rather strange, maybe my reasoning for why this is behind the `sql2` feature then is wrong. Will investigate. Regarding releasing...

It seems like it was hidden behind the feature because the functionality it provided required adding a field to the `DefineTableStatement` struct. Since this struct was exposed to the rust...

It is noted as released because it is in the build in surrealdb, so if you send a query directly to surrealdb it will parse. It is not in the...

Closing this issue as it was an issue in on of the SDK's and it seems to have been fixed there.

I am unable to replicate this issue on linux. `STATUS_ACCESS_VIOLATION` is the windows error for a segfault. However on linux this doesn't segfault nor is valgrind (a memory access checker)...