WalkThrough walks through the PostgreSQL DDL and builds catalog metadata.
(d *model.DatabaseMetadata, ast []base.AST)
| 17 | |
| 18 | // WalkThrough walks through the PostgreSQL DDL and builds catalog metadata. |
| 19 | func WalkThrough(d *model.DatabaseMetadata, ast []base.AST) *storepb.Advice { |
| 20 | return WalkThroughWithContext(schema.WalkThroughContext{}, d, ast) |
| 21 | } |
| 22 | |
| 23 | // WalkThroughWithContext walks through the PostgreSQL DDL and builds catalog metadata. |
| 24 | func WalkThroughWithContext(ctx schema.WalkThroughContext, d *model.DatabaseMetadata, ast []base.AST) *storepb.Advice { |
nothing calls this directly
no test coverage detected