the inline ones
(self)
| 243 | return result |
| 244 | |
| 245 | def get_reference_blueprints(self): |
| 246 | ''' the inline ones ''' |
| 247 | result = [] |
| 248 | for col in self.columns: |
| 249 | for ref_bp in col.ref_blueprints or []: |
| 250 | ref_bp.schema1 = self.schema |
| 251 | ref_bp.table1 = self.name |
| 252 | ref_bp.col1 = col.name |
| 253 | result.append(ref_bp) |
| 254 | return result |
| 255 | |
| 256 | |
| 257 | @dataclass |
no outgoing calls