We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa907f1 commit 92091a9Copy full SHA for 92091a9
src/parser/mod.rs
@@ -10717,11 +10717,7 @@ impl<'a> Parser<'a> {
10717
None
10718
};
10719
self.expect_token(&Token::RParen)?;
10720
- TableSample::Bucket(TableSampleBucket {
10721
- bucket,
10722
- total,
10723
- on,
10724
- })
+ TableSample::Bucket(TableSampleBucket { bucket, total, on })
10725
} else {
10726
let value = match self.try_parse(|p| p.parse_number_value()) {
10727
Ok(num) => num,
@@ -10754,10 +10750,7 @@ impl<'a> Parser<'a> {
10754
10750
10755
10751
10756
10752
10757
- TableSample::Implicit(TableSampleImplicit {
10758
- value,
10759
- unit,
10760
10753
+ TableSample::Implicit(TableSampleImplicit { value, unit })
10761
}
10762
10763
0 commit comments