Skip to content

Commit

Permalink
Merge pull request #9700 from rweisleder/sakila-postgres-fix
Browse files Browse the repository at this point in the history
Sakila/PostgreSQL: Don't fail if language plpgsql already exists
  • Loading branch information
knutwannheden committed Jan 8, 2020
2 parents 33c517a + 6358896 commit 8c225c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Expand Up @@ -19,7 +19,7 @@ COMMENT ON SCHEMA public IS 'Standard public schema';
-- Name: plpgsql; Type: PROCEDURAL LANGUAGE; Schema: -; Owner: postgres
--

CREATE PROCEDURAL LANGUAGE plpgsql;
CREATE OR REPLACE PROCEDURAL LANGUAGE plpgsql;


ALTER PROCEDURAL LANGUAGE plpgsql OWNER TO postgres;
Expand Down
1 change: 1 addition & 0 deletions jOOQ/src/main/resources/META-INF/ABOUT.txt
Expand Up @@ -40,6 +40,7 @@ Authors and contributors of jOOQ or parts of jOOQ in alphabetical order:
- Peter Ertl
- Richard Bradley
- Robin Stocker
- Roland Weisleder
- Samy Deghou
- Sander Plas
- Sean Wellington
Expand Down

0 comments on commit 8c225c4

Please sign in to comment.