-
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-44860][SQL] Add SESSION_USER function #42549
Closed
Closed
Changes from 9 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
7474177
[SPARK-44860] Add SESSION_USER function
vitaliili-db e7ae20e
change version
vitaliili-db 5a9469a
remove from functions
vitaliili-db bac7824
remove function
vitaliili-db 4366570
convert to alias
vitaliili-db a7cbc32
Merge branch 'master' of https://github.com/apache/spark into session…
vitaliili-db a5fb8ae
diff
vitaliili-db 0e37ddc
remove broken import
vitaliili-db 0aca570
revert doc
vitaliili-db 917d27b
connect golden files
vitaliili-db 9de0157
Address comments
vitaliili-db 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
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 |
---|---|---|
|
@@ -48,15 +48,16 @@ class MiscFunctionsSuite extends QueryTest with SharedSparkSession { | |
checkAnswer(df.selectExpr("version()"), df.select(version())) | ||
} | ||
|
||
test("SPARK-21957: get current_user in normal spark apps") { | ||
test("SPARK-21957, SPARK-44860: get current_user, session_user in normal spark apps") { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we also update There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
val user = spark.sparkContext.sparkUser | ||
withSQLConf(SQLConf.ANSI_ENABLED.key -> "false") { | ||
val df = sql("select current_user(), current_user, user, user()") | ||
checkAnswer(df, Row(user, user, user, user)) | ||
val df = | ||
sql("select current_user(), current_user, user, user(), session_user(), session_user") | ||
checkAnswer(df, Row(user, user, user, user, user, user)) | ||
} | ||
withSQLConf(SQLConf.ANSI_ENABLED.key -> "true", | ||
SQLConf.ENFORCE_RESERVED_KEYWORDS.key -> "true") { | ||
Seq("user", "current_user").foreach { func => | ||
Seq("user", "current_user", "session_user").foreach { func => | ||
checkAnswer(sql(s"select $func"), Row(user)) | ||
checkError( | ||
exception = intercept[ParseException](sql(s"select $func()")), | ||
|
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.
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.
Done