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

feat(cube): support postgres cube #3188

Merged
merged 52 commits into from
Jul 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
7aee197
feat: add cube
jayy-lmao Apr 8, 2024
b0e574a
docs: cube docs
jayy-lmao Apr 8, 2024
4882721
docs: update readme
jayy-lmao Apr 8, 2024
ac9e107
fix: cube is now not feature flagged
jayy-lmao Apr 9, 2024
1e15aab
fix: formatting
jayy-lmao Apr 9, 2024
44e3174
fix: typeo for PgCube vs Cube
jayy-lmao Apr 9, 2024
83fedd2
fix: correct types
jayy-lmao Apr 9, 2024
33f909b
fix: postgres only types for cube
jayy-lmao Apr 9, 2024
f1c9ee7
fix: cube readme
jayy-lmao Apr 9, 2024
c22e8f5
fix: dont unwrap cubes
jayy-lmao Apr 9, 2024
fc4ccd1
fix: typo on interval
jayy-lmao Apr 9, 2024
f48808d
fix: zero volume cube array
jayy-lmao Apr 9, 2024
656db1f
fix: return type
jayy-lmao Apr 9, 2024
9b8609a
fix: update tests
jayy-lmao Apr 9, 2024
b975fe5
fix: run with one test type
jayy-lmao Apr 9, 2024
e234a00
fix: log bytes in error
jayy-lmao Apr 9, 2024
f990b24
fix: typo in test
jayy-lmao Apr 9, 2024
6ecb82c
fix: log bytes for failed length
jayy-lmao Apr 9, 2024
a6eb4c0
fix: string deser
jayy-lmao Apr 10, 2024
a2fbe4b
docs: remove cube from readme
jayy-lmao Apr 10, 2024
7bc78f2
fix: int to float
jayy-lmao Apr 10, 2024
dea5cee
fix: trim floats
jayy-lmao Apr 10, 2024
ebf03a6
fix: exttra test
jayy-lmao Apr 10, 2024
25c4ffa
fix: type safe into vectors
jayy-lmao Apr 17, 2024
e85c52e
fix: improve error messages
jayy-lmao Apr 17, 2024
339b793
docs: remove comments
jayy-lmao Apr 17, 2024
799d452
fix: front load most important logic and const at start
jayy-lmao Apr 17, 2024
0b8d493
fix: extract constants
jayy-lmao Apr 17, 2024
b892ad7
fix: flags
jayy-lmao Apr 17, 2024
925584e
fix: avoid redundant buffer creation and use FromStr trait
jayy-lmao Apr 24, 2024
2a03776
fix: handle serializing
jayy-lmao Apr 24, 2024
97120f1
test: cube vec test
jayy-lmao Apr 24, 2024
4aee91a
fix: no array cube test
jayy-lmao Apr 24, 2024
7d2497d
fix: update test with array for cube
jayy-lmao Apr 24, 2024
d212efe
fix: dont use try from for u8
jayy-lmao Apr 24, 2024
79ad49a
fix: conditionally remove padding
jayy-lmao Apr 24, 2024
fff6e0e
fix: conditional trimming
jayy-lmao Apr 24, 2024
7d13776
fix: idiomatic trimming
jayy-lmao Apr 24, 2024
eb6751d
fix: linting
jayy-lmao Apr 24, 2024
90fa31f
fix: remove whitespace
jayy-lmao Apr 24, 2024
969dd0c
fix: lower case array
jayy-lmao Apr 24, 2024
8cc5693
fix: spacing input
jayy-lmao Apr 24, 2024
c0d7976
test: one more vec test
jayy-lmao Apr 24, 2024
5207af4
fix: trim square brackets in case they are using postgres spec page
jayy-lmao Apr 25, 2024
2241d4a
fix: result types
jayy-lmao Jun 6, 2024
3a44033
fix: format
jayy-lmao Jun 6, 2024
95da2fa
fix: box error
jayy-lmao Jun 6, 2024
a7463cc
fix: the borrow produces a value
jayy-lmao Jun 6, 2024
683c05f
fix: self serialise
jayy-lmao Jun 6, 2024
9e193e5
chore: merge main
jayy-lmao Jul 9, 2024
1e73ab5
fix: borrow
jayy-lmao Jul 9, 2024
cd0455e
fix: clippy
jayy-lmao Jul 9, 2024
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
2 changes: 2 additions & 0 deletions sqlx-postgres/src/type_checking.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ impl_type_checking!(

sqlx::postgres::types::PgLQuery,

sqlx::postgres::types::PgCube,

#[cfg(feature = "uuid")]
sqlx::types::Uuid,

Expand Down
Loading
Loading