Dheeraj Manjunath
Dheeraj Manjunath
Reproduced on 6.0.0 as well. Empty string returns true whereas in javascript empty string is treated as false. https://runkit.com/5f846dc85d54e8001aa64b70/5f846dc95a8dee001ab902be
Hey Nick, I haven't tried using the package with lambda but I don't see why it wouldn't work. There's no step to enable it to work for lambda per se,...
Sorry I should have been more specific. I meant to ask is there a node-redshift folder in the zip you uploaded to lambda? I didnt mean to say did the...
So I just uploaded my test repo to lambda to test and it works. But I did run into two problems, I think you may be running into the same...
The code I attached is my lambda function in its entirety. All I'm doing is calling that query in the handler when invoked. It's a very simple lambda function, tried...
Oh I see the problem. I didn't add node-redshift as it's own lambda function. It's all in a single zip that's uploaded to lambda. Here's what I had: [node_redshift_lambda.zip](https://github.com/dmanjunath/node-redshift/files/1215078/node_redshift_lambda.zip) The...
I actually got data from the table as expected. The lambda console showed a formatted JSON object. > On Aug 10, 2017, at 4:00 PM, nburdett19 wrote: > > Great,...
@guruattimeinc Yeah that's something that not currently supported, there's no way to pass in those parameters. The underlying node module(https://github.com/brianc/node-postgres) I'm using handles the actual connection to the database and...
@guruattimeinc Oh I see, you're using JDBC with SQL workbench. There are {ssl: true, and keepAlive: true} properties you can pass into the configuration, but there's no way to to...
Yeah! Theoretically there's a way to do this using redshift cursors and node streams like in this module https://github.com/brianc/node-pg-query-stream. A streaming API is a great feature idea but this project...