/** * This class is generated by jOOQ */ package org.jooq.util.mysql.information_schema.tables; /** * This class is generated by jOOQ. */ @javax.annotation.Generated(value = { "http://www.jooq.org", "3.5.0" }, comments = "This class is generated by jOOQ") @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class Statistics extends org.jooq.impl.TableImpl<org.jooq.Record> { private static final long serialVersionUID = 357430055; /** * The singleton instance of <code>information_schema.STATISTICS</code> */ public static final org.jooq.util.mysql.information_schema.tables.Statistics STATISTICS = new org.jooq.util.mysql.information_schema.tables.Statistics(); /** * The class holding records for this type */ @Override public java.lang.Class<org.jooq.Record> getRecordType() { return org.jooq.Record.class; } /** * The column <code>information_schema.STATISTICS.TABLE_CATALOG</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_CATALOG = createField("TABLE_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512).nullable(false).defaulted(true), STATISTICS, ""); /** * The column <code>information_schema.STATISTICS.TABLE_SCHEMA</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_SCHEMA = createField("TABLE_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), STATISTICS, ""); /** * The column <code>information_schema.STATISTICS.TABLE_NAME</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_NAME = createField("TABLE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), STATISTICS, ""); /** * The column <code>information_schema.STATISTICS.NON_UNIQUE</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.Long> NON_UNIQUE = createField("NON_UNIQUE", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), STATISTICS, ""); /** * The column <code>information_schema.STATISTICS.INDEX_SCHEMA</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> INDEX_SCHEMA = createField("INDEX_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), STATISTICS, ""); /** * The column <code>information_schema.STATISTICS.INDEX_NAME</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> INDEX_NAME = createField("INDEX_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), STATISTICS, ""); /** * The column <code>information_schema.STATISTICS.SEQ_IN_INDEX</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.Long> SEQ_IN_INDEX = createField("SEQ_IN_INDEX", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), STATISTICS, ""); /** * The column <code>information_schema.STATISTICS.COLUMN_NAME</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> COLUMN_NAME = createField("COLUMN_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), STATISTICS, ""); /** * The column <code>information_schema.STATISTICS.COLLATION</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> COLLATION = createField("COLLATION", org.jooq.impl.SQLDataType.VARCHAR.length(1), STATISTICS, ""); /** * The column <code>information_schema.STATISTICS.CARDINALITY</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.Long> CARDINALITY = createField("CARDINALITY", org.jooq.impl.SQLDataType.BIGINT, STATISTICS, ""); /** * The column <code>information_schema.STATISTICS.SUB_PART</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.Long> SUB_PART = createField("SUB_PART", org.jooq.impl.SQLDataType.BIGINT, STATISTICS, ""); /** * The column <code>information_schema.STATISTICS.PACKED</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> PACKED = createField("PACKED", org.jooq.impl.SQLDataType.VARCHAR.length(10), STATISTICS, ""); /** * The column <code>information_schema.STATISTICS.NULLABLE</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> NULLABLE = createField("NULLABLE", org.jooq.impl.SQLDataType.VARCHAR.length(3).nullable(false).defaulted(true), STATISTICS, ""); /** * The column <code>information_schema.STATISTICS.INDEX_TYPE</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> INDEX_TYPE = createField("INDEX_TYPE", org.jooq.impl.SQLDataType.VARCHAR.length(16).nullable(false).defaulted(true), STATISTICS, ""); /** * The column <code>information_schema.STATISTICS.COMMENT</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> COMMENT = createField("COMMENT", org.jooq.impl.SQLDataType.VARCHAR.length(16), STATISTICS, ""); /** * The column <code>information_schema.STATISTICS.INDEX_COMMENT</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> INDEX_COMMENT = createField("INDEX_COMMENT", org.jooq.impl.SQLDataType.VARCHAR.length(1024).nullable(false).defaulted(true), STATISTICS, ""); /** * No further instances allowed */ private Statistics() { this("STATISTICS", null); } private Statistics(java.lang.String alias, org.jooq.Table<org.jooq.Record> aliased) { this(alias, aliased, null); } private Statistics(java.lang.String alias, org.jooq.Table<org.jooq.Record> aliased, org.jooq.Field<?>[] parameters) { super(alias, org.jooq.util.mysql.information_schema.InformationSchema.INFORMATION_SCHEMA, aliased, parameters, ""); } }