Unify sqlx::CompiledSql and sqlx::SqlQuery into sqlx::Query as a common return type between sqlx::query and sqlx::query!

This commit is contained in:
Ryan Leckey
2019-11-22 22:41:37 +00:00
parent b14d3da2ee
commit b87edd5a9a
23 changed files with 358 additions and 396 deletions

View File

@@ -1,4 +1,4 @@
use crate::{backend::Backend, error::Error, query::IntoQueryParameters, row::FromRow};
use crate::{backend::Backend, error::Error, params::IntoQueryParameters, row::FromRow};
use futures_core::{future::BoxFuture, stream::BoxStream};
use futures_util::TryStreamExt;