John Detter

Results 17 issues of John Detter

![image](https://github.com/clockworklabs/SpacetimeDB/assets/4099508/af58d0c0-066d-41e3-a415-b30e76b2d45c)

bug

On Ubuntu if you install `dotnet` using snap, then you will get this error when you try to install the wasi-experimental workload: ``` > sudo dotnet workload install wasi-experimental Unhandled...

We've recently discovered that there's a post body maximum size of 2MB. We'd like to increase this value, but there are some security implications to doing this: https://docs.rs/axum/latest/axum/extract/index.html#request-body-limits So, another...

Re: https://github.com/clockworklabs/SpacetimeDB/issues/185 Users are confused by cargo build attempting to compile modules for their default native target and failing to statically link against the non-existent bindings-sys host functions. We should...

``` boppy@boppy-macbook Formula % curl -sSf https://install.spacetimedb.com | sh % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 3525 100...

bug

Right now we have these 3 binaries which give completely different outputs when you pass `--version`: ``` Boppy@JASKIER MINGW64 ~/clockwork/tmp $ ./spacetimedb-standalone.exe --version spacetimedb spacetimedb tool version 1.0.0-rc4; spacetimedb-lib version...

- We have a client which doesn't use the reducer args and they've requested to not receive them. This is medium priority and we'll reprioritize this to high priority if...

Something like this: ``` // Pseudocode func upsert(ctx, primary_key_value, value): if ctx.primary_key_column.try_find(primary_key_value): // Row with a matching primary key column exists ctx.primary_key_column.delete(primary_key_value) ctx.primary_key_column.insert(primary_key_value, value) ``` In order to `upsert` on...

feature-request

This has been asked for several times but most recently in discord: https://discord.com/channels/1037340874172014652/1352309930010480791/1352309991088062569 We need a way to have a column in one table reference a column in another table,...

feature-request

Created from discord issue: https://discord.com/channels/1037340874172014652/1353158092547817483/1353158092547817483 If you have a table in a C# module defined like this: ```csharp [Table(Public = true)] [SpacetimeDB.Index.BTree(Name = "GetPos", Columns = [nameof(CharacterID), nameof(Pos)])] public partial...

feature-request