Matteo Gioioso
Matteo Gioioso
Same here, it is impossible to style
Same here. Did you try to run `awslocal apigateway get-stages --rest-api-id `? In my case it is empty, however the same template is working in live. Also the cloudformation `describe-stack-events`...
Hey, if you have time to make a PR that would be great, otherwise I think I could do something this coming weekend if I have time. Thanks
Any chance you have this variable set? `NODE_PG_FORCE_NATIVE` https://github.com/brianc/node-postgres/blob/28ac2a17bce287cfa458153dcabe3ca06ca0e28f/packages/pg/lib/index.js#L28 I have never used Netlify myself, but I have found something: https://github.com/brianc/node-postgres/issues/1894#issuecomment-543010595
@arnaudjnn I think you should unset it. regarding to use another library, I think it should be possible: https://github.com/MatteoGioioso/serverless-pg/blob/37f52a95139f7581b87c69797dec61899b6891dd/__tests__/index.test.js#L565 however the API must be compatible
You could try something like that ``` const yourDriver = require("custom-driver") const client = new ServerlessClient({ ...dbConfig, debug: true, library: yourDriver }); ``` although I see that the library you...
Hello, unfortunately I have never used streams with node-postgres. I suppose that something like this won't work then? ``` const QueryStream = require('pg-query-stream') const JSONStream = require('JSONStream') const ServerlessClient =...
I have managed to "get it working": ``` describe.only("streams", function() { it("should work with streams", async function(done) { const QueryStream = require('pg-query-stream') const JSONStream = require('JSONStream') const query = new...
Any update on this?
Hello, yes, the `.query` method behave almost the same as in node-pg: https://github.com/MatteoGioioso/serverless-pg/blob/4cc2007bfb8aed78280e703e4cc34e9e47236faa/src/index.js#L436