nushell/crates/nu-command/src
David Matos 96e3a3de68
Error out when Select gets same row (#8200)
# Description
Fixes #8145, by disallowing any rows that are duplicated.

```
❯ ls | select 0 0
Error: 
  × Select only allows unique rows
   ╭─[entry #1:1:1]
 1 │ ls | select 0 0
   ·               ┬
   ·               ╰── duplicated row
   ╰────

```

# User-Facing Changes


# Tests + Formatting

Don't forget to add tests that cover your changes.

Make sure you've run and fixed any issues with these commands:

- [X] `cargo fmt --all -- --check` to check standard code formatting
(`cargo fmt --all` applies these changes)
- [X] `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used -A
clippy::needless_collect` to check that you're using the standard code
style
- [X] `cargo test --workspace` to check that all tests pass

# After Submitting

If your PR had any user-facing changes, update [the
documentation](https://github.com/nushell/nushell.github.io) after the
PR is merged, if necessary. This will help us keep the docs up to date.

---------

Co-authored-by: Reilly Wood <reilly.wood@icloud.com>
2023-02-26 18:14:15 -08:00
..
bits Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
bytes special-case ExternalStream in bytes starts-with (#8203) 2023-02-26 15:17:44 +01:00
charting Use variable names directly in the format strings (#7906) 2023-01-29 19:37:54 -06:00
conversions Fix one error message in into string (#8163) 2023-02-22 09:05:19 +00:00
database Use variable names directly in the format strings (#7906) 2023-01-29 19:37:54 -06:00
dataframe Cratification: Break out nu_cmd_lang into a separate crate (#8181) 2023-02-24 09:54:42 -06:00
date report which datetime couldn't be converted (#7980) 2023-02-06 14:17:07 -06:00
debug move ast command to the debug group (#8077) 2023-02-14 18:47:34 +00:00
deprecated add benchmark to deprecated commands (#8046) 2023-02-11 21:39:55 +00:00
env allow for arguments in EDITOR and VISUAL env vars (#8105) 2023-02-26 06:56:38 -06:00
experimental relocate debug commands (#8071) 2023-02-13 16:39:07 +00:00
filesystem Ctrl+c interruption - cp command (#8219) 2023-02-26 12:18:20 -08:00
filters Error out when Select gets same row (#8200) 2023-02-26 18:14:15 -08:00
formats Revert range expansion for to nuon (#8210) 2023-02-25 18:29:30 +01:00
generators Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
hash move hash md5 and hash sha256 commands to the hash category (#8196) 2023-02-24 11:53:25 -06:00
math Update few examples of math commands (#7987) 2023-02-06 13:43:00 +01:00
misc Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
network HTTP HEAD / PATCH / PUT / DELETE commands (#8144) 2023-02-23 17:52:12 -06:00
path Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
platform fix ansi example so it is tested (#8192) 2023-02-24 11:52:51 -06:00
random Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
shells Add more input/output type annotations (#7532) 2022-12-21 20:20:46 +01:00
strings Simplify str trim command (#8205) 2023-02-26 12:23:30 -08:00
system relocate debug commands (#8071) 2023-02-13 16:39:07 +00:00
viewers pipe binary data to external commands (#8058) 2023-02-24 21:39:52 +01:00
default_context.rs Cratification: Break out nu_cmd_lang into a separate crate (#8181) 2023-02-24 09:54:42 -06:00
example_test.rs Cratification: Break out nu_cmd_lang into a separate crate (#8181) 2023-02-24 09:54:42 -06:00
input_handler.rs Standardise the use of ShellError::UnsupportedInput and ShellError::TypeMismatch and add spans to every instance of the former (#7217) 2022-12-23 01:48:53 -05:00
lib.rs Cratification: Break out nu_cmd_lang into a separate crate (#8181) 2023-02-24 09:54:42 -06:00
progress_bar.rs cp progress bar implementation (#8012) 2023-02-22 11:57:38 -08:00
sort_utils.rs Reduce again the number of match calls (#7815) 2023-01-24 12:23:42 +01:00