We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17da5f4 commit 67d52bfCopy full SHA for 67d52bf
sql/src/value.rs
@@ -521,6 +521,7 @@ impl_try_from_number_value!(f64);
521
522
impl TryFrom<Value> for NaiveDateTime {
523
type Error = Error;
524
+ #[allow(deprecated)]
525
fn try_from(val: Value) -> Result<Self> {
526
match val {
527
Value::Timestamp(i) => {
@@ -616,6 +617,7 @@ impl std::fmt::Display for Value {
616
617
}
618
619
// Compatible with Databend, inner values of nested types are quoted.
620
+#[allow(deprecated)]
621
fn encode_value(f: &mut std::fmt::Formatter<'_>, val: &Value, raw: bool) -> std::fmt::Result {
622
623
Value::Null => write!(f, "NULL"),
0 commit comments