Matt Wonlaw

Results 105 comments of Matt Wonlaw

This is done for `orderBy` (but possibly not at each hop?). `take` presents problems if the query traverses many edges. We can disallow `takes` between hops... SQL technically disallows this...

Hey @lovasoa - is there any way I can help here? I can do a cursory review but I'm not deeply familiar with the internals of `sql.js` yet -- I...

Yes, you can cast to/from string on the way in and out of the database. `INSERT INTO x VALUES (CAST(? AS BIGINT))` or `SELECT CAST(a as TEXT) FROM x`

and on the receiving end, so that less than works correctly, cast back to `BigInt` E.g., const rows = db.query(`SELECT CAST(a as TEXT) FROM x`).map(r => BigInt(r[0]) If you keep...

> more generic function name like incr instead of crsql_incr We could. I'm worried about name collisions though. Wouldn't there be a chance that some other extension includes an `incr`?...

I'll add a CI setup to build the docker file. I've moved development to the `dev` branch and `main` is now the stable branch. Also, if you're doing development on...

nice but it'd be easier to review if you removed all the random formatting changes. For anyone who is curious, there fix is just a small change which adds a...

How can that solution be adapted to a Swift project? Looks like `main.m` doesn't exist in that context 🤷‍♂️

Ty. Actually eventually figured it out (I'm an extension author not iOS dev 😅) -- https://github.com/tantaman/xcode-starter/blob/a755ad175caf091b3e61d4aa0fe69e996082ecf4/xcode-starter/xcode_starterApp.swift#L10-L14 The new wrinkle is this: ```c SQLITE_DEPRECATED_NO_REPLACEMENT("Process-global auto extensions are not supported on Apple...

There isn't an option to reset it at the moment but that is something we should definitely add On Sep 3, 2015 8:24 AM, "KirillRyzhkov" [email protected] wrote: > Thanks for...