Skip to content

Commit

Permalink
Merge branch 'main' into use-shared-empty-flag-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare authored Jul 3, 2024
2 parents 3ffc143 + ce596f2 commit b1e5589
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions tests/functional/adapter/dbt_show/test_dbt_show.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
from dbt.tests.adapter.dbt_show.test_dbt_show import BaseShowSqlHeader, BaseShowLimit
from dbt.tests.adapter.dbt_show.test_dbt_show import (
BaseShowSqlHeader,
BaseShowLimit,
BaseShowDoesNotHandleDoubleLimit,
)


class TestBigQueryShowLimit(BaseShowLimit):
class TestSnowflakeShowLimit(BaseShowLimit):
pass


class TestBigQueryShowSqlHeader(BaseShowSqlHeader):
class TestSnowflakeShowSqlHeader(BaseShowSqlHeader):
pass


class TestSnowflakeShowDoesNotHandleDoubleLimit(BaseShowDoesNotHandleDoubleLimit):
DATABASE_ERROR_MESSAGE = "unexpected 'limit'"

0 comments on commit b1e5589

Please sign in to comment.