IsComputed returns if the ColumnTableDef is a computed column.
()
| 741 | |
| 742 | // IsComputed returns if the ColumnTableDef is a computed column. |
| 743 | func (node *ColumnTableDef) IsComputed() bool { |
| 744 | return node.Computed.Computed |
| 745 | } |
| 746 | |
| 747 | // IsVirtual returns if the ColumnTableDef is a virtual column. |
| 748 | func (node *ColumnTableDef) IsVirtual() bool { |