This calculates the summary information of data in h3 nodes and puts it in the database for fast lookup.
142 lines
2.9 KiB
Go
142 lines
2.9 KiB
Go
// Code generated by BobGen psql v0.41.1. DO NOT EDIT.
|
|
// This file is meant to be re-generated in place and/or deleted at any time.
|
|
|
|
package dbinfo
|
|
|
|
var RasterOverviews = Table[
|
|
rasterOverviewColumns,
|
|
rasterOverviewIndexes,
|
|
rasterOverviewForeignKeys,
|
|
rasterOverviewUniques,
|
|
rasterOverviewChecks,
|
|
]{
|
|
Schema: "",
|
|
Name: "raster_overviews",
|
|
Columns: rasterOverviewColumns{
|
|
OTableCatalog: column{
|
|
Name: "o_table_catalog",
|
|
DBType: "name",
|
|
Default: "NULL",
|
|
Comment: "",
|
|
Nullable: true,
|
|
Generated: false,
|
|
AutoIncr: false,
|
|
},
|
|
OTableSchema: column{
|
|
Name: "o_table_schema",
|
|
DBType: "name",
|
|
Default: "NULL",
|
|
Comment: "",
|
|
Nullable: true,
|
|
Generated: false,
|
|
AutoIncr: false,
|
|
},
|
|
OTableName: column{
|
|
Name: "o_table_name",
|
|
DBType: "name",
|
|
Default: "NULL",
|
|
Comment: "",
|
|
Nullable: true,
|
|
Generated: false,
|
|
AutoIncr: false,
|
|
},
|
|
ORasterColumn: column{
|
|
Name: "o_raster_column",
|
|
DBType: "name",
|
|
Default: "NULL",
|
|
Comment: "",
|
|
Nullable: true,
|
|
Generated: false,
|
|
AutoIncr: false,
|
|
},
|
|
RTableCatalog: column{
|
|
Name: "r_table_catalog",
|
|
DBType: "name",
|
|
Default: "NULL",
|
|
Comment: "",
|
|
Nullable: true,
|
|
Generated: false,
|
|
AutoIncr: false,
|
|
},
|
|
RTableSchema: column{
|
|
Name: "r_table_schema",
|
|
DBType: "name",
|
|
Default: "NULL",
|
|
Comment: "",
|
|
Nullable: true,
|
|
Generated: false,
|
|
AutoIncr: false,
|
|
},
|
|
RTableName: column{
|
|
Name: "r_table_name",
|
|
DBType: "name",
|
|
Default: "NULL",
|
|
Comment: "",
|
|
Nullable: true,
|
|
Generated: false,
|
|
AutoIncr: false,
|
|
},
|
|
RRasterColumn: column{
|
|
Name: "r_raster_column",
|
|
DBType: "name",
|
|
Default: "NULL",
|
|
Comment: "",
|
|
Nullable: true,
|
|
Generated: false,
|
|
AutoIncr: false,
|
|
},
|
|
OverviewFactor: column{
|
|
Name: "overview_factor",
|
|
DBType: "integer",
|
|
Default: "NULL",
|
|
Comment: "",
|
|
Nullable: true,
|
|
Generated: false,
|
|
AutoIncr: false,
|
|
},
|
|
},
|
|
|
|
Comment: "",
|
|
}
|
|
|
|
type rasterOverviewColumns struct {
|
|
OTableCatalog column
|
|
OTableSchema column
|
|
OTableName column
|
|
ORasterColumn column
|
|
RTableCatalog column
|
|
RTableSchema column
|
|
RTableName column
|
|
RRasterColumn column
|
|
OverviewFactor column
|
|
}
|
|
|
|
func (c rasterOverviewColumns) AsSlice() []column {
|
|
return []column{
|
|
c.OTableCatalog, c.OTableSchema, c.OTableName, c.ORasterColumn, c.RTableCatalog, c.RTableSchema, c.RTableName, c.RRasterColumn, c.OverviewFactor,
|
|
}
|
|
}
|
|
|
|
type rasterOverviewIndexes struct{}
|
|
|
|
func (i rasterOverviewIndexes) AsSlice() []index {
|
|
return []index{}
|
|
}
|
|
|
|
type rasterOverviewForeignKeys struct{}
|
|
|
|
func (f rasterOverviewForeignKeys) AsSlice() []foreignKey {
|
|
return []foreignKey{}
|
|
}
|
|
|
|
type rasterOverviewUniques struct{}
|
|
|
|
func (u rasterOverviewUniques) AsSlice() []constraint {
|
|
return []constraint{}
|
|
}
|
|
|
|
type rasterOverviewChecks struct{}
|
|
|
|
func (c rasterOverviewChecks) AsSlice() []check {
|
|
return []check{}
|
|
}
|