| 361 | } |
| 362 | |
| 363 | type View struct { |
| 364 | statement string |
| 365 | viewType string |
| 366 | securityType string |
| 367 | name QualifiedName |
| 368 | definition parser.SelectStatement // never nil |
| 369 | indexes []Index |
| 370 | columns []string |
| 371 | withData bool // true for "WITH DATA" |
| 372 | withNoData bool // true for "WITH NO DATA" |
| 373 | } |
| 374 | |
| 375 | // TriggerEvent represents a single trigger event (INSERT, UPDATE, DELETE, or UPDATE OF columns) |
| 376 | type TriggerEvent struct { |
nothing calls this directly
no outgoing calls
no test coverage detected