This repository has been archived by the owner on Jun 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7f26037
commit 6964323
Showing
8 changed files
with
74 additions
and
1 deletion.
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
Submodule rust-rocksdb
added at
dc9a00
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
pub mod namespace_data; | ||
pub mod operator_statistics; | ||
pub mod table_data; |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
use serde::{Deserialize, Serialize}; | ||
use serde_json::Value; | ||
|
||
#[derive(Debug, Serialize, Deserialize)] | ||
pub struct NamespaceData { | ||
pub name: String, | ||
pub properties: Value, | ||
} |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
use serde::{Deserialize, Serialize}; | ||
|
||
#[derive(Debug, Serialize, Deserialize)] | ||
pub struct OperatorStatistics { | ||
pub operator_string: String, | ||
pub cardinality_prev_result: u64, | ||
} |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
use serde::{Deserialize, Serialize}; | ||
use serde_json::Value; | ||
|
||
#[derive(Debug, Serialize, Deserialize)] | ||
pub struct TableData { | ||
pub name: String, | ||
pub num_columns: u64, | ||
pub read_properties: Value, | ||
pub write_properties: Value, | ||
pub file_urls: Vec<String>, | ||
pub columns: Vec<Vec<String>>, | ||
pub aggregates: Value, | ||
pub value_range: (i32, i32), | ||
pub is_strong_key: bool, | ||
pub is_weak_key: bool, | ||
pub primary_key_col_name: String, | ||
} |
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 |
---|---|---|
@@ -1,3 +1,37 @@ | ||
mod dto; | ||
|
||
use dto::namespace_data::NamespaceData; | ||
use dto::operator_statistics::OperatorStatistics; | ||
use dto::table_data::TableData; | ||
|
||
fn main() { | ||
println!("Hello, world!"); | ||
// Create instances of the structs | ||
let namespace = NamespaceData { | ||
name: "MyNamespace".to_string(), | ||
properties: serde_json::json!({"key": "value"}), | ||
}; | ||
|
||
let table = TableData { | ||
name: "MyTable".to_string(), | ||
num_columns: 5, | ||
read_properties: serde_json::json!({"key": "value"}), | ||
write_properties: serde_json::json!({"key": "value"}), | ||
file_urls: vec!["url1".to_string(), "url2".to_string()], | ||
columns: vec![vec!["column1".to_string(), "column2".to_string()]], | ||
aggregates: serde_json::json!({"key": "value"}), | ||
value_range: (1, 100), | ||
is_strong_key: true, | ||
is_weak_key: false, | ||
primary_key_col_name: "id".to_string(), | ||
}; | ||
|
||
let operator_stats = OperatorStatistics { | ||
operator_string: "MyOperator".to_string(), | ||
cardinality_prev_result: 10, | ||
}; | ||
|
||
// Use the structs as required | ||
println!("Namespace: {:?}", namespace); | ||
println!("Table: {:?}", table); | ||
println!("Operator Stats: {:?}", operator_stats); | ||
} |