This is an automated email from the ASF dual-hosted git repository.
dheres pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/main by this push:
new 3bd68533b0 minor: fix doc/typo (#7341)
3bd68533b0 is described below
commit 3bd68533b05a27fa5cf313d592f8e95999407184
Author: jakevin <[email protected]>
AuthorDate: Sun Aug 20 01:57:28 2023 +0800
minor: fix doc/typo (#7341)
---
datafusion/sql/src/parser.rs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/datafusion/sql/src/parser.rs b/datafusion/sql/src/parser.rs
index 0d2d601a68..13159ad8d1 100644
--- a/datafusion/sql/src/parser.rs
+++ b/datafusion/sql/src/parser.rs
@@ -62,7 +62,7 @@ fn parse_file_type(s: &str) -> Result<String, ParserError> {
/// (format parquet,
/// partitions 16,
/// row_group_limit_rows 100000,
-// row_group_limit_bytes 200000
+/// row_group_limit_bytes 200000
/// )
///
/// COPY (SELECT l_orderkey from lineitem) to 'lineitem.parquet';
@@ -176,7 +176,7 @@ impl fmt::Display for CreateExternalTable {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "CREATE EXTERNAL TABLE ")?;
if self.if_not_exists {
- write!(f, "IF NOT EXSISTS ")?;
+ write!(f, "IF NOT EXISTS ")?;
}
write!(f, "{} ", self.name)?;
write!(f, "STORED AS {} ", self.file_type)?;