-
Notifications
You must be signed in to change notification settings - Fork 686
Open
Labels
bugIncorrect behavior inside of ibisIncorrect behavior inside of ibis
Description
What happened?
The ibis.impala.connect() function accepts 'user' as parameter name, but the documentation shows 'username'. Using 'username' fails to authenticate, while 'user' works correctly. This is inconsistent with other ibis backends that use 'username'.
This fails or doesn't authenticate properly:
client = ibis.impala.connect(
host='your-host',
port=443,
username='user123', # ❌ Doesn't work
password='pass',
)
This works:
client = ibis.impala.connect(
host='your-host',
port=443,
user='user123', # ✅ Works
password='pass',
)
What version of ibis are you using?
11.0.0
What backend(s) are you using, if any?
Impala
Relevant log output
username unexpectedCode of Conduct
- I agree to follow this project's Code of Conduct
Metadata
Metadata
Assignees
Labels
bugIncorrect behavior inside of ibisIncorrect behavior inside of ibis
Type
Projects
Status
backlog