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
Since this command fetches all databases and tables, it can be slow even if a database name is given.
The text was updated successfully, but these errors were encountered:
Correction - the given argument is NOT a database name, and it's a regexp for table name:
%td_tables [table_pattern]
The code searches all table names that match to the pattern across all DBs.
If we need to improve its efficiency by focusing on a specific DB name, it should be a new function as:
%td_tables [db_name] [pattern]
Sorry, something went wrong.
No branches or pull requests
Since this command fetches all databases and tables, it can be slow even if a database name is given.
The text was updated successfully, but these errors were encountered: