(tableName string, property schema.Property)
| 750 | } |
| 751 | |
| 752 | func makeColumnID(tableName string, property schema.Property) string { |
| 753 | return fmt.Sprintf("%s__%s", tableName, property.ID) |
| 754 | } |
| 755 | |
| 756 | func makeColumn(tableName string, property schema.Property) string { |
| 757 | return fmt.Sprintf("%s.%s", tableName, quote(property.ID)) |
no outgoing calls
no test coverage detected