Skip to content

Commit cd604ef

Browse files
committed
Fix comments
1 parent 3770594 commit cd604ef

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.github/workflows/rust.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -310,10 +310,7 @@ jobs:
310310
cd datafusion-cli
311311
cargo test --lib --tests --bins --all-features
312312
env:
313-
# do not produce debug symbols to keep memory usage down
314-
# use higher optimization level to overcome Windows rust slowness for tpc-ds
315-
# and speed builds: https://github.com/apache/arrow-datafusion/issues/8696
316-
# Cargo profile docs https://doc.rust-lang.org/cargo/reference/profiles.html?profile-settings#profile-settings
313+
# Minimize producing debug symbols to keep memory usage down
317314
# Set debuginfo=line-tables-only as debuginfo=0 causes immensely slow build
318315
# See for more details: https://github.com/rust-lang/rust/issues/119560
319316
RUSTFLAGS: "-C debuginfo=line-tables-only"

datafusion/sql/src/parser.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ pub(crate) type LexOrdering = Vec<OrderByExpr>;
151151
/// Syntax:
152152
///
153153
/// ```text
154-
/// CREATE EXTERNAL TABLE
154+
/// CREATE [ UNBOUNDED ] EXTERNAL TABLE
155155
/// [ IF NOT EXISTS ]
156156
/// <TABLE_NAME>[ (<column_definition>) ]
157157
/// STORED AS <file_type>

0 commit comments

Comments
 (0)