(databaseName, tableName string, uniqueKey *UniqueKey)
| 753 | } |
| 754 | |
| 755 | func BuildUniqueKeyMaxValuesPreparedQuery(databaseName, tableName string, uniqueKey *UniqueKey) (string, error) { |
| 756 | return buildUniqueKeyMinMaxValuesPreparedQuery(databaseName, tableName, uniqueKey, "desc") |
| 757 | } |
| 758 | |
| 759 | func buildUniqueKeyMinMaxValuesPreparedQuery(databaseName, tableName string, uniqueKey *UniqueKey, order string) (string, error) { |
| 760 | if uniqueKey.Columns.Len() == 0 { |
searching dependent graphs…