-
Notifications
You must be signed in to change notification settings - Fork 12
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
Adds pgrx utility functions #14
Conversation
@@ -1,3 +1,6 @@ | |||
[target.'cfg(target_os="macos")'] | |||
# Postgres symbols won't be available until runtime | |||
rustflags = ["-Clink-arg=-Wl,-undefined,dynamic_lookup"] | |||
|
|||
[net] | |||
git-fetch-with-cli = true |
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.
|
||
[[bin]] | ||
name = "pgrx_embed_pg_parquet" | ||
path = "./src/bin/pgrx_embed.rs" | ||
|
||
[features] | ||
default = ["pg16"] |
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.
will add pg17 later
PgTupleDesc, | ||
}; | ||
|
||
pub(crate) fn collect_valid_attributes( |
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 be good to add comments,
"valid" has a very specific meaning here
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.
let me add it when I include docs. I open an issue to track it.
No description provided.