Re: [Bucardo-general] Bucardo error

2016-09-22 Thread Greg Sabino Mullane
On Thu, Sep 22, 2016 at 06:00:33PM +0300, Danil Rakevich wrote: > I have tried this: > > RETURN 'Tables processed: ' || total::text; Thanks, have pushed it to the repo. And thanks for reporting this! -- Greg Sabino Mullane g...@endpoint.com End Point Corporation PGP Key: 2529 DF6A B8F7 9407

Re: [Bucardo-general] Bucardo error

2016-09-22 Thread Greg Sabino Mullane
> RETURN 'Tables processed: ' || > to_char(total,'99'); ... > DBD::Pg::st pg_result failed: ERROR: operator is not unique: unknown || > integer I think this might be solved easier with a force-cast to text like so: RETURN 'Tables processed: '::text || total;