Last active
April 20, 2021 15:32
-
-
Save jefo/d1725f6a66b4b497c15a to your computer and use it in GitHub Desktop.
Derby DB generate uuid
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create type uuid external name 'java.util.UUID' language java; | |
create function generateUuid() returns uuid | |
language java | |
parameter style java | |
external name 'java.util.UUID.randomUUID'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment