Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
e5cf1a8a
Commit
e5cf1a8a
authored
Oct 21, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SET autocommit no longer needed in /contrib because pg_regress.sh does
it automatically now on regression session startup.
parent
189c3481
Changes
33
Show whitespace changes
Inline
Side-by-side
Showing
33 changed files
with
2 additions
and
46 deletions
+2
-46
contrib/btree_gist/expected/btree_gist.out
contrib/btree_gist/expected/btree_gist.out
+2
-2
contrib/btree_gist/sql/btree_gist.sql
contrib/btree_gist/sql/btree_gist.sql
+0
-1
contrib/cube/sql/cube.sql
contrib/cube/sql/cube.sql
+0
-1
contrib/dblink/expected/dblink.out
contrib/dblink/expected/dblink.out
+0
-1
contrib/dblink/sql/dblink.sql
contrib/dblink/sql/dblink.sql
+0
-2
contrib/earthdistance/sql/earthdistance.sql
contrib/earthdistance/sql/earthdistance.sql
+0
-1
contrib/intarray/sql/_int.sql
contrib/intarray/sql/_int.sql
+0
-1
contrib/ltree/sql/ltree.sql
contrib/ltree/sql/ltree.sql
+0
-2
contrib/pgcrypto/expected/blowfish.out
contrib/pgcrypto/expected/blowfish.out
+0
-1
contrib/pgcrypto/expected/crypt-blowfish.out
contrib/pgcrypto/expected/crypt-blowfish.out
+0
-1
contrib/pgcrypto/expected/crypt-des.out
contrib/pgcrypto/expected/crypt-des.out
+0
-1
contrib/pgcrypto/expected/crypt-md5.out
contrib/pgcrypto/expected/crypt-md5.out
+0
-1
contrib/pgcrypto/expected/crypt-xdes.out
contrib/pgcrypto/expected/crypt-xdes.out
+0
-1
contrib/pgcrypto/expected/hmac-md5.out
contrib/pgcrypto/expected/hmac-md5.out
+0
-1
contrib/pgcrypto/expected/hmac-sha1.out
contrib/pgcrypto/expected/hmac-sha1.out
+0
-1
contrib/pgcrypto/expected/md5.out
contrib/pgcrypto/expected/md5.out
+0
-1
contrib/pgcrypto/expected/rijndael.out
contrib/pgcrypto/expected/rijndael.out
+0
-1
contrib/pgcrypto/expected/sha1.out
contrib/pgcrypto/expected/sha1.out
+0
-1
contrib/pgcrypto/sql/blowfish.sql
contrib/pgcrypto/sql/blowfish.sql
+0
-2
contrib/pgcrypto/sql/crypt-blowfish.sql
contrib/pgcrypto/sql/crypt-blowfish.sql
+0
-2
contrib/pgcrypto/sql/crypt-des.sql
contrib/pgcrypto/sql/crypt-des.sql
+0
-2
contrib/pgcrypto/sql/crypt-md5.sql
contrib/pgcrypto/sql/crypt-md5.sql
+0
-2
contrib/pgcrypto/sql/crypt-xdes.sql
contrib/pgcrypto/sql/crypt-xdes.sql
+0
-2
contrib/pgcrypto/sql/hmac-md5.sql
contrib/pgcrypto/sql/hmac-md5.sql
+0
-2
contrib/pgcrypto/sql/hmac-sha1.sql
contrib/pgcrypto/sql/hmac-sha1.sql
+0
-2
contrib/pgcrypto/sql/init.sql
contrib/pgcrypto/sql/init.sql
+0
-1
contrib/pgcrypto/sql/md5.sql
contrib/pgcrypto/sql/md5.sql
+0
-2
contrib/pgcrypto/sql/rijndael.sql
contrib/pgcrypto/sql/rijndael.sql
+0
-2
contrib/pgcrypto/sql/sha1.sql
contrib/pgcrypto/sql/sha1.sql
+0
-2
contrib/rtree_gist/sql/rtree_gist.sql
contrib/rtree_gist/sql/rtree_gist.sql
+0
-1
contrib/seg/sql/seg.sql
contrib/seg/sql/seg.sql
+0
-1
contrib/tablefunc/sql/tablefunc.sql
contrib/tablefunc/sql/tablefunc.sql
+0
-1
contrib/tsearch/sql/tsearch.sql
contrib/tsearch/sql/tsearch.sql
+0
-1
No files found.
contrib/btree_gist/expected/btree_gist.out
View file @
e5cf1a8a
...
@@ -5,8 +5,8 @@
...
@@ -5,8 +5,8 @@
\set ECHO none
\set ECHO none
psql:btree_gist.sql:10: WARNING: ProcedureCreate: type int4key is not yet defined
psql:btree_gist.sql:10: WARNING: ProcedureCreate: type int4key is not yet defined
psql:btree_gist.sql:15: WARNING: Argument type "int4key" is only a shell
psql:btree_gist.sql:15: WARNING: Argument type "int4key" is only a shell
psql:btree_gist.sql:
76
: WARNING: ProcedureCreate: type tskey is not yet defined
psql:btree_gist.sql:
98
: WARNING: ProcedureCreate: type tskey is not yet defined
psql:btree_gist.sql:
81
: WARNING: Argument type "tskey" is only a shell
psql:btree_gist.sql:
103
: WARNING: Argument type "tskey" is only a shell
CREATE TABLE inttmp (b int4);
CREATE TABLE inttmp (b int4);
\copy inttmp from 'data/test_btree.data'
\copy inttmp from 'data/test_btree.data'
CREATE TABLE tstmp ( t timestamp without time zone );
CREATE TABLE tstmp ( t timestamp without time zone );
...
...
contrib/btree_gist/sql/btree_gist.sql
View file @
e5cf1a8a
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
-- does not depend on contents of seg.sql.
-- does not depend on contents of seg.sql.
--
--
\
set
ECHO
none
\
set
ECHO
none
SET
autocommit
TO
'on'
;
\
i
btree_gist
.
sql
\
i
btree_gist
.
sql
\
set
ECHO
all
\
set
ECHO
all
...
...
contrib/cube/sql/cube.sql
View file @
e5cf1a8a
...
@@ -7,7 +7,6 @@
...
@@ -7,7 +7,6 @@
-- does not depend on contents of cube.sql.
-- does not depend on contents of cube.sql.
--
--
\
set
ECHO
none
\
set
ECHO
none
SET
autocommit
TO
'on'
;
\
i
cube
.
sql
\
i
cube
.
sql
\
set
ECHO
all
\
set
ECHO
all
...
...
contrib/dblink/expected/dblink.out
View file @
e5cf1a8a
...
@@ -6,7 +6,6 @@
...
@@ -6,7 +6,6 @@
--
--
-- Adjust this setting to control where the objects get created.
-- Adjust this setting to control where the objects get created.
SET search_path = public;
SET search_path = public;
SET autocommit TO 'on';
CREATE OR REPLACE FUNCTION conditional_drop()
CREATE OR REPLACE FUNCTION conditional_drop()
RETURNS text AS '
RETURNS text AS '
DECLARE
DECLARE
...
...
contrib/dblink/sql/dblink.sql
View file @
e5cf1a8a
...
@@ -8,8 +8,6 @@
...
@@ -8,8 +8,6 @@
-- Adjust this setting to control where the objects get created.
-- Adjust this setting to control where the objects get created.
SET
search_path
=
public
;
SET
search_path
=
public
;
SET
autocommit
TO
'on'
;
CREATE
OR
REPLACE
FUNCTION
conditional_drop
()
CREATE
OR
REPLACE
FUNCTION
conditional_drop
()
RETURNS
text
AS
'
RETURNS
text
AS
'
DECLARE
DECLARE
...
...
contrib/earthdistance/sql/earthdistance.sql
View file @
e5cf1a8a
...
@@ -7,7 +7,6 @@
...
@@ -7,7 +7,6 @@
-- does not depend on contents of earthdistance.sql or cube.sql.
-- does not depend on contents of earthdistance.sql or cube.sql.
--
--
\
set
ECHO
none
\
set
ECHO
none
SET
autocommit
TO
'on'
;
\
i
earthdistance
.
sql
\
i
earthdistance
.
sql
\
set
ECHO
all
\
set
ECHO
all
...
...
contrib/intarray/sql/_int.sql
View file @
e5cf1a8a
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
-- does not depend on contents of seg.sql.
-- does not depend on contents of seg.sql.
--
--
\
set
ECHO
none
\
set
ECHO
none
SET
autocommit
TO
'on'
;
\
i
_int
.
sql
\
i
_int
.
sql
\
set
ECHO
all
\
set
ECHO
all
...
...
contrib/ltree/sql/ltree.sql
View file @
e5cf1a8a
\
set
ECHO
none
\
set
ECHO
none
SET
autocommit
TO
'on'
;
\
i
ltree
.
sql
\
i
ltree
.
sql
\
set
ECHO
all
\
set
ECHO
all
...
...
contrib/pgcrypto/expected/blowfish.out
View file @
e5cf1a8a
--
--
-- Blowfish cipher
-- Blowfish cipher
--
--
SET autocommit TO 'on';
-- some standard Blowfish testvalues
-- some standard Blowfish testvalues
SELECT encode(encrypt(
SELECT encode(encrypt(
decode('0000000000000000', 'hex'),
decode('0000000000000000', 'hex'),
...
...
contrib/pgcrypto/expected/crypt-blowfish.out
View file @
e5cf1a8a
--
--
-- crypt() and gen_salt(): bcrypt
-- crypt() and gen_salt(): bcrypt
--
--
SET autocommit TO 'on';
SELECT crypt('', '$2a$06$RQiOJ.3ELirrXwxIZY8q0O');
SELECT crypt('', '$2a$06$RQiOJ.3ELirrXwxIZY8q0O');
crypt
crypt
--------------------------------------------------------------
--------------------------------------------------------------
...
...
contrib/pgcrypto/expected/crypt-des.out
View file @
e5cf1a8a
--
--
-- crypt() and gen_salt(): crypt-des
-- crypt() and gen_salt(): crypt-des
--
--
SET autocommit TO 'on';
SELECT crypt('', 'NB');
SELECT crypt('', 'NB');
crypt
crypt
---------------
---------------
...
...
contrib/pgcrypto/expected/crypt-md5.out
View file @
e5cf1a8a
--
--
-- crypt() and gen_salt(): md5
-- crypt() and gen_salt(): md5
--
--
SET autocommit TO 'on';
SELECT crypt('', '$1$Szzz0yzz');
SELECT crypt('', '$1$Szzz0yzz');
crypt
crypt
------------------------------------
------------------------------------
...
...
contrib/pgcrypto/expected/crypt-xdes.out
View file @
e5cf1a8a
--
--
-- crypt() and gen_salt(): extended des
-- crypt() and gen_salt(): extended des
--
--
SET autocommit TO 'on';
SELECT crypt('', '_J9..j2zz');
SELECT crypt('', '_J9..j2zz');
crypt
crypt
----------------------
----------------------
...
...
contrib/pgcrypto/expected/hmac-md5.out
View file @
e5cf1a8a
--
--
-- HMAC-MD5
-- HMAC-MD5
--
--
SET autocommit TO 'on';
SELECT encode(hmac(
SELECT encode(hmac(
'Hi There',
'Hi There',
decode('0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b', 'hex'),
decode('0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b', 'hex'),
...
...
contrib/pgcrypto/expected/hmac-sha1.out
View file @
e5cf1a8a
--
--
-- HMAC-MD5
-- HMAC-MD5
--
--
SET autocommit TO 'on';
SELECT encode(hmac(
SELECT encode(hmac(
'Hi There',
'Hi There',
decode('0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b', 'hex'),
decode('0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b', 'hex'),
...
...
contrib/pgcrypto/expected/md5.out
View file @
e5cf1a8a
--
--
-- MD5 message digest
-- MD5 message digest
--
--
SET autocommit TO 'on';
SELECT encode(digest('', 'md5'), 'hex');
SELECT encode(digest('', 'md5'), 'hex');
encode
encode
----------------------------------
----------------------------------
...
...
contrib/pgcrypto/expected/rijndael.out
View file @
e5cf1a8a
--
--
-- AES / Rijndael-128 cipher
-- AES / Rijndael-128 cipher
--
--
SET autocommit TO 'on';
-- some standard Rijndael testvalues
-- some standard Rijndael testvalues
SELECT encode(encrypt(
SELECT encode(encrypt(
decode('00112233445566778899aabbccddeeff', 'hex'),
decode('00112233445566778899aabbccddeeff', 'hex'),
...
...
contrib/pgcrypto/expected/sha1.out
View file @
e5cf1a8a
--
--
-- SHA1 message digest
-- SHA1 message digest
--
--
SET autocommit TO 'on';
SELECT encode(digest('', 'sha1'), 'hex');
SELECT encode(digest('', 'sha1'), 'hex');
encode
encode
------------------------------------------
------------------------------------------
...
...
contrib/pgcrypto/sql/blowfish.sql
View file @
e5cf1a8a
...
@@ -2,8 +2,6 @@
...
@@ -2,8 +2,6 @@
-- Blowfish cipher
-- Blowfish cipher
--
--
SET
autocommit
TO
'on'
;
-- some standard Blowfish testvalues
-- some standard Blowfish testvalues
SELECT
encode
(
encrypt
(
SELECT
encode
(
encrypt
(
decode
(
'0000000000000000'
,
'hex'
),
decode
(
'0000000000000000'
,
'hex'
),
...
...
contrib/pgcrypto/sql/crypt-blowfish.sql
View file @
e5cf1a8a
...
@@ -2,8 +2,6 @@
...
@@ -2,8 +2,6 @@
-- crypt() and gen_salt(): bcrypt
-- crypt() and gen_salt(): bcrypt
--
--
SET
autocommit
TO
'on'
;
SELECT
crypt
(
''
,
'$2a$06$RQiOJ.3ELirrXwxIZY8q0O'
);
SELECT
crypt
(
''
,
'$2a$06$RQiOJ.3ELirrXwxIZY8q0O'
);
SELECT
crypt
(
'foox'
,
'$2a$06$RQiOJ.3ELirrXwxIZY8q0O'
);
SELECT
crypt
(
'foox'
,
'$2a$06$RQiOJ.3ELirrXwxIZY8q0O'
);
...
...
contrib/pgcrypto/sql/crypt-des.sql
View file @
e5cf1a8a
...
@@ -2,8 +2,6 @@
...
@@ -2,8 +2,6 @@
-- crypt() and gen_salt(): crypt-des
-- crypt() and gen_salt(): crypt-des
--
--
SET
autocommit
TO
'on'
;
SELECT
crypt
(
''
,
'NB'
);
SELECT
crypt
(
''
,
'NB'
);
SELECT
crypt
(
'foox'
,
'NB'
);
SELECT
crypt
(
'foox'
,
'NB'
);
...
...
contrib/pgcrypto/sql/crypt-md5.sql
View file @
e5cf1a8a
...
@@ -2,8 +2,6 @@
...
@@ -2,8 +2,6 @@
-- crypt() and gen_salt(): md5
-- crypt() and gen_salt(): md5
--
--
SET
autocommit
TO
'on'
;
SELECT
crypt
(
''
,
'$1$Szzz0yzz'
);
SELECT
crypt
(
''
,
'$1$Szzz0yzz'
);
SELECT
crypt
(
'foox'
,
'$1$Szzz0yzz'
);
SELECT
crypt
(
'foox'
,
'$1$Szzz0yzz'
);
...
...
contrib/pgcrypto/sql/crypt-xdes.sql
View file @
e5cf1a8a
...
@@ -2,8 +2,6 @@
...
@@ -2,8 +2,6 @@
-- crypt() and gen_salt(): extended des
-- crypt() and gen_salt(): extended des
--
--
SET
autocommit
TO
'on'
;
SELECT
crypt
(
''
,
'_J9..j2zz'
);
SELECT
crypt
(
''
,
'_J9..j2zz'
);
SELECT
crypt
(
'foox'
,
'_J9..j2zz'
);
SELECT
crypt
(
'foox'
,
'_J9..j2zz'
);
...
...
contrib/pgcrypto/sql/hmac-md5.sql
View file @
e5cf1a8a
...
@@ -2,8 +2,6 @@
...
@@ -2,8 +2,6 @@
-- HMAC-MD5
-- HMAC-MD5
--
--
SET
autocommit
TO
'on'
;
SELECT
encode
(
hmac
(
SELECT
encode
(
hmac
(
'Hi There'
,
'Hi There'
,
decode
(
'0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b'
,
'hex'
),
decode
(
'0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b'
,
'hex'
),
...
...
contrib/pgcrypto/sql/hmac-sha1.sql
View file @
e5cf1a8a
...
@@ -2,8 +2,6 @@
...
@@ -2,8 +2,6 @@
-- HMAC-MD5
-- HMAC-MD5
--
--
SET
autocommit
TO
'on'
;
SELECT
encode
(
hmac
(
SELECT
encode
(
hmac
(
'Hi There'
,
'Hi There'
,
decode
(
'0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b'
,
'hex'
),
decode
(
'0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b'
,
'hex'
),
...
...
contrib/pgcrypto/sql/init.sql
View file @
e5cf1a8a
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
--
--
\
set
ECHO
none
\
set
ECHO
none
SET
autocommit
TO
'on'
;
\
i
pgcrypto
.
sql
\
i
pgcrypto
.
sql
\
set
ECHO
all
\
set
ECHO
all
...
...
contrib/pgcrypto/sql/md5.sql
View file @
e5cf1a8a
...
@@ -2,8 +2,6 @@
...
@@ -2,8 +2,6 @@
-- MD5 message digest
-- MD5 message digest
--
--
SET
autocommit
TO
'on'
;
SELECT
encode
(
digest
(
''
,
'md5'
),
'hex'
);
SELECT
encode
(
digest
(
''
,
'md5'
),
'hex'
);
SELECT
encode
(
digest
(
'a'
,
'md5'
),
'hex'
);
SELECT
encode
(
digest
(
'a'
,
'md5'
),
'hex'
);
SELECT
encode
(
digest
(
'abc'
,
'md5'
),
'hex'
);
SELECT
encode
(
digest
(
'abc'
,
'md5'
),
'hex'
);
...
...
contrib/pgcrypto/sql/rijndael.sql
View file @
e5cf1a8a
...
@@ -2,8 +2,6 @@
...
@@ -2,8 +2,6 @@
-- AES / Rijndael-128 cipher
-- AES / Rijndael-128 cipher
--
--
SET
autocommit
TO
'on'
;
-- some standard Rijndael testvalues
-- some standard Rijndael testvalues
SELECT
encode
(
encrypt
(
SELECT
encode
(
encrypt
(
decode
(
'00112233445566778899aabbccddeeff'
,
'hex'
),
decode
(
'00112233445566778899aabbccddeeff'
,
'hex'
),
...
...
contrib/pgcrypto/sql/sha1.sql
View file @
e5cf1a8a
...
@@ -2,8 +2,6 @@
...
@@ -2,8 +2,6 @@
-- SHA1 message digest
-- SHA1 message digest
--
--
SET
autocommit
TO
'on'
;
SELECT
encode
(
digest
(
''
,
'sha1'
),
'hex'
);
SELECT
encode
(
digest
(
''
,
'sha1'
),
'hex'
);
SELECT
encode
(
digest
(
'a'
,
'sha1'
),
'hex'
);
SELECT
encode
(
digest
(
'a'
,
'sha1'
),
'hex'
);
SELECT
encode
(
digest
(
'abc'
,
'sha1'
),
'hex'
);
SELECT
encode
(
digest
(
'abc'
,
'sha1'
),
'hex'
);
...
...
contrib/rtree_gist/sql/rtree_gist.sql
View file @
e5cf1a8a
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
-- does not depend on contents of seg.sql.
-- does not depend on contents of seg.sql.
--
--
\
set
ECHO
none
\
set
ECHO
none
SET
autocommit
TO
'on'
;
\
i
rtree_gist
.
sql
\
i
rtree_gist
.
sql
\
set
ECHO
all
\
set
ECHO
all
...
...
contrib/seg/sql/seg.sql
View file @
e5cf1a8a
...
@@ -7,7 +7,6 @@
...
@@ -7,7 +7,6 @@
-- does not depend on contents of seg.sql.
-- does not depend on contents of seg.sql.
--
--
\
set
ECHO
none
\
set
ECHO
none
SET
autocommit
TO
'on'
;
\
i
seg
.
sql
\
i
seg
.
sql
\
set
ECHO
all
\
set
ECHO
all
...
...
contrib/tablefunc/sql/tablefunc.sql
View file @
e5cf1a8a
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
-- does not depend on contents of tablefunc.sql.
-- does not depend on contents of tablefunc.sql.
--
--
\
set
ECHO
none
\
set
ECHO
none
SET
autocommit
TO
'on'
;
\
i
tablefunc
.
sql
\
i
tablefunc
.
sql
\
set
ECHO
all
\
set
ECHO
all
...
...
contrib/tsearch/sql/tsearch.sql
View file @
e5cf1a8a
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
-- does not depend on contents of seg.sql.
-- does not depend on contents of seg.sql.
--
--
\
set
ECHO
none
\
set
ECHO
none
SET
autocommit
TO
'on'
;
\
i
tsearch
.
sql
\
i
tsearch
.
sql
\
set
ECHO
all
\
set
ECHO
all
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment