Re: Query returns no rows in pg_basebackup cluster - Mailing list pgsql-general

From Adrian Klaver
Subject Re: Query returns no rows in pg_basebackup cluster
Date
Msg-id f05e0746-0553-bd13-e8ae-1617bd3d72d8@aklaver.com
Whole thread Raw
In response to Re: Query returns no rows in pg_basebackup cluster  ("David G. Johnston" <david.g.johnston@gmail.com>)
List pgsql-general
On 5/21/20 4:06 PM, David G. Johnston wrote:
> On Thu, May 21, 2020 at 3:57 PM Adrian Klaver <adrian.klaver@aklaver.com 
> <mailto:adrian.klaver@aklaver.com>> wrote:
> 
>     On 5/21/20 3:47 PM, Tom Lane wrote:
>      > Adrian Klaver <adrian.klaver@aklaver.com
>     <mailto:adrian.klaver@aklaver.com>> writes:
>      >> On 5/21/20 1:20 PM, Andrus wrote:
>      >>> In windows pg_basebackup was used to create base backup from
>     Linux server.
>      >
>      >> Are you referring to two different instances of Postgres on Windows?
>      >
>      > No, what it sounds like is the OP tried to physically replicate a
>      > database on another platform with completely different sorting rules.
>      > Which means all his text indexes are corrupt according to the
>      > destination platform's sorting rules, which easily explains the
>      > observed misbehavior (ie, index searches not finding the expected
>     rows).
> 
>     Well what I was trying to figure out was:
> 
>     "Windows server this query returns 0 rows.
> 
>     In Windows server same query using like
> 
>     select *  from firma1.desktop where baas like '_LOGIFAI'
> 
>     returns properly 16 rows. "
> 
>     My suspicion is that first case is for the replicated database and
>     failed for the reasons you mentioned and that the second case is for a
>     'native' Windows instance. Just trying to get confirmation.
> 
> 
> Nothing in the OP's text suggests a different server is involved - 
> rather same server but LIKE vs equals.

Aah, missed that.

> 
> The LIKE query probably doesn't use an index and thus finds the relevant 
> data via sequential scan and equality checks on each record.
> 
> David J.
> 


-- 
Adrian Klaver
adrian.klaver@aklaver.com



pgsql-general by date:

Previous
From: "David G. Johnston"
Date:
Subject: Re: Query returns no rows in pg_basebackup cluster
Next
From: Tom Lane
Date:
Subject: Re: Query returns no rows in pg_basebackup cluster