aboutsummaryrefslogtreecommitdiff
path: root/contrib/chkpass/expected/chkpass.out
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/chkpass/expected/chkpass.out')
-rw-r--r--contrib/chkpass/expected/chkpass.out18
1 files changed, 0 insertions, 18 deletions
diff --git a/contrib/chkpass/expected/chkpass.out b/contrib/chkpass/expected/chkpass.out
deleted file mode 100644
index b53557bf2af..00000000000
--- a/contrib/chkpass/expected/chkpass.out
+++ /dev/null
@@ -1,18 +0,0 @@
-CREATE EXTENSION chkpass;
-WARNING: type input function chkpass_in should not be volatile
-CREATE TABLE test (i int, p chkpass);
-INSERT INTO test VALUES (1, 'hello'), (2, 'goodbye');
-SELECT i, p = 'hello' AS "hello?" FROM test;
- i | hello?
----+--------
- 1 | t
- 2 | f
-(2 rows)
-
-SELECT i, p <> 'hello' AS "!hello?" FROM test;
- i | !hello?
----+---------
- 1 | f
- 2 | t
-(2 rows)
-