-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
131 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
from sqlalchemy.dialects import registry as _registry | ||
|
||
from . import base | ||
from . import iris | ||
from .base import IRISDialect | ||
from .iris import IRISDialect_iris | ||
|
||
base.dialect = dialect = iris.dialect | ||
|
||
_registry.register("iris.iris", "sqlalchemy_iris.iris", "IRISDialect_iris") | ||
|
||
__all__ = [ | ||
IRISDialect, | ||
IRISDialect_iris, | ||
dialect, | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
from sqlalchemy.dialects import registry | ||
import pytest | ||
|
||
registry.register( | ||
"iris.iris", "sqlalchemy_iris", "IRISDialect" | ||
) | ||
registry.register("iris.iris", "sqlalchemy_iris.iris", "IRISDialect_iris") | ||
|
||
pytest.register_assert_rewrite("sqlalchemy.testing.assertions") | ||
|
||
from sqlalchemy.testing.plugin.pytestplugin import * | ||
from sqlalchemy.testing.plugin.pytestplugin import * # noqa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters