| 24 | } |
| 25 | |
| 26 | bool datastore_key_eq(const char **k1, const char **k2) |
| 27 | { |
| 28 | return tal_count(k1) == tal_count(k2) |
| 29 | && datastore_key_startswith(k1, k2); |
| 30 | } |
| 31 | |
| 32 | /* We join key parts with nuls for now. */ |
| 33 | void db_bind_datastore_key(struct db_stmt *stmt, const char **key) |
no test coverage detected