Skip to content

Commit

Permalink
Merge pull request #38 from Maxxen/ulid-extension
Browse files Browse the repository at this point in the history
Add ulid extension
  • Loading branch information
carlopi authored Jul 9, 2024
2 parents b8e26f9 + 9a39a18 commit b2e1aec
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions extensions/ulid/description.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
extension:
name: ulid
description: ULID data type for DuckDB
version: 1.0.0
language: C++
build: cmake
license: MIT
maintainers:
- Maxxen

repo:
github: Maxxen/duckdb_ulid
ref: b8368f646d57aa1bc73a8fee37621fcb87e4ccd2

docs:
hello_world: |
SELECT * ulid() as result;
extended_description: |
This extension adds a new `ULID` data type to DuckDB.
A [ULID](https://github.com/ulid/spec) is similar to a UUID except that it also contains a timestamp component, which makes it more suitable for use cases where the order of creation is important.
Additionally, the string representation is lexicographically sortable while preserving the sort order of the timestamps.

0 comments on commit b2e1aec

Please sign in to comment.