github.com/cyverse/go-irodsclient@v0.13.2/irods/types/column.go (about)

     1  package types
     2  
     3  // ColumnType is a type of iRODS Column
     4  type ColumnType string
     5  
     6  const (
     7  	// ColumnTypeInteger is for integer column
     8  	ColumnTypeInteger ColumnType = "Integer"
     9  	// ColumnTypeString is for string column
    10  	ColumnTypeString ColumnType = "String"
    11  	// ColumnTypeDateTime is for datetime column
    12  	ColumnTypeDateTime ColumnType = "DateTime"
    13  )
    14  
    15  // IRODSColumn is a struct holding a column
    16  type IRODSColumn struct {
    17  	Type    ColumnType
    18  	ICatKey string
    19  	ICatID  int
    20  }