Re: Why the index is not used ? - Mailing list pgsql-sql

From Paul McGarry
Subject Re: Why the index is not used ?
Date
Msg-id AFD3D125-FAED-42A8-B475-4A8FD568775B@paulmcgarry.com
Whole thread Raw
In response to Why the index is not used ?  (ROS Didier <didier.ros@edf.fr>)
Responses RE: Why the index is not used ?  (ROS Didier <didier.ros@edf.fr>)
RE: Why the index is not used ?  (ROS Didier <didier.ros@edf.fr>)
RE: Why the index is not used ?  (ROS Didier <didier.ros@edf.fr>)
List pgsql-sql
I haven’t looked up what pgp_sym_encrypt() does but assuming it does encryption the way you should be for credit card data then it will be using a random salt and the same input value won’t encrypt to the same output value so
====
WHERE cc=pgp_sym_encrypt('test value 32', 'motdepasse');
====
wouldn’t work because the value generated by the function when you are searching on isn’t the same value as when you stored it.



Paul

On 6 Oct 2018, at 19:57, ROS Didier <didier.ros@edf.fr> wrote:

WHERE cc=pgp_sym_encrypt('test value 32', 'motdepasse');

pgsql-sql by date:

Previous
From: Vladimir Ryabtsev
Date:
Subject: Re: Why the index is not used ?
Next
From: ROS Didier
Date:
Subject: RE: Why the index is not used ?