mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-06 08:35:55 +00:00
added max slice to schema
This commit is contained in:
parent
e62bd5fad5
commit
9a506fa054
1 changed files with 3 additions and 2 deletions
5
db.go
5
db.go
|
|
@ -426,8 +426,9 @@ func (p dbSlice) Less(i, j int) bool { return p[i].Name() < p[j].Name() }
|
|||
|
||||
// DBInfo represents schema information for a database.
|
||||
type DBInfo struct {
|
||||
Name string `json:"name"`
|
||||
Frames []*FrameInfo `json:"frames"`
|
||||
Name string `json:"name"`
|
||||
Frames []*FrameInfo `json:"frames"`
|
||||
MaxSlice uint64
|
||||
}
|
||||
|
||||
type dbInfoSlice []*DBInfo
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue