()
| 306 | } |
| 307 | |
| 308 | func defaultViewIdField() Field { |
| 309 | return &TextField{ |
| 310 | Name: FieldNameId, |
| 311 | System: true, |
| 312 | Required: true, |
| 313 | PrimaryKey: true, |
| 314 | Pattern: `^[a-z0-9]+$`, |
| 315 | } |
| 316 | } |
| 317 | |
| 318 | var castRegex = regexp.MustCompile(`(?is)^cast\s*\(.*\s+as\s+(\w+)\s*\)$`) |
| 319 |
no outgoing calls
no test coverage detected
searching dependent graphs…