aboutsummaryrefslogtreecommitdiff
path: root/contrib/intarray
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2003-05-14 03:26:03 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2003-05-14 03:26:03 +0000
commitf85f43dfb5b9043ea6b01d8b824c195cd7f9ed3c (patch)
tree149a8221767ed2e9c63adc58cc88c4d8faca5381 /contrib/intarray
parentd9b679c13a820eb7b464a1eeb1f177c3fea13ece (diff)
downloadpostgresql-f85f43dfb5b9043ea6b01d8b824c195cd7f9ed3c.tar.gz
postgresql-f85f43dfb5b9043ea6b01d8b824c195cd7f9ed3c.zip
Backend support for autocommit removed, per recent discussions. The
only remnant of this failed experiment is that the server will take SET AUTOCOMMIT TO ON. Still TODO: provide some client-side autocommit logic in libpq.
Diffstat (limited to 'contrib/intarray')
-rw-r--r--contrib/intarray/_int.sql.in2
-rw-r--r--contrib/intarray/expected/_int.out4
2 files changed, 2 insertions, 4 deletions
diff --git a/contrib/intarray/_int.sql.in b/contrib/intarray/_int.sql.in
index c75916507f6..21786e51e7a 100644
--- a/contrib/intarray/_int.sql.in
+++ b/contrib/intarray/_int.sql.in
@@ -6,8 +6,6 @@
-- opclasses get created.
SET search_path = public;
-SET autocommit TO 'on';
-
-- Query type
CREATE FUNCTION bqarr_in(cstring)
RETURNS query_int
diff --git a/contrib/intarray/expected/_int.out b/contrib/intarray/expected/_int.out
index b29cf0b0ee0..b602df33d83 100644
--- a/contrib/intarray/expected/_int.out
+++ b/contrib/intarray/expected/_int.out
@@ -3,8 +3,8 @@
-- does not depend on contents of seg.sql.
--
\set ECHO none
-psql:_int.sql:15: NOTICE: ProcedureCreate: type query_int is not yet defined
-psql:_int.sql:20: NOTICE: Argument type "query_int" is only a shell
+psql:_int.sql:13: NOTICE: ProcedureCreate: type query_int is not yet defined
+psql:_int.sql:18: NOTICE: Argument type "query_int" is only a shell
SELECT intset(1234);
intset
--------