Skip to content

Commit

Permalink
tests: update sqlp test now that we properly set output delimiter…
Browse files Browse the repository at this point in the history
… based on extension
  • Loading branch information
jqnatividad committed Aug 19, 2024
1 parent 4dca527 commit 2949825
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions tests/test_sqlp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1457,19 +1457,6 @@ fn sqlp_issue2014() {
let mut cmd2 = wrk.command("slice"); // DevSkim: ignore DS126858
cmd2.arg(output_file.clone()); // DevSkim: ignore DS126858

let got: Vec<Vec<String>> = wrk.read_stdout(&mut cmd2); // DevSkim: ignore DS126858
let expected = vec![
svec!["id", "item", "price"],
svec!["0", "wallet", "9.99"],
svec!["1", "comb", "1.39"],
svec!["2", "pencil", "0.49"],
];

assert_eq!(got, expected);

let mut cmd2 = wrk.command("snappy"); // DevSkim: ignore DS126858
cmd2.arg("decompress").arg(output_file.clone()); // DevSkim: ignore DS126858

let got: Vec<Vec<String>> = wrk.read_stdout(&mut cmd2); // DevSkim: ignore DS126858
let expected = vec![
["id;item;price"],
Expand Down

0 comments on commit 2949825

Please sign in to comment.