(code map[string]string)
| 437 | } |
| 438 | |
| 439 | func printCode(code map[string]string) { |
| 440 | for k, v := range code { |
| 441 | fmt.Printf("\n\n----------------- %s --------------------\n%s\n", k, v) |
| 442 | } |
| 443 | } |
| 444 | |
| 445 | func printPGFields(fields []*PGField) { |
| 446 | fmt.Printf("%-20v %-20v %-20v %-20v %-20v %-20v %-20v\n", "Name", "Type", "Length", "Lengthvar", "Notnull", "Comment", "IsPrimaryKey") |
no test coverage detected
searching dependent graphs…