DefaultValues returns true iff only default values are being inserted.
()
| 79 | |
| 80 | // DefaultValues returns true iff only default values are being inserted. |
| 81 | func (node *Insert) DefaultValues() bool { |
| 82 | return node.Rows.Select == nil |
| 83 | } |
| 84 | |
| 85 | // VectorInsert returns true iff the input for the insert operation is a |
| 86 | // materialized columnar batch, in which case the Insert operator will use a |