v.21.9New Feature
Add default_database column to system.users
Why it matters
This feature provides visibility into the default database configured for each user, allowing administrators to easily query and manage user default database settings directly from the system tables.How to use it
Query thesystem.users table to see the default_database column alongside other user details. For example:SELECT name, default_database FROM system.users;