Skip to content

Commit

Permalink
fix: bump lindel version
Browse files Browse the repository at this point in the history
  • Loading branch information
rustyconover committed Jan 13, 2025
1 parent 8dd5e62 commit 278cd09
Showing 1 changed file with 7 additions and 5 deletions.
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: b2ad60e4ec0b682f2e0af04a2597ec86885a3d1d

0 comments on commit 278cd09

Please sign in to comment.