(tableName string, property schema.Property)
| 754 | } |
| 755 | |
| 756 | func makeColumn(tableName string, property schema.Property) string { |
| 757 | return fmt.Sprintf("%s.%s", tableName, quote(property.ID)) |
| 758 | } |
| 759 | |
| 760 | func makeAliasTableName(tableName string, property schema.Property) string { |
| 761 | return fmt.Sprintf("%s__%s", tableName, property.RelationProperty) |
no test coverage detected