mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 16:45:33 +02:00
Remove the line primitive (#2887)
This commit is contained in:
@ -47,7 +47,6 @@ fn nu_value_to_sqlite_string(v: Value) -> String {
|
||||
Primitive::Filesize(u) => format!("{}", u),
|
||||
Primitive::Pattern(s) => format!("'{}'", s.replace("'", "''")),
|
||||
Primitive::String(s) => format!("'{}'", s.replace("'", "''")),
|
||||
Primitive::Line(s) => format!("'{}'", s.replace("'", "''")),
|
||||
Primitive::Boolean(true) => "1".into(),
|
||||
Primitive::Boolean(_) => "0".into(),
|
||||
Primitive::Date(d) => format!("'{}'", d),
|
||||
|
Reference in New Issue
Block a user