Representation of TINYINT used as a bool This function will panic if name is not valid
(name string, nullable NullableColumn)
| 192 | // Representation of TINYINT used as a bool |
| 193 | // This function will panic if name is not valid |
| 194 | func BoolColumn(name string, nullable NullableColumn) NonAliasColumn { |
| 195 | if !validIdentifierName(name) { |
| 196 | panic("Invalid column name in bool column") |
| 197 | } |
| 198 | bc := &booleanColumn{} |
| 199 | bc.name = name |
| 200 | bc.nullable = nullable |
| 201 | return bc |
| 202 | } |
| 203 | |
| 204 | type aliasColumn struct { |
| 205 | baseColumn |
nothing calls this directly
no test coverage detected