Details
-
Task
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Fixed
-
None
-
None
Description
Option `infileStreamFactory` permit having a callback for LOAD LOCAL commands.
In other mysql connectors, this callback permits 2 behaviors :
- validate file name
- permit to return a stream, so this can permit not using local file
MariaDB connector already validate file name, but this will be implemented for compatibility
Attachments
Activity
Field | Original Value | New Value |
---|---|---|
issue.field.resolutiondate | 2023-09-07 14:33:32.0 | 2023-09-07 14:33:32.144 |
Component/s | compatibility [ 14522 ] | |
Resolution | Fixed [ 1 ] | |
Status | Open [ 1 ] | Closed [ 6 ] |
example of use:
function isWithin(outer, inner) {
}
infileStreamFactory: (filePath) => {
}
}
});