(schemaName string)
| 1482 | } |
| 1483 | |
| 1484 | func skipPostgresSchemaDDL(schemaName string) bool { |
| 1485 | return schemaName == "pg_catalog" || schemaName == "public" |
| 1486 | } |
| 1487 | |
| 1488 | func writeDropSchemaObjects(out *strings.Builder, schemaName string, schemaMeta *storepb.SchemaMetadata) error { |
| 1489 | if schemaMeta == nil { |