mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-07 17:15:56 +00:00
added max slice to schema
This commit is contained in:
parent
d61e8e14a4
commit
a02716dadb
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