Skip to content

Commit b7bcc3b

Browse files
committed
Added TERSE in other snowflake tests, just in case
1 parent bb86d89 commit b7bcc3b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/sqlparser_snowflake.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3083,6 +3083,7 @@ fn test_parentheses_overflow() {
30833083
#[test]
30843084
fn test_show_databases() {
30853085
snowflake().verified_stmt("SHOW DATABASES");
3086+
snowflake().verified_stmt("SHOW TERSE DATABASES");
30863087
snowflake().verified_stmt("SHOW DATABASES HISTORY");
30873088
snowflake().verified_stmt("SHOW DATABASES LIKE '%abc%'");
30883089
snowflake().verified_stmt("SHOW DATABASES STARTS WITH 'demo_db'");
@@ -3095,6 +3096,7 @@ fn test_show_databases() {
30953096
#[test]
30963097
fn test_parse_show_schemas() {
30973098
snowflake().verified_stmt("SHOW SCHEMAS");
3099+
snowflake().verified_stmt("SHOW TERSE SCHEMAS");
30983100
snowflake().verified_stmt("SHOW SCHEMAS IN ACCOUNT");
30993101
snowflake().verified_stmt("SHOW SCHEMAS IN ACCOUNT abc");
31003102
snowflake().verified_stmt("SHOW SCHEMAS IN DATABASE");
@@ -3147,6 +3149,7 @@ fn test_parse_show_objects() {
31473149
#[test]
31483150
fn test_parse_show_tables() {
31493151
snowflake().verified_stmt("SHOW TABLES");
3152+
snowflake().verified_stmt("SHOW TERSE TABLES");
31503153
snowflake().verified_stmt("SHOW TABLES IN ACCOUNT");
31513154
snowflake().verified_stmt("SHOW TABLES IN DATABASE");
31523155
snowflake().verified_stmt("SHOW TABLES IN DATABASE xyz");
@@ -3169,6 +3172,7 @@ fn test_parse_show_tables() {
31693172
#[test]
31703173
fn test_show_views() {
31713174
snowflake().verified_stmt("SHOW VIEWS");
3175+
snowflake().verified_stmt("SHOW TERSE VIEWS");
31723176
snowflake().verified_stmt("SHOW VIEWS IN ACCOUNT");
31733177
snowflake().verified_stmt("SHOW VIEWS IN DATABASE");
31743178
snowflake().verified_stmt("SHOW VIEWS IN DATABASE xyz");

0 commit comments

Comments
 (0)