Zeke Foppa

Results 153 issues of Zeke Foppa

Right now clients determine if rows match by calling a primary key compare func which just compares values in AlgebraicValue. Once we have client side indexes, we should just lookup...

We get a crash when you try to schedule a reducer and you pass a duration that is very far in the future, we should have an actual error message...

Currently `tools/upgrade-version` only bumps the version for the Rust crates. This means that when we bump versions, we often need to remember to manually bump the C# bindings versions as...

# Description of Changes See https://github.com/clockworklabs/SpacetimeDB/issues/2358 for more context on this issue and why this was needed. I think we recently removed the functionality where we return row counts for...

CLI only
backward-compatible
release-1.0.1

It seems like any `update` and `delete` query in `spacetime sql` will cause the CLI to throw an exception. The updates do go through, but the CLI crashes.

On the Spacetime instance you get: internal error: module doesn't indicate spacetime ABI version The real problem is in the CLI you just get Error: with no message

When the `client_disconnected` reducer runs successfully, we should include the `st_client` deletion in that transaction. As of writing we do not, instead appending another transaction afterwards. Note that if the...

DoD: the following module compiles: ```rust use spacetimedb::{ReducerContext, SpacetimeType, Table}; #[spacetimedb::table(name = player, public)] pub struct Player { #[primary_key] #[auto_inc] player_id: u64, #[unique] username: String, level: u32, class: Class, }...

The owner be able to manually snapshot database tables. This should probably just dump all pages to disk. This requires a proposal.