File tree 4 files changed +11
-2
lines changed
4 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 3
3
MODULES = lo
4
4
5
5
EXTENSION = lo
6
- DATA = lo--1.1.sql lo--1.0--1.1.sql
6
+ DATA = lo--1.1.sql lo--1.0--1.1.sql lo--1.1--1.2.sql
7
7
PGFILEDESC = "lo - management for large objects"
8
8
9
9
REGRESS = lo
Original file line number Diff line number Diff line change
1
+ /* contrib/lo/lo--1.1--1.2.sql */
2
+
3
+ -- complain if script is sourced in psql, rather than via ALTER EXTENSION
4
+ \echo Use " ALTER EXTENSION lo UPDATE TO '1.2'" to load this file. \quit
5
+
6
+ CREATE OR REPLACE FUNCTION lo_oid (lo) RETURNS pg_catalog .oid
7
+ LANGUAGE SQL STRICT IMMUTABLE PARALLEL SAFE
8
+ RETURN (SELECT $1 ::pg_catalog .oid );
Original file line number Diff line number Diff line change 1
1
# lo extension
2
2
comment = 'Large Object maintenance'
3
- default_version = '1.1 '
3
+ default_version = '1.2 '
4
4
module_pathname = '$libdir/lo'
5
5
relocatable = true
6
6
trusted = true
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ install_data(
20
20
' lo.control' ,
21
21
' lo--1.0--1.1.sql' ,
22
22
' lo--1.1.sql' ,
23
+ ' lo--1.1--1.2.sql' ,
23
24
kwargs : contrib_data_args,
24
25
)
25
26
You can’t perform that action at this time.
0 commit comments