-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Add 359 release notes #8420
Add 359 release notes #8420
Conversation
|
||
## Security | ||
|
||
* Fix user mapping for password authentication. Formerly, user mapping for password authentication |
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.
We could drop the whole sentence starting with "Formerly.." imho
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.
I would like the sentence to describe what was fixed, though. Without the second part, it's too vague. Maybe something like:
Fix spurious impersonation check when applying user mapping for password authentication.
* Add support for granting `UPDATE` privileges when `hive.security=sql-standard` is used. ({issue}`8279`) | ||
* Add support for inserting data into CSV and TEXT tables with skip_header_line_count table property set to 1. | ||
The same applies to creating tables with data using `CREATE TABLE ... AS SELECT` syntax. ({issue}`8390`) | ||
* Add validation so creating CSV and TEXT tables with data is not allowed if `skip_header_line_count` is set to a value |
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.
looking at the PR tests (1) should we also include skip_footer_line_count
(2) the condition should be > 0?
We can also change the statement to: Disallow creating CSV and TEXT tables with data if ....
cc @losipiuk
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.
Looks good % RNs from Dain and David.
Closes #8170