public void addMetadata() {
   addMetadata(
       datasetName, ColumnMetadata.named("dataset_name").ofType(12).withSize(255).notNull());
   addMetadata(key, ColumnMetadata.named("key_").ofType(12).withSize(255).notNull());
   addMetadata(
       languageTag, ColumnMetadata.named("language_tag").ofType(12).withSize(255).notNull());
 }
Ejemplo n.º 2
0
 public void addMetadata() {
   addMetadata(dateofbirth, ColumnMetadata.named("dateofbirth").ofType(91).withSize(13).notNull());
   addMetadata(firstnames, ColumnMetadata.named("firstnames").ofType(12).withSize(256).notNull());
   addMetadata(hash, ColumnMetadata.named("hash").ofType(12).withSize(64).notNull());
   addMetadata(id, ColumnMetadata.named("id").ofType(-5).withSize(19).notNull());
   addMetadata(lastlogin, ColumnMetadata.named("lastlogin").ofType(93).withSize(29).withDigits(6));
   addMetadata(lastname, ColumnMetadata.named("lastname").ofType(12).withSize(256).notNull());
   addMetadata(om, ColumnMetadata.named("om").ofType(-7).withSize(1).notNull());
   addMetadata(vrk, ColumnMetadata.named("vrk").ofType(-7).withSize(1).notNull());
 }
 public void addMetadata() {
   addMetadata(balance, ColumnMetadata.named("Balance").ofType(8).withSize(53));
   addMetadata(entityId, ColumnMetadata.named("EntityId").ofType(12).withSize(100));
   addMetadata(inboundAmount, ColumnMetadata.named("InboundAmount").ofType(8).withSize(53));
   addMetadata(inboundDegree, ColumnMetadata.named("InboundDegree").ofType(4).withSize(10));
   addMetadata(outboundAmount, ColumnMetadata.named("OutboundAmount").ofType(8).withSize(53));
   addMetadata(outboundDegree, ColumnMetadata.named("OutboundDegree").ofType(4).withSize(10));
   addMetadata(
       periodDate, ColumnMetadata.named("PeriodDate").ofType(93).withSize(23).withDigits(3));
 }
Ejemplo n.º 4
0
 public void addMetadata() {
   addMetadata(
       capacityType,
       ColumnMetadata.named("CAPACITY_TYPE")
           .withIndex(4)
           .ofType(Types.VARCHAR)
           .withSize(64)
           .notNull());
   addMetadata(
       facilityId,
       ColumnMetadata.named("FACILITY_ID")
           .withIndex(3)
           .ofType(Types.BIGINT)
           .withSize(19)
           .notNull());
   addMetadata(
       id, ColumnMetadata.named("ID").withIndex(1).ofType(Types.BIGINT).withSize(19).notNull());
   addMetadata(
       internalState,
       ColumnMetadata.named("INTERNAL_STATE")
           .withIndex(8)
           .ofType(Types.CLOB)
           .withSize(2147483647)
           .notNull());
   addMetadata(
       latestUtilization,
       ColumnMetadata.named("LATEST_UTILIZATION")
           .withIndex(6)
           .ofType(Types.TIMESTAMP)
           .withSize(23)
           .withDigits(10)
           .notNull());
   addMetadata(
       moreUtilizations,
       ColumnMetadata.named("MORE_UTILIZATIONS")
           .withIndex(7)
           .ofType(Types.BOOLEAN)
           .withSize(1)
           .notNull());
   addMetadata(
       type,
       ColumnMetadata.named("TYPE").withIndex(2).ofType(Types.VARCHAR).withSize(64).notNull());
   addMetadata(
       usage,
       ColumnMetadata.named("USAGE").withIndex(5).ofType(Types.VARCHAR).withSize(64).notNull());
 }
Ejemplo n.º 5
0
 public void addMetadata() {
   addMetadata(
       dbaname,
       ColumnMetadata.named("DBANAME").withIndex(1).ofType(Types.VARCHAR).withSize(255).notNull());
   addMetadata(
       sysBobjectid,
       ColumnMetadata.named("SYS_BOBJECTID")
           .withIndex(3)
           .ofType(Types.DECIMAL)
           .withSize(18)
           .notNull());
   addMetadata(
       sysCreatedtm,
       ColumnMetadata.named("SYS_CREATEDTM")
           .withIndex(11)
           .ofType(Types.TIMESTAMP)
           .withSize(11)
           .withDigits(6));
   addMetadata(
       sysCreateevent,
       ColumnMetadata.named("SYS_CREATEEVENT").withIndex(9).ofType(Types.VARCHAR).withSize(32));
   addMetadata(
       sysCuserid,
       ColumnMetadata.named("SYS_CUSERID").withIndex(12).ofType(Types.DECIMAL).withSize(18));
   addMetadata(
       sysDataexmversion,
       ColumnMetadata.named("SYS_DATAEXMVERSION").withIndex(7).ofType(Types.DECIMAL).withSize(18));
   addMetadata(
       sysDatedefpath,
       ColumnMetadata.named("SYS_DATEDEFPATH").withIndex(6).ofType(Types.VARCHAR).withSize(200));
   addMetadata(
       sysId,
       ColumnMetadata.named("SYS_ID").withIndex(2).ofType(Types.DECIMAL).withSize(7).notNull());
   addMetadata(
       sysModifydtm,
       ColumnMetadata.named("SYS_MODIFYDTM")
           .withIndex(13)
           .ofType(Types.TIMESTAMP)
           .withSize(11)
           .withDigits(6));
   addMetadata(
       sysMuserid,
       ColumnMetadata.named("SYS_MUSERID").withIndex(14).ofType(Types.DECIMAL).withSize(18));
   addMetadata(
       sysParentid,
       ColumnMetadata.named("SYS_PARENTID")
           .withIndex(4)
           .ofType(Types.DECIMAL)
           .withSize(18)
           .notNull());
   addMetadata(
       sysParenttablename,
       ColumnMetadata.named("SYS_PARENTTABLENAME")
           .withIndex(5)
           .ofType(Types.VARCHAR)
           .withSize(32)
           .notNull());
   addMetadata(
       sysSource,
       ColumnMetadata.named("SYS_SOURCE").withIndex(8).ofType(Types.DECIMAL).withSize(18));
   addMetadata(
       sysStatus,
       ColumnMetadata.named("SYS_STATUS").withIndex(10).ofType(Types.DECIMAL).withSize(18));
 }