github.com/voedger/voedger@v0.0.0-20240520144910-273e84102129/pkg/istructsmem/internal/descr/interface_view.go (about)

     1  /*
     2   * Copyright (c) 2021-present Sigma-Soft, Ltd.
     3   * @author: Nikolay Nikitin
     4   */
     5  
     6  package descr
     7  
     8  type View struct {
     9  	Type
    10  	Key   Key
    11  	Value []*Field `json:",omitempty"`
    12  }
    13  
    14  type Key struct {
    15  	Partition []*Field
    16  	ClustCols []*Field
    17  }