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
Describe the bug Error encountered while using
Environment
Reproduction Steps Steps to reproduce the behavior: SELECT documentdb_api.create_collection('Documentdbdatabase','patient'); SELECT * FROM documentdb_api.create_indexes_background('Documentdbdatabase', '{ "createIndexes": "patient", "indexes": [{ "key": {"age": 1},"name": "id_age"}]}'); CALL documentdb_api.drop_indexes('Documentdbdatabase', '{"dropIndexes": "patient", "index":"idx_age"}');
SELECT documentdb_api.create_collection('Documentdbdatabase','patient');
SELECT * FROM documentdb_api.create_indexes_background('Documentdbdatabase', '{ "createIndexes": "patient", "indexes": [{ "key": {"age": 1},"name": "id_age"}]}');
CALL documentdb_api.drop_indexes('Documentdbdatabase', '{"dropIndexes": "patient", "index":"idx_age"}');
Expected behavior
** Actual behavior **
-- ERROR: fe_sendauth: no password supplied -- CONTEXT: while executing command over libpq connection
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
The drop_indexes seems to have a typo, the actual name of the index that is created above it is id_age, so drop_indexes would fail.
drop_indexes
id_age
What is the graphlookup or drop collection query that fails with the above error?
Sorry, something went wrong.
The drop_indexes seems to have a typo, the actual name of the index that is created above it is id_age, so drop_indexes would fail. What is the graphlookup or drop collection query that fails with the above error?
Tagging @patty-chow for her awareness
diipak-bisht
No branches or pull requests
Describe the bug
Error encountered while using
Environment
Reproduction Steps
Steps to reproduce the behavior:
SELECT documentdb_api.create_collection('Documentdbdatabase','patient');
SELECT * FROM documentdb_api.create_indexes_background('Documentdbdatabase', '{ "createIndexes": "patient", "indexes": [{ "key": {"age": 1},"name": "id_age"}]}');
CALL documentdb_api.drop_indexes('Documentdbdatabase', '{"dropIndexes": "patient", "index":"idx_age"}');
Expected behavior
** Actual behavior **
-- ERROR: fe_sendauth: no password supplied
-- CONTEXT: while executing command over libpq connection
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: