We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9c16ea commit 21bd073Copy full SHA for 21bd073
crates/key-value-azure/src/store.rs
@@ -458,7 +458,7 @@ impl AzureCosmosStore {
458
}
459
460
fn get_id_query(&self, key: &str) -> String {
461
- let mut query = format!("SELECT c.id FROM c WHERE c.id='{key}'");
+ let mut query = format!("SELECT c.id, c.store_id FROM c WHERE c.id='{key}'");
462
self.append_store_id(&mut query, true);
463
query
464
0 commit comments