IsComputed returns if the ColumnTableDef is a computed column.
()
| 381 | |
| 382 | // IsComputed returns if the ColumnTableDef is a computed column. |
| 383 | func (node *ColumnTableDef) IsComputed() bool { |
| 384 | return node.Computed.Computed |
| 385 | } |
| 386 | |
| 387 | // HasColumnFamily returns if the ColumnTableDef has a column family. |
| 388 | func (node *ColumnTableDef) HasColumnFamily() bool { |