We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is your feature request related to a problem? Please describe:
Describe the feature you'd like:
support FILE privilege in TiDB like MySQL, so users can control file related operations by users to reduce secure risks
Describe alternatives you've considered:
Teachability, Documentation, Adoption, Migration Strategy:
The text was updated successfully, but these errors were encountered:
This has already been added for SELECT INTO OUTFILE in #19553
SELECT INTO OUTFILE
It is not applicable for the two remaining cases:
LOAD DATA does not support the local option:
LOAD DATA
mysql> LOAD DATA INFILE '/tmp/t.txt' INTO table test.t1; ERROR 1105 (HY000): Load Data: don't support load data without local field
The function LOAD_FILE() has not been added, see #8436
LOAD_FILE()
mysql> SELECT LOAD_FILE('/tmp/t.txt'); ERROR 1305 (42000): FUNCTION load_file does not exist
As such, I am going to go ahead and close this issue.
Sorry, something went wrong.
morgo
No branches or pull requests
Feature Request
Is your feature request related to a problem? Please describe:
Describe the feature you'd like:
support FILE privilege in TiDB like MySQL, so users can control file related operations by users to reduce secure risks
Describe alternatives you've considered:
Teachability, Documentation, Adoption, Migration Strategy:
The text was updated successfully, but these errors were encountered: