Elliot Chance
Elliot Chance
```sql SELECT * FROM t1 FETCH FIRST ROW ONLY; -- X: 1 ``` Does not work, but is valid SQL.
At the moment the row IDs generated for storage have to rely on using the current timestamp and required a 1ms sleep to prevent collisions.
The header is always one page or 4kb (4096 bytes). At the moment only the first byte is used for a rudimentary version. It will be expanded out in the...
SQS now supports FIFO queues: http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html which have some major differences. Existing (what they now called "standard") queues cannot be converted to FIFO, the same should be true in fake_sqs...
Improve logging on the client and server-side to help with debugging. At the moment it's a bit raw and not always reliable to follow.
An interface to provide a standard way to save and restore state (perhaps a type of marshaller). This can be used by an adapter for things like autosave, or restoring...
Websockets can be flakey and the idea of the websocket dropping out for even a moment would be disastrous. I believe this can easily be resolved by: 1. When a...
The renderer uses a regexp to find events like `@click`, but that's problematic if it matches the wrong thing. It should provide the known events/bindings to the template as a...
I find that if i'm testing a function with several parameters or long inputs the code style becomes much less readable and I result to a loop like: ```go func...
This works the same way as Errors in #1: ```go Divide(5, 0).Panics() // pass Divide(5, 0).Panics("divide-by-zero") // pass Divide(5, 0).Panics("foo") // fail ```