-
Notifications
You must be signed in to change notification settings - Fork 28.4k
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
[SPARK-19667][SQL]create table with hiveenabled in default database use warehouse path instead of the location of default database #17001
Closed
Closed
Changes from 5 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
aebdfc6
[SPARK-19667][SQL]create table with hiveenabled in default database u…
windpiger 825c0ad
rename a conf name
windpiger a2c9168
fix test faile
windpiger bacd528
process default database location when create/get database from metas…
windpiger 3f6e061
remove an redundant line
windpiger 96dcc7d
fix empty string location of database
windpiger f329387
modify the test case
windpiger 83dba73
Merge branch 'master' into defaultDBPathInHive
windpiger 58a0020
fix test failed
windpiger 1dce2d7
add log to find out why jenkins failed
windpiger 12f81d3
add scalastyle:off for println
windpiger 56e83d5
fix test faile
windpiger 901bb1c
make warehouse path qualified for default database
windpiger 99d9746
remove a string s
windpiger db555e3
modify a comment
windpiger d327994
fix test failed
windpiger 73c8802
move to sessioncatalog
windpiger 747b31a
remove import
windpiger 8f8063f
remove an import
windpiger 4dc11c1
modify some codestyle and some comment
windpiger 9c0773b
Merge branch 'defaultDBPathInHive' of github.com:windpiger/spark into…
windpiger 80b8133
mv defaultdb path logic to ExternalCatalog
windpiger 41ea115
modify a comment
windpiger 13245e4
modify a comment
windpiger 096ae63
add final def
windpiger badd61b
modify some code
windpiger 35d2b59
add lazy flag
windpiger e3a467e
modify test case
windpiger ae9938a
modify test case
windpiger 7739ccd
mv getdatabase
windpiger f93f5d3
merge with master
windpiger 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
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.
If it is empty, metastore will set it for us, right?
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.
sorry, actually it will throw an exception, my local default has created, so it does not hit the exception, I will just replace the default database location when reload from metastore, drop the logic when create database set location to empty string.