Lann

Results 351 comments of Lann

@agardnerIT Thanks! The most recent work in progress is at https://github.com/fermyon/spin/pull/2398 if you are interested in following.

Assuming you are using postgres, I believe the quotes are the problem: `INTERVAL '? DAYS'` -> `INTERVAL ? DAYS`

It looks like postgres expects the number to be a string, so you may also need to e.g. `strconv.Itoa` the Go int before passing it to the database.

The quotes mean you are passing the literal string "? DAYS"; Squirrel converts the `?` to `$1` because its placeholder replacement doesn't know how to deal with strings. I believe...

Ah sorry, I got bad information from Google. In that case I would expect something like this to work: ```go squirrel.Expr("expiry

It looks like the original issue here was resolved.

A package can contain only one wasm binary; how that binary is executed is up to the runtime but one command per package is probably a safe assumption today.

It uses up more vertical space for long parameter lists (2 lines per param) and "looks weird" (I don't recall seeing it as a convention anywhere else), but those are...

Labels are already a sort of variable in the context of a spin manifest. Could you share more about what you're trying to do here?

## Variant 3 ```toml #... [component.a] source = "a/target/wasm32-wasi/release/a.wasm" key_value_stores = ["data"] [component.b] source = "b/target/wasm32-wasi/release/b.wasm" key_value_stores = ["data"] # ... ``` It looks like we aren't using the term...