Skip to content

Commit 48e9cc5

Browse files
authored
Merge pull request #81 from psqlpy-python/feature/add_multidimensional_array_support
Added support for multi-dimensional arrays
2 parents 7f965d0 + d57a38b commit 48e9cc5

File tree

6 files changed

+649
-162
lines changed

6 files changed

+649
-162
lines changed

Cargo.lock

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,4 @@ openssl = { version = "0.10.64", features = ["vendored"] }
5050
itertools = "0.12.1"
5151
openssl-src = "300.2.2"
5252
openssl-sys = "0.9.102"
53+
postgres_array = { git = "https://github.com/chandr-andr/rust-postgres-array.git", branch = "psqlpy" }

python/psqlpy/_internal/extra_types.pyi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ class PyJSONB:
9494
value: typing.Union[
9595
dict[str, typing.Any],
9696
list[dict[str, typing.Any]],
97+
list[typing.Any],
9798
],
9899
) -> None:
99100
"""Create new instance of PyJSON.B.
@@ -112,6 +113,7 @@ class PyJSON:
112113
value: typing.Union[
113114
dict[str, typing.Any],
114115
list[dict[str, typing.Any]],
116+
list[typing.Any],
115117
],
116118
) -> None:
117119
"""Create new instance of PyJSON.

0 commit comments

Comments
 (0)