Skip to content

Commit 1ecbcba

Browse files
committed
Fix build
1 parent 0df2042 commit 1ecbcba

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/dialect/snowflake.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,16 @@ use crate::keywords::Keyword;
3333
use crate::parser::{Parser, ParserError};
3434
use crate::tokenizer::{Token, Word};
3535
#[cfg(not(feature = "std"))]
36+
use alloc::boxed::Box;
37+
#[cfg(not(feature = "std"))]
3638
use alloc::string::String;
3739
#[cfg(not(feature = "std"))]
3840
use alloc::vec::Vec;
3941
#[cfg(not(feature = "std"))]
4042
use alloc::{format, vec};
41-
use sqlparser::ast::StorageSerializationPolicy;
4243

4344
use super::keywords::RESERVED_FOR_IDENTIFIER;
45+
use sqlparser::ast::StorageSerializationPolicy;
4446

4547
/// A [`Dialect`] for [Snowflake](https://www.snowflake.com/)
4648
#[derive(Debug, Default)]

0 commit comments

Comments
 (0)