Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[lindel] fix: bump version #269

Merged
merged 2 commits into from
Jan 19, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions extensions/lindel/description.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
docs:
extended_description: "This `lindel` extension adds functions for the linearization\
extended_description:
"This `lindel` extension adds functions for the linearization\
\ and\ndelinearization of numeric arrays in DuckDB. It allows you to order\nmulti-dimensional\
\ data using space-filling curves.\n\n## What is linearization?\n\n[Linearization](https://en.wikipedia.org/wiki/Linearization)\
\ maps multi-dimensional data into a one-dimensional sequence while [preserving\
Expand Down Expand Up @@ -57,7 +58,8 @@ docs:
\ |\n| `UBIGINT` | 2 | 1: `UBIGINT`<br/>2: `UHUGEINT` |\n| `FLOAT` | 4\
\ | 1: `UINTEGER`<br/>2: `UBIGINT`<br/>3-4: `UHUGEINT` |\n| `DOUBLE` | 2 |\
\ 1: `UBIGINT`<br/>2: `UHUGEINT` |\n"
hello_world: "WITH elements AS (\n SELECT * AS id FROM range(3)\n)\nSELECT\n a.id\
hello_world:
"WITH elements AS (\n SELECT * AS id FROM range(3)\n)\nSELECT\n a.id\
\ AS a,\n b.id AS b,\n hilbert_encode([a.id, b.id]::tinyint[2]) AS hilbert,\n\
\ morton_encode([a.id, b.id]::tinyint[2]) AS morton\nFROM\n elements AS a CROSS\
\ JOIN elements AS b;\n┌───────┬───────┬─────────┬────────┐\n│ a │ b │\
Expand Down Expand Up @@ -103,10 +105,10 @@ extension:
license: Apache-2.0
excluded_platforms: "linux_amd64_musl"
maintainers:
- rustyconover
- rustyconover
name: lindel
requires_toolchains: rust
version: 1.0.0
version: 1.0.1
repo:
github: rustyconover/duckdb-lindel-extension
ref: a45b2840e748f4aa0552c599b48c19eba53bdc27
ref: a9cebd1973202afa4357f99e6ed790ea890c65ae
Loading