-
Notifications
You must be signed in to change notification settings - Fork 14.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve compatibility with mssql #9973
Merged
Merged
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
e3cdfbc
add breeze config for mssql, fix db init on mssql
aneesh-joseph f2b36b3
fix more incompatibilities
aneesh-joseph 66f69a9
fix failing mssql tests
aneesh-joseph 4f0775d
Update airflow/models/dag.py
aneesh-joseph 8054f09
use special query for MSSQL only
aneesh-joseph c639eb8
fix count tests
aneesh-joseph 6702555
fix style checks
aneesh-joseph eee6c4b
Update airflow/models/dagcode.py
aneesh-joseph 9825282
make xcom fields non-nullable
aneesh-joseph d8901da
exclude MSSQL default tables
aneesh-joseph cf76124
make mssql tables in sync with SQLA models
aneesh-joseph 7f2ccd0
fix www tests
aneesh-joseph 3d3cb00
relax constraints on dag_run to fix tests
aneesh-joseph 44d207d
base the migration on top of latest master
aneesh-joseph d1679a4
incorporate review suggestions
aneesh-joseph 50ac279
fix pylint errors
aneesh-joseph f97e113
move migration on top of latest master
aneesh-joseph e2bc6a1
fix pylint errors
aneesh-joseph 78b9666
add mssql to CI
aneesh-joseph 9fd1bee
fix port conflict
aneesh-joseph b941b20
simplify db based count check conditionals
aneesh-joseph 88a4bf9
fix pylint errors
aneesh-joseph ac3cefc
fix rebase and mssql tests
aneesh-joseph b16933d
fix sqlite test
aneesh-joseph a9e1a04
combine mssql specific migrations
aneesh-joseph 823cd1b
revert offset changes
aneesh-joseph 4af7bbe
fix smart sensor for mssql
aneesh-joseph 39223e4
fix mssql CI trigger
aneesh-joseph 23c3566
fixup! fix smart sensor for mssql
potiuk f00e4d6
add experimental MSSQL support details into docs
aneesh-joseph 6b90ccb
incorporate review comments
aneesh-joseph ff76c41
incorporate review comments
aneesh-joseph cfb2194
Apply suggestions from code review
kaxil 51b33de
Apply suggestions from code review
kaxil cfb162e
fixup method names
aneesh-joseph f12e007
add back poituk's fix which I removed in error with a force push
aneesh-joseph File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not use a join here or CTE rather than making multiple queries?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good idea. Feel free to give it a shot if you like :)