Skip to content

Commit

Permalink
Merge pull request #81 from psqlpy-python/feature/add_multidimensiona…
Browse files Browse the repository at this point in the history
…l_array_support

Added support for multi-dimensional arrays
  • Loading branch information
chandr-andr authored Aug 27, 2024
2 parents 7f965d0 + d57a38b commit 48e9cc5
Show file tree
Hide file tree
Showing 6 changed files with 649 additions and 162 deletions.
12 changes: 12 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,4 @@ openssl = { version = "0.10.64", features = ["vendored"] }
itertools = "0.12.1"
openssl-src = "300.2.2"
openssl-sys = "0.9.102"
postgres_array = { git = "https://github.com/chandr-andr/rust-postgres-array.git", branch = "psqlpy" }
2 changes: 2 additions & 0 deletions python/psqlpy/_internal/extra_types.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ class PyJSONB:
value: typing.Union[
dict[str, typing.Any],
list[dict[str, typing.Any]],
list[typing.Any],
],
) -> None:
"""Create new instance of PyJSON.B.
Expand All @@ -112,6 +113,7 @@ class PyJSON:
value: typing.Union[
dict[str, typing.Any],
list[dict[str, typing.Any]],
list[typing.Any],
],
) -> None:
"""Create new instance of PyJSON.
Expand Down
Loading

0 comments on commit 48e9cc5

Please sign in to comment.