Autocompletion support for users in client

This commit is contained in:
Azat Khuzhin 2020-06-08 01:58:23 +03:00
parent 1e1b30dc05
commit 998f35e803

View File

@ -116,6 +116,8 @@ void Suggest::loadImpl(Connection & connection, const ConnectionTimeouts & timeo
<< " UNION ALL "
"SELECT DISTINCT name FROM system.dictionaries LIMIT " << limit_str
<< " UNION ALL "
"SELECT DISTINCT name FROM system.users LIMIT " << limit_str
<< " UNION ALL "
"SELECT DISTINCT name FROM system.columns LIMIT " << limit_str;
}