Skip to content

Commit

Permalink
chore: rm print
Browse files Browse the repository at this point in the history
  • Loading branch information
evenyag committed Feb 21, 2024
1 parent 171dbdd commit c22aada
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/common/datasource/src/object_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ pub fn parse_url(url: &str) -> Result<(String, Option<String>, String)> {
pub fn build_backend(url: &str, connection: &HashMap<String, String>) -> Result<ObjectStore> {
let (schema, host, path) = parse_url(url)?;
let (root, _) = find_dir_and_filename(&path);
println!("schema {schema}, host {host:?} path {path} root {root}");

match schema.to_uppercase().as_str() {
S3_SCHEMA => {
Expand Down
1 change: 0 additions & 1 deletion src/operator/src/statement/copy_database.rs
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,6 @@ mod tests {
object_store.write("e.f.parquet", "").await.unwrap();

let location = normalize_dir(&dir.path().to_slash().unwrap());
println!("location is {}", location);
let request = CopyDatabaseRequest {
catalog_name: "catalog_0".to_string(),
schema_name: "schema_0".to_string(),
Expand Down

0 comments on commit c22aada

Please sign in to comment.