mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 00:22:29 +00:00
Fix warning "struct previously declared as class".
This commit is contained in:
parent
00ebd7f7b6
commit
f26e058f88
@ -24,7 +24,7 @@ using AccessRightsContextPtr = std::shared_ptr<const AccessRightsContext>;
|
|||||||
class AccessRightsContextFactory;
|
class AccessRightsContextFactory;
|
||||||
struct User;
|
struct User;
|
||||||
using UserPtr = std::shared_ptr<const User>;
|
using UserPtr = std::shared_ptr<const User>;
|
||||||
struct RoleContext;
|
class RoleContext;
|
||||||
using RoleContextPtr = std::shared_ptr<const RoleContext>;
|
using RoleContextPtr = std::shared_ptr<const RoleContext>;
|
||||||
class RoleContextFactory;
|
class RoleContextFactory;
|
||||||
class RowPolicyContext;
|
class RowPolicyContext;
|
||||||
|
@ -20,9 +20,9 @@ struct CurrentRolesInfo;
|
|||||||
using CurrentRolesInfoPtr = std::shared_ptr<const CurrentRolesInfo>;
|
using CurrentRolesInfoPtr = std::shared_ptr<const CurrentRolesInfo>;
|
||||||
class RoleContext;
|
class RoleContext;
|
||||||
using RoleContextPtr = std::shared_ptr<const RoleContext>;
|
using RoleContextPtr = std::shared_ptr<const RoleContext>;
|
||||||
struct RowPolicyContext;
|
class RowPolicyContext;
|
||||||
using RowPolicyContextPtr = std::shared_ptr<const RowPolicyContext>;
|
using RowPolicyContextPtr = std::shared_ptr<const RowPolicyContext>;
|
||||||
struct QuotaContext;
|
class QuotaContext;
|
||||||
using QuotaContextPtr = std::shared_ptr<const QuotaContext>;
|
using QuotaContextPtr = std::shared_ptr<const QuotaContext>;
|
||||||
struct Settings;
|
struct Settings;
|
||||||
class AccessControlManager;
|
class AccessControlManager;
|
||||||
|
@ -13,7 +13,7 @@ namespace DB
|
|||||||
{
|
{
|
||||||
struct Role;
|
struct Role;
|
||||||
using RolePtr = std::shared_ptr<const Role>;
|
using RolePtr = std::shared_ptr<const Role>;
|
||||||
class CurrentRolesInfo;
|
struct CurrentRolesInfo;
|
||||||
using CurrentRolesInfoPtr = std::shared_ptr<const CurrentRolesInfo>;
|
using CurrentRolesInfoPtr = std::shared_ptr<const CurrentRolesInfo>;
|
||||||
class AccessControlManager;
|
class AccessControlManager;
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
namespace DB
|
namespace DB
|
||||||
{
|
{
|
||||||
class ASTCreateUserQuery;
|
class ASTCreateUserQuery;
|
||||||
class GenericRoleSet;
|
struct GenericRoleSet;
|
||||||
struct User;
|
struct User;
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user