mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-25 03:54:21 +01:00
core: Make strict schema support experimental
It's not tested properly so let's mark it as experimental for now. Fixes #2775
This commit is contained in:
@@ -317,7 +317,7 @@ impl Drop for Connection {
|
||||
#[allow(clippy::arc_with_non_send_sync)]
|
||||
#[pyfunction(signature = (path))]
|
||||
pub fn connect(path: &str) -> Result<Connection> {
|
||||
match turso_core::Connection::from_uri(path, true, false, false) {
|
||||
match turso_core::Connection::from_uri(path, true, false, false, false) {
|
||||
Ok((io, conn)) => Ok(Connection { conn, _io: io }),
|
||||
Err(e) => Err(PyErr::new::<ProgrammingError, _>(format!(
|
||||
"Failed to create connection: {e:?}"
|
||||
|
||||
Reference in New Issue
Block a user