-
Notifications
You must be signed in to change notification settings - Fork 0
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
Add support for container types ARRAY, OBJECT, and FLOAT_VECTOR #8
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #8 +/- ##
==========================================
+ Coverage 78.10% 80.11% +2.01%
==========================================
Files 6 7 +1
Lines 548 679 +131
==========================================
+ Hits 428 544 +116
- Misses 120 135 +15
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
59f7b71
to
973b498
Compare
b0aa3a8
to
3ddc350
Compare
README.md
Outdated
``` | ||
|
||
When installing the package using the Meltano's project definition, this | ||
would probably the right way to write it down, but it hasn't been verified |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would probably the right way to write it down, but it hasn't been verified | |
would probably be the right way to write it down, but it hasn't been verified |
'importlib-resources; python_version < "3.9"', | ||
"meltanolabs-target-postgres==0.0.9", | ||
'importlib-resources; python_version < "3.9"', # "meltanolabs-target-postgres==0.0.9", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's apparently a rendering glitch by pyproject-fmt
.
What I wrote down, to signal that meltanolabs-target-postgres
was only hooked off temporarily, was:
'importlib-resources; python_version < "3.9"',
# "meltanolabs-target-postgres==0.0.9",
pyproject-fmt
was so kind to fold the comment next to the previous line ;]. Is it legit? This one might be related:
About
This patch brings in support for discovering/processing container data types, like CrateDB's ARRAY, OBJECT, and FLOAT_VECTOR. A significant portion of the code will need to be upstreamed to crate-python in a subsequent iteration, in order to improve the CrateDB SQLAlchemy dialect beyond this specific adapter implementation.
References
verify_schema
MeltanoLabs/target-postgres#250pgvector
[NAIVE] MeltanoLabs/target-postgres#251