Jeremy Daly

Results 138 comments of Jeremy Daly

Ah, that makes sense. I had set the `createTableMs` and `deleteTableMs` to `0`, but maybe there was still some blocking with LevelDB. Could also be because I was running the...

I can definitely add a `setTimeout` after table creation. I will most likely be using a real table to do some local tests, so it would be good to build...

Hmm, let me look into this.

The library is generating the following parameters: ```javascript { TableName: 'test-table', Key: { pk: 'asdf' }, UpdateExpression: 'SET #enabled = if_not_exists(#enabled,:enabled), #_ct = if_not_exists(#_ct,:_ct), #_md = :_md, #_et = if_not_exists(#_et,:_et),...

Can you use `updateParams` or add the `execute: false` flag to your `update` and post that here? I'm getting the correct parameters for both v0.2 and v0.3.

Thanks for this. I'll take another look.

I still can't duplicate this. Unless `onUpdate` is set to `true`, then any default value generates the "if_not_exists" in the `UpdateExpression` like this: `#enabled = if_not_exists(#enabled,:enabled)`. Can anyone else replicate...

Hi @mikestopcontinues! Thanks for this suggestion. I've never been happy with the current way that composites work, and this is an interesting idea. I have a few other methods I...

Jumping in late, but I think I agree with @mfbx9da4. There is a `removeNullAttributes` option (enabled by default) that will remove attributes set to `null`, but I can't remember why...