We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccf0e94 commit f743ed1Copy full SHA for f743ed1
src/ast/helpers/key_value_options.rs
@@ -19,9 +19,7 @@
19
//! See [this page](https://docs.snowflake.com/en/sql-reference/commands-data-loading) for more details.
20
21
#[cfg(not(feature = "std"))]
22
-use alloc::string::String;
23
-#[cfg(not(feature = "std"))]
24
-use alloc::vec::Vec;
+use alloc::{boxed::Box, string::String, vec::Vec};
25
use core::fmt;
26
use core::fmt::Formatter;
27
src/parser/alter.rs
@@ -15,7 +15,7 @@
15
16
use alloc::vec;
17
18
-use alloc::{boxed::Box, string::ToString};
+use alloc::{string::ToString};
use super::{Parser, ParserError};
use crate::{
0 commit comments