mirror of
https://github.com/nushell/nushell.git
synced 2025-07-08 18:37:07 +02:00
53 lines
1.3 KiB
Rust
53 lines
1.3 KiB
Rust
use nu_protocol::{
|
|
ast::Call,
|
|
engine::{Command, EngineState, Stack},
|
|
Category, Example, IntoPipelineData, PipelineData, ShellError, Signature, Type,
|
|
};
|
|
|
|
use super::super::SQLiteDatabase;
|
|
|
|
#[derive(Clone)]
|
|
pub struct CollectDb;
|
|
|
|
impl Command for CollectDb {
|
|
fn name(&self) -> &str {
|
|
"collect"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build(self.name())
|
|
.input_type(Type::Custom("database".into()))
|
|
.output_type(Type::Any)
|
|
.category(Category::Custom("database".into()))
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Collects a query from a database database connection"
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![Example {
|
|
description: "Collect from a select query",
|
|
example: "open foo.db | into db | select a | from table_1 | collect",
|
|
result: None,
|
|
}]
|
|
}
|
|
|
|
fn search_terms(&self) -> Vec<&str> {
|
|
vec!["database", "collect"]
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
_engine_state: &EngineState,
|
|
_stack: &mut Stack,
|
|
call: &Call,
|
|
input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
let db = SQLiteDatabase::try_from_pipeline(input, call.head)?;
|
|
|
|
db.collect(call.head)
|
|
.map(IntoPipelineData::into_pipeline_data)
|
|
}
|
|
}
|