From 44550ab749e6928e21a83080a81f8318c653c2c8 Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Mon, 13 Jan 2025 18:58:40 +0200 Subject: [PATCH] cargo fmt --- core/vdbe/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/vdbe/mod.rs b/core/vdbe/mod.rs index 1325eea04..1f6852d63 100644 --- a/core/vdbe/mod.rs +++ b/core/vdbe/mod.rs @@ -39,8 +39,8 @@ use crate::vdbe::insn::Insn; #[cfg(feature = "json")] use crate::{ function::JsonFunc, json::get_json, json::json_array, json::json_array_length, - json::json_arrow_extract, json::json_arrow_shift_extract, json::json_extract, json::json_type, - json::json_error_position, + json::json_arrow_extract, json::json_arrow_shift_extract, json::json_error_position, + json::json_extract, json::json_type, }; use crate::{Connection, Result, Rows, TransactionState, DATABASE_VERSION}; use datetime::{exec_date, exec_datetime_full, exec_julianday, exec_time, exec_unixepoch};