Search in sources :

Example 1 with SystablesTableManager

use of herddb.core.system.SystablesTableManager in project herddb by diennea.

the class TableSpaceManager method bootSystemTables.

private void bootSystemTables() {
    if (virtual) {
        registerSystemTableManager(new SysconfigTableManager(this));
        registerSystemTableManager(new SysclientsTableManager(this));
    } else {
        registerSystemTableManager(new SystablesTableManager(this));
        registerSystemTableManager(new SystablestatsTableManager(this));
        registerSystemTableManager(new SysindexesTableManager(this));
        registerSystemTableManager(new SyscolumnsTableManager(this));
        registerSystemTableManager(new SystransactionsTableManager(this));
    }
    registerSystemTableManager(new SystablespacesTableManager(this));
    registerSystemTableManager(new SystablespacereplicastateTableManager(this));
    registerSystemTableManager(new SysnodesTableManager(this));
}
Also used : SyscolumnsTableManager(herddb.core.system.SyscolumnsTableManager) SysindexesTableManager(herddb.core.system.SysindexesTableManager) SystablesTableManager(herddb.core.system.SystablesTableManager) SysclientsTableManager(herddb.core.system.SysclientsTableManager) SystablespacesTableManager(herddb.core.system.SystablespacesTableManager) SystablestatsTableManager(herddb.core.system.SystablestatsTableManager) SystablespacereplicastateTableManager(herddb.core.system.SystablespacereplicastateTableManager) SysnodesTableManager(herddb.core.system.SysnodesTableManager) SysconfigTableManager(herddb.core.system.SysconfigTableManager) SystransactionsTableManager(herddb.core.system.SystransactionsTableManager)

Aggregations

SysclientsTableManager (herddb.core.system.SysclientsTableManager)1 SyscolumnsTableManager (herddb.core.system.SyscolumnsTableManager)1 SysconfigTableManager (herddb.core.system.SysconfigTableManager)1 SysindexesTableManager (herddb.core.system.SysindexesTableManager)1 SysnodesTableManager (herddb.core.system.SysnodesTableManager)1 SystablesTableManager (herddb.core.system.SystablesTableManager)1 SystablespacereplicastateTableManager (herddb.core.system.SystablespacereplicastateTableManager)1 SystablespacesTableManager (herddb.core.system.SystablespacesTableManager)1 SystablestatsTableManager (herddb.core.system.SystablestatsTableManager)1 SystransactionsTableManager (herddb.core.system.SystransactionsTableManager)1