Tim S.

Results 14 comments of Tim S.

Is any fix available? @hausdorff In my attempt to solve issue by adding `imports.Default()` didn't lead me to success. Do you? @robermorales Also when I commented the line with importing...

@fkollmann thank you for your PR. Please fix readme file and I'll merge it.

@miramir hi, what kind of library do you use to interact with Postgres? Some ORM ?

@miramir The library is agnostic for driver so default placeholders for SQL parameters is `?` (question symbol). So, you can use something like this func for your purpose: ```golang package...

> The problem with this solution is: what if I want to find a string in the database with the symbol '?' ? Then you've to add feature to escape...

Hi, I have an idea. What will say community? We can use distributed atomic lock system (for example ZooKeeper or ETCD). 1. Consumer pulls 20 messages. 2. Consumer iterates over...

@ripienaar not really, when we have GroupSubscription and 3 parallel consumers we can receive different events simultaneously which in microservice arch should be handled one by one. Example: 1. Customer...

@jnmoyne can you provide the link to documentation? I think it would be good to have direct link from this issue. Thank you.

Yep, it would be nice to implement this feature. Good implementation of you talk about I saw in pgtype.Status [link](https://github.com/jackc/pgtype/blob/d831ba712a609d578f0fd6f25c13f4c8075eacc7/pgtype.go#L84)

I don't see any changes in README it also contain `float - integer type.` . But also from my POV as in Go we don't have simple `float` type (like...