-
Notifications
You must be signed in to change notification settings - Fork 452
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sstable: clean up datadriven build commands
Clean up the datadriven build and build-raw commands uses by various sstable unit tests. The build command confusingly had its own fragmenters for range deletions and range keys sitting between the test instructions and the Writer being tested. These commands are updated so that the build instructions mirror what is supplied to the writer.
- Loading branch information
Showing
8 changed files
with
100 additions
and
148 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -108,9 +108,9 @@ build collectors=(suffix) | |
[email protected]:foo | ||
[email protected]:bar | ||
[email protected]:baz | ||
rangekey: d@10-e@15:{(#4,RANGEKEYSET,@20,foo)} | ||
rangekey: e@15-f@20:{(#5,RANGEKEYUNSET,@25)} | ||
rangekey: f@20-z@25:{(#6,RANGEKEYDEL)} | ||
EncodeSpan: d@10-e@15:{(#4,RANGEKEYSET,@20,foo)} | ||
EncodeSpan: e@15-f@20:{(#5,RANGEKEYUNSET,@25)} | ||
EncodeSpan: f@20-z@25:{(#6,RANGEKEYDEL)} | ||
---- | ||
point: [a@5#1,SET-c@15#3,SET] | ||
rangekey: [d@10#4,RANGEKEYSET-z@25#inf,RANGEKEYDEL] | ||
|
@@ -135,9 +135,9 @@ build collectors=(suffix-point-keys-only) | |
[email protected]:foo | ||
[email protected]:bar | ||
[email protected]:baz | ||
rangekey: d@10-e@15:{(#4,RANGEKEYSET,@20,foo)} | ||
rangekey: e@15-f@20:{(#5,RANGEKEYUNSET,@25)} | ||
rangekey: f@20-z@25:{(#6,RANGEKEYDEL)} | ||
EncodeSpan: d@10-e@15:{(#4,RANGEKEYSET,@20,foo)} | ||
EncodeSpan: e@15-f@20:{(#5,RANGEKEYUNSET,@25)} | ||
EncodeSpan: f@20-z@25:{(#6,RANGEKEYDEL)} | ||
---- | ||
point: [a@5#1,SET-c@15#3,SET] | ||
rangekey: [d@10#4,RANGEKEYSET-z@25#inf,RANGEKEYDEL] | ||
|
@@ -162,9 +162,9 @@ build collectors=(suffix-range-keys-only) | |
[email protected]:foo | ||
[email protected]:bar | ||
[email protected]:baz | ||
rangekey: d@10-e@15:{(#4,RANGEKEYSET,@20,foo)} | ||
rangekey: e@15-f@20:{(#5,RANGEKEYUNSET,@25)} | ||
rangekey: f@20-z@25:{(#6,RANGEKEYDEL)} | ||
EncodeSpan: d@10-e@15:{(#4,RANGEKEYSET,@20,foo)} | ||
EncodeSpan: e@15-f@20:{(#5,RANGEKEYUNSET,@25)} | ||
EncodeSpan: f@20-z@25:{(#6,RANGEKEYDEL)} | ||
---- | ||
point: [a@5#1,SET-c@15#3,SET] | ||
rangekey: [d@10#4,RANGEKEYSET-z@25#inf,RANGEKEYDEL] | ||
|
@@ -190,9 +190,9 @@ build block-size=1 collectors=(suffix-point-keys-only,suffix-range-keys-only) | |
[email protected]:foo | ||
[email protected]:bar | ||
[email protected]:baz | ||
rangekey: d@10-e@15:{(#4,RANGEKEYSET,@20,foo)} | ||
rangekey: e@15-f@20:{(#5,RANGEKEYUNSET,@25)} | ||
rangekey: f@20-z@25:{(#6,RANGEKEYDEL)} | ||
EncodeSpan: d@10-e@15:{(#4,RANGEKEYSET,@20,foo)} | ||
EncodeSpan: e@15-f@20:{(#5,RANGEKEYUNSET,@25)} | ||
EncodeSpan: f@20-z@25:{(#6,RANGEKEYDEL)} | ||
---- | ||
point: [a@5#1,SET-c@15#3,SET] | ||
rangekey: [d@10#4,RANGEKEYSET-z@25#inf,RANGEKEYDEL] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.