Skip to content

Commit aa7c97b

Browse files
Moved import to top
1 parent 9df8643 commit aa7c97b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/sqlparser_postgres.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
mod test_utils;
2424

2525
use helpers::attached_token::AttachedToken;
26+
use sqlparser::ast::{DataType, DropBehavior, DropOperator, DropOperatorSignature};
2627
use sqlparser::tokenizer::Span;
2728
use test_utils::*;
2829

@@ -6765,8 +6766,6 @@ fn parse_create_operator() {
67656766

67666767
#[test]
67676768
fn parse_drop_operator() {
6768-
use sqlparser::ast::{DataType, DropBehavior, DropOperator, DropOperatorSignature};
6769-
67706769
// Test DROP OPERATOR with NONE for prefix operator
67716770
let sql = "DROP OPERATOR ~ (NONE, BIT)";
67726771
assert_eq!(

0 commit comments

Comments
 (0)