Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 20 additions & 31 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ description = "Apache iceberg client"
edition.workspace = true
homepage.workspace = true
license.workspace = true
name = "iceberg-cli"
name = "iceberg-playground"
readme = "README.md"
repository.workspace = true
rust-version.workspace = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@

# Introduction

Iceberg CLI (`iceberg-cli`) is a small command line utility that runs SQL queries against tables,
Iceberg Playground (`iceberg-playground`) is a small command line utility that runs SQL queries against tables,
which is backed by the DataFusion engine.

Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// under the License.

#![doc = include_str!("../README.md")]
pub const ICEBERG_CLI_VERSION: &str = env!("CARGO_PKG_VERSION");
pub const ICEBERG_PLAYGROUND_VERSION: &str = env!("CARGO_PKG_VERSION");

mod catalog;
pub use catalog::*;
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ use datafusion::prelude::{SessionConfig, SessionContext};
use datafusion_cli::exec;
use datafusion_cli::print_format::PrintFormat;
use datafusion_cli::print_options::{MaxRows, PrintOptions};
use iceberg_cli::{ICEBERG_CLI_VERSION, IcebergCatalogList};
use iceberg_playground::{ICEBERG_PLAYGROUND_VERSION, IcebergCatalogList};

#[derive(Debug, Parser, PartialEq)]
#[clap(author, version, about, long_about= None)]
Expand Down Expand Up @@ -76,7 +76,7 @@ async fn main_inner() -> anyhow::Result<()> {
let args = Args::parse();

if !args.quiet {
println!("ICEBERG CLI v{}", ICEBERG_CLI_VERSION);
println!("ICEBERG PLAYGROUND v{}", ICEBERG_PLAYGROUND_VERSION);
}

let session_config = SessionConfig::from_env()?.with_information_schema(true);
Expand Down
Loading