How can I set the "--local-infile[={0|1}]" option for a mysqlx connection?
My python code looks the following:
import mysqlx
# Connect to server on localhost
session = mysqlx.get_session({
'host': 'localhost',
'port': 33060,
'user': 'root',
'password': '12345678',
})