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: put db con behind feature gate #268

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft

Conversation

psteinroe
Copy link
Collaborator

@psteinroe psteinroe commented Mar 29, 2025

EDIT: putting this into draft again. there are other issues that I need to figure out before we should continue in this direction.

  • get pg_query (or libpg_query? run build in wasm). link
  • I just pushed everything into this branch. need to clean it up and remove the wasm stuff first.

What kind of change does this PR introduce?

puts database connection behind a feature gate db-connection. the flag is enabled by default, so nothing changes.. turns out default-features is a mess. I will remove them, and instead subscribe to that feature wherever it is relevant.

this is premiliary work for #174. after this pr, my plan is to

  • provide a wasm build without any database first and then
  • dive deep into integrating pglite. right now, I believe there is still work to be done on their side for us to make the integration seamless.

@juleswritescode I also "copied" the completion params into the workspace trait and implemented From for each. reason is that I do not want to include pgt_completions for the no-db build because it has schema_cache in its dependency, which in turn requires sqlx. yet another reason we should move things into a feature/ directory.

What is the current behavior?

sqlx and database features are built all the time, leading to a failing build for wasm.

What is the new behavior?

we can exclude sqlx from the build by disabling the default feature flag db-connection

#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
pub struct CompletionItem {
pub label: String,
pub(crate) score: i32,
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

question: do we even need the score here?

@psteinroe psteinroe marked this pull request as draft March 29, 2025 15:56
@psteinroe psteinroe removed the request for review from juleswritescode March 29, 2025 15:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant