aboutsummaryrefslogtreecommitdiff
path: root/contrib/chkpass/sql/chkpass.sql
blob: 595683e249afdb3ef1142ed02fcb0ca8615be282 (plain)
1
2
3
4
5
6
7
CREATE EXTENSION chkpass;

CREATE TABLE test (i int, p chkpass);
INSERT INTO test VALUES (1, 'hello'), (2, 'goodbye');

SELECT i, p = 'hello' AS "hello?" FROM test;
SELECT i, p <> 'hello' AS "!hello?" FROM test;