Skip to content

Commit

Permalink
feat: schema engine postgres WASM implementation (#5136)
Browse files Browse the repository at this point in the history
* feat: schema engine postgres WASM implementation

* fix: add an impl to satsify tests

* fix: sqlite test issues

* fix: fix tests and cleanup

* fix: avoid double connecting in open/drop db

* chore: unnecessary Box::pin
  • Loading branch information
jacek-prisma authored Jan 30, 2025
1 parent 4767cae commit 476ed35
Show file tree
Hide file tree
Showing 12 changed files with 942 additions and 699 deletions.
3 changes: 2 additions & 1 deletion quaint/src/connector/postgres/native/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ use crate::{
visitor::{self, Visitor},
};
use async_trait::async_trait;
use cache::{CacheSettings, NoOpCache, PreparedStatementLruCache, QueryCache, TracingLruCache};
pub use cache::QueryCache;
use cache::{CacheSettings, NoOpCache, PreparedStatementLruCache, TracingLruCache};
use column_type::PGColumnType;
use futures::future::FutureExt;
use futures::StreamExt;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use enumflags2::BitFlags;
use psl::PreviewFeature;

/// Parameters passed from the core to connectors on initialization.
#[derive(Debug)]
#[derive(Debug, Clone)]
pub struct ConnectorParams {
/// The raw connection string or `url` datasource property.
pub connection_string: String,
Expand Down
Loading

0 comments on commit 476ed35

Please sign in to comment.