We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f355d8 commit a999c92Copy full SHA for a999c92
crates/core/src/kernel/models/actions.rs
@@ -177,7 +177,7 @@ impl Protocol {
177
self
178
}
179
180
- /// Converts existing properties into features if the reader_version is >=3 or writer_version >=3
+ /// Converts existing properties into features if the reader_version is >=3 or writer_version >=7
181
/// only converts features that are "true"
182
pub fn move_table_properties_into_features(
183
mut self,
@@ -212,7 +212,7 @@ impl Protocol {
212
None => self.writer_features = Some(converted_writer_features),
213
214
215
- if self.min_reader_version > 3 {
+ if self.min_reader_version >= 3 {
216
let converted_reader_features = configuration
217
.iter()
218
.filter(|(_, value)| {
0 commit comments