2022-01-13 17:36:41 +00:00
|
|
|
use crate::dbs::Executor;
|
|
|
|
use crate::dbs::Options;
|
|
|
|
use crate::dbs::Runtime;
|
2022-01-20 23:00:57 +00:00
|
|
|
use crate::err::Error;
|
2022-01-13 17:36:41 +00:00
|
|
|
use crate::sql::operation::Operations;
|
|
|
|
use crate::sql::value::Value;
|
|
|
|
|
|
|
|
impl Value {
|
2022-01-20 23:00:57 +00:00
|
|
|
pub async fn patch(
|
|
|
|
&self,
|
|
|
|
_ctx: &Runtime,
|
|
|
|
_opt: &Options<'_>,
|
|
|
|
_exe: &mut Executor,
|
|
|
|
ops: Operations,
|
|
|
|
) -> Result<(), Error> {
|
|
|
|
Ok(())
|
2022-01-13 17:36:41 +00:00
|
|
|
}
|
|
|
|
}
|