From 1423f0ebb5e0cfec5795a71b6541a98a96569c21 Mon Sep 17 00:00:00 2001 From: jmarca Date: Fri, 22 Mar 2013 15:46:06 -0700 Subject: [PATCH] the textParsers.js link was broken --- FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FAQ.md b/FAQ.md index c513d4a..68b9ecd 100644 --- a/FAQ.md +++ b/FAQ.md @@ -122,7 +122,7 @@ If a prepared statement has a `name`, it is only parsed once. After that, `name ### 10. Can we override the built in data converters between javascript and postgres data types? -Yes, [here is a test that shows how it can be done.](https://github.com/brianc/node-postgres/blob/master/test/integration/client/huge-numeric-tests.js#L6) And for some examples of already registered converters, [look at this file.](https://github.com/brianc/node-postgres/blob/master/lib/textParsers.js) +Yes, [here is a test that shows how it can be done.](https://github.com/brianc/node-postgres/blob/master/test/integration/client/huge-numeric-tests.js#L6) And for some examples of already registered converters, [look at this file.](https://github.com/brianc/node-postgres/blob/master/lib/types/textParsers.js) ### 11. How do I build a `WHERE foo IN (...)` query to find rows matching an array of values?