Skip to content

Commit 180f294

Browse files
committed
Revert unrelated Snowflake TEXT test
1 parent d1dca11 commit 180f294

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

tests/sqlparser_snowflake.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5034,13 +5034,3 @@ fn test_text_cast_with_length_modifier() {
50345034

50355035
snowflake().verified_stmt("SELECT col::TEXT(16777216) AS col FROM t");
50365036
}
5037-
5038-
#[test]
5039-
fn test_plain_text_data_type_still_parses_as_text() {
5040-
match snowflake().verified_stmt("CREATE TABLE t (c TEXT)") {
5041-
Statement::CreateTable(CreateTable { columns, .. }) => {
5042-
assert_eq!(columns[0].data_type, DataType::Text);
5043-
}
5044-
_ => unreachable!(),
5045-
}
5046-
}

0 commit comments

Comments
 (0)