Skip to content

Commit

Permalink
Merge branch 'master' into feature/attribute-caching-passive
Browse files Browse the repository at this point in the history
  • Loading branch information
semancik committed Oct 26, 2016
2 parents ce10028 + 834f8a6 commit 6f859dd
Show file tree
Hide file tree
Showing 22 changed files with 66 additions and 904 deletions.
3 changes: 3 additions & 0 deletions config/sql/_all/h2-3.4.1-all.sql
Expand Up @@ -390,6 +390,7 @@ CREATE TABLE m_object (
creatorRef_type INTEGER,
datesCount SMALLINT,
fullObject BLOB,
lifecycleState VARCHAR(255),
longsCount SMALLINT,
modifierRef_relation VARCHAR(157),
modifierRef_targetOid VARCHAR(36),
Expand Down Expand Up @@ -805,6 +806,8 @@ CREATE INDEX iObjectTypeClass ON m_object (objectTypeClass);

CREATE INDEX iObjectCreateTimestamp ON m_object (createTimestamp);

CREATE INDEX iObjectLifecycleState ON m_object (lifecycleState);

CREATE INDEX iExtensionBoolean ON m_object_ext_boolean (ownerType, eName, booleanValue);

CREATE INDEX iExtensionBooleanDef ON m_object_ext_boolean (owner_oid, ownerType);
Expand Down
3 changes: 3 additions & 0 deletions config/sql/_all/mysql-3.4.1-all.sql
Expand Up @@ -480,6 +480,7 @@ CREATE TABLE m_object (
creatorRef_type INTEGER,
datesCount SMALLINT,
fullObject LONGBLOB,
lifecycleState VARCHAR(255),
longsCount SMALLINT,
modifierRef_relation VARCHAR(157),
modifierRef_targetOid VARCHAR(36),
Expand Down Expand Up @@ -985,6 +986,8 @@ CREATE INDEX iObjectTypeClass ON m_object (objectTypeClass);

CREATE INDEX iObjectCreateTimestamp ON m_object (createTimestamp);

CREATE INDEX iObjectLifecycleState ON m_object (lifecycleState);

CREATE INDEX iExtensionBoolean ON m_object_ext_boolean (ownerType, eName, booleanValue);

CREATE INDEX iExtensionBooleanDef ON m_object_ext_boolean (owner_oid, ownerType);
Expand Down
3 changes: 3 additions & 0 deletions config/sql/_all/oracle-3.4.1-all.sql
Expand Up @@ -389,6 +389,7 @@ CREATE TABLE m_object (
creatorRef_type NUMBER(10, 0),
datesCount NUMBER(5, 0),
fullObject BLOB,
lifecycleState VARCHAR2(255 CHAR),
longsCount NUMBER(5, 0),
modifierRef_relation VARCHAR2(157 CHAR),
modifierRef_targetOid VARCHAR2(36 CHAR),
Expand Down Expand Up @@ -811,6 +812,8 @@ CREATE INDEX iObjectTypeClass ON m_object (objectTypeClass) INITRANS 30;

CREATE INDEX iObjectCreateTimestamp ON m_object (createTimestamp) INITRANS 30;

CREATE INDEX iObjectLifecycleState ON m_object (lifecycleState) INITRANS 30;

CREATE INDEX iExtensionBoolean ON m_object_ext_boolean (ownerType, eName, booleanValue) INITRANS 30;

CREATE INDEX iExtensionBooleanDef ON m_object_ext_boolean (owner_oid, ownerType) INITRANS 30;
Expand Down
3 changes: 3 additions & 0 deletions config/sql/_all/postgresql-3.4.1-all.sql
Expand Up @@ -386,6 +386,7 @@ CREATE TABLE m_object (
creatorRef_type INT4,
datesCount INT2,
fullObject BYTEA,
lifecycleState VARCHAR(255),
longsCount INT2,
modifierRef_relation VARCHAR(157),
modifierRef_targetOid VARCHAR(36),
Expand Down Expand Up @@ -801,6 +802,8 @@ CREATE INDEX iObjectTypeClass ON m_object (objectTypeClass);

CREATE INDEX iObjectCreateTimestamp ON m_object (createTimestamp);

CREATE INDEX iObjectLifecycleState ON m_object (lifecycleState);

CREATE INDEX iExtensionBoolean ON m_object_ext_boolean (ownerType, eName, booleanValue);

CREATE INDEX iExtensionBooleanDef ON m_object_ext_boolean (owner_oid, ownerType);
Expand Down
3 changes: 3 additions & 0 deletions config/sql/_all/sqlserver-3.4.1-all.sql
Expand Up @@ -386,6 +386,7 @@ CREATE TABLE m_object (
creatorRef_type INT,
datesCount SMALLINT,
fullObject VARBINARY(MAX),
lifecycleState NVARCHAR(255) COLLATE database_default,
longsCount SMALLINT,
modifierRef_relation NVARCHAR(157) COLLATE database_default,
modifierRef_targetOid NVARCHAR(36) COLLATE database_default,
Expand Down Expand Up @@ -801,6 +802,8 @@ CREATE INDEX iObjectTypeClass ON m_object (objectTypeClass);

CREATE INDEX iObjectCreateTimestamp ON m_object (createTimestamp);

CREATE INDEX iObjectLifecycleState ON m_object (lifecycleState);

CREATE INDEX iExtensionBoolean ON m_object_ext_boolean (ownerType, eName, booleanValue);

CREATE INDEX iExtensionBooleanDef ON m_object_ext_boolean (owner_oid, ownerType);
Expand Down
173 changes: 0 additions & 173 deletions config/sql/midpoint/3.4.1/h2/h2-upgrade-3.3-3.4.sql

This file was deleted.

0 comments on commit 6f859dd

Please sign in to comment.