-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from Maxxen/ulid-extension
Add ulid extension
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
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
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. |