diff --git a/src/databricks/sqlalchemy/test/test_suite.py b/src/databricks/sqlalchemy/test/test_suite.py index a8d69e62..886daa2e 100644 --- a/src/databricks/sqlalchemy/test/test_suite.py +++ b/src/databricks/sqlalchemy/test/test_suite.py @@ -344,6 +344,18 @@ def test_reflect_covering_index(self): def test_reflect_expression_based_indexes(self): pass + @pytest.mark.skip(reason="Databricks doesn't enforce String or VARCHAR length limitations.") + def test_varchar_reflection(self): + """Even if a user specifies String(52), Databricks won't enforce that limit. + """ + pass + + @pytest.mark.skip(reason="This dialect doesn't implement foreign key options checks.") + def test_get_foreign_key_options(self): + """It's not clear from the test code what the expected output is here. Further research required. + """ + pass + class DifficultParametersTest(DifficultParametersTest): @pytest.mark.skip(reason="Error during execution. Requires investigation.")