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
PostgresSQLSchemaManager::listTables() returns no tables for a database connection that does have tables.
PostgresSQLSchemaManager::listTables()
Is this related to #5268 and other work on the introspection methods?
An empty list of tables is returned.
On an existing Postgres database that has at least one table:
$schemaManager = PostgresSQLSchemaManager::createSchema(); $schemaManager->listTables();
All existing tables should be returned.
The text was updated successfully, but these errors were encountered:
Same issue I think #5573
Sorry, something went wrong.
It seems to be caused by the unexpected use of current_schemas(false) to filter tables as mentionned in #5573
current_schemas(false)
Yep, same issue (with 4 mins difference 😄), so closing this as a duplicate of #5573.
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
No branches or pull requests
Bug Report
Summary
PostgresSQLSchemaManager::listTables()
returns no tables for a database connection that does have tables.Is this related to #5268 and other work on the introspection methods?
Current behaviour
An empty list of tables is returned.
How to reproduce
On an existing Postgres database that has at least one table:
Expected behaviour
All existing tables should be returned.
The text was updated successfully, but these errors were encountered: