(name string, unique bool, columns []string)
| 80 | } |
| 81 | |
| 82 | func makeIndex(name string, unique bool, columns []string) map[string]any { |
| 83 | return map[string]any{ |
| 84 | "name": name, |
| 85 | "expressions": columns, |
| 86 | "type": "btree", |
| 87 | "unique": unique, |
| 88 | "primary": false, |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | // --- Request capture / metadata mock --- |
| 93 |
no outgoing calls
no test coverage detected