Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
remove op stats
Browse files Browse the repository at this point in the history
  • Loading branch information
SimranMakhija7 committed May 2, 2024
1 parent db6d2e1 commit ddfceda
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 35 deletions.
3 changes: 1 addition & 2 deletions src/database/database.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,10 @@ impl Database {

let namespace_cf = ColumnFamilyDescriptor::new("NamespaceData", Options::default());
let table_cf = ColumnFamilyDescriptor::new("TableData", Options::default());
let operator_cf = ColumnFamilyDescriptor::new("OperatorStatistics", Options::default());
let table_namespace_cf =
ColumnFamilyDescriptor::new("TableNamespaceMap", Options::default());

let cfs_vec = vec![namespace_cf, table_cf, operator_cf, table_namespace_cf];
let cfs_vec = vec![namespace_cf, table_cf, table_namespace_cf];

let db = DB::open_cf_descriptors(&opts, path, cfs_vec)
.map_err(|e| std::io::Error::new(std::io::ErrorKind::Other, e.to_string()))?;
Expand Down
33 changes: 0 additions & 33 deletions src/dto/operator_statistics.rs

This file was deleted.

0 comments on commit ddfceda

Please sign in to comment.