forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit029fac2
committed
Avoid use of CREATE OR REPLACE FUNCTION in extension installation files.
It was never terribly consistent to use OR REPLACE (because of the lack ofcomparable functionality for data types, operators, etc), andexperimentation shows that it's now positively pernicious in the extensionworld. We really want a failure to occur if there are any conflicts, elseit's unclear what the extension-ownership state of the conflicted objectought to be. Most of the time, CREATE EXTENSION will fail anyway becauseof conflicts on other object types, but an extension defining onlyfunctions can succeed, with bad results.1 parent629b3af commit029fac2
File tree
37 files changed
+922
-922
lines changed- contrib
- adminpack
- btree_gin
- btree_gist
- chkpass
- citext
- cube
- dblink
- dict_int
- dict_xsyn
- earthdistance
- fuzzystrmatch
- hstore
- intagg
- intarray
- isn
- lo
- ltree
- pageinspect
- pg_buffercache
- pg_freespacemap
- pg_trgm
- pgcrypto
- pgrowlocks
- pgstattuple
- seg
- spi
- sslinfo
- tablefunc
- test_parser
- tsearch2
- unaccent
- uuid-ossp
- xml2
37 files changed
+922
-922
lines changedLines changed: 8 additions & 8 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
6 | 6 |
| |
7 | 7 |
| |
8 | 8 |
| |
9 |
| - | |
| 9 | + | |
10 | 10 |
| |
11 | 11 |
| |
12 | 12 |
| |
13 | 13 |
| |
14 |
| - | |
| 14 | + | |
15 | 15 |
| |
16 | 16 |
| |
17 | 17 |
| |
18 | 18 |
| |
19 |
| - | |
| 19 | + | |
20 | 20 |
| |
21 | 21 |
| |
22 | 22 |
| |
23 | 23 |
| |
24 |
| - | |
| 24 | + | |
25 | 25 |
| |
26 | 26 |
| |
27 | 27 |
| |
28 | 28 |
| |
29 |
| - | |
| 29 | + | |
30 | 30 |
| |
31 | 31 |
| |
32 | 32 |
| |
33 | 33 |
| |
34 | 34 |
| |
35 | 35 |
| |
36 | 36 |
| |
37 |
| - | |
| 37 | + | |
38 | 38 |
| |
39 | 39 |
| |
40 | 40 |
| |
41 | 41 |
| |
42 |
| - | |
| 42 | + | |
43 | 43 |
| |
44 | 44 |
| |
45 | 45 |
| |
46 | 46 |
| |
47 |
| - | |
| 47 | + | |
48 | 48 |
| |
49 | 49 |
| |
50 | 50 |
|
0 commit comments
Comments
(0)