We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a1baab commit a176e0aCopy full SHA for a176e0a
src/mem_buffer.rs
@@ -117,7 +117,7 @@ pub struct MemBuffer {
117
118
pub struct TableBuffer {
119
buckets: DashMap<i64, TimeBucket>,
120
- schema: SchemaRef, // Immutable after creation - no lock needed
+ schema: SchemaRef, // Immutable after creation - no lock needed
121
project_id: Arc<str>,
122
table_name: Arc<str>,
123
}
@@ -718,7 +718,7 @@ impl TableBuffer {
718
719
720
pub fn schema(&self) -> SchemaRef {
721
- self.schema.clone() // Arc clone is cheap
+ self.schema.clone() // Arc clone is cheap
722
723
724
/// Insert a batch into this table's appropriate time bucket.
0 commit comments