Skip to content

Commit

Permalink
test-snowflake-failure
Browse files Browse the repository at this point in the history
  • Loading branch information
Lee-W committed Oct 4, 2023
1 parent 41e9050 commit 0ad7242
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions python-sdk/tests_integration/databases/test_snowflake.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@
import pandas as pd
import pytest
import sqlalchemy
from sqlalchemy.exc import ProgrammingError

from astro.constants import Database, FileLocation, FileType
from astro.databases import create_database
from astro.databases.snowflake import (
ProgrammingError as SnowflakeProgrammingError,
SnowflakeDatabase,
SnowflakeStage,
)
from astro.databases.snowflake import ProgrammingError as SnowflakeProgrammingError
from astro.databases.snowflake import SnowflakeDatabase, SnowflakeStage
from astro.exceptions import DatabaseCustomError, NonExistentTableException
from astro.files import File
from astro.options import SnowflakeLoadOptions
from astro.settings import SCHEMA, SNOWFLAKE_STORAGE_INTEGRATION_AMAZON, SNOWFLAKE_STORAGE_INTEGRATION_GOOGLE
from astro.settings import (
SCHEMA,
SNOWFLAKE_STORAGE_INTEGRATION_AMAZON,
SNOWFLAKE_STORAGE_INTEGRATION_GOOGLE,
)
from astro.table import Metadata, Table
from astro.utils.load import copy_remote_file_to_local
from sqlalchemy.exc import ProgrammingError

from ..sql.operators import utils as test_utils

Expand Down Expand Up @@ -87,7 +87,7 @@ def test_snowflake_create_table_with_columns(database_table_fixture):
"NUMBER(38,0)",
"COLUMN",
"N",
"IDENTITY START 1 INCREMENT 1",
"IDENTITY START 1 INCREMENT 1 ORDER",
"Y",
"N",
None,
Expand Down

0 comments on commit 0ad7242

Please sign in to comment.