mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2026-01-07 11:36:47 +00:00
* Add container vector policy and indexing policy support * Add vector search capability * hide vector settings for shared throughput DB * update package-lock * fix pipeline * remove comments * Address comments * Address comments
24 lines
586 B
Plaintext
24 lines
586 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`getCommonQueryOptions builds the correct default options objects 1`] = `
|
|
Object {
|
|
"disableNonStreamingOrderByQuery": true,
|
|
"enableScanInQuery": true,
|
|
"forceQueryPlan": true,
|
|
"maxDegreeOfParallelism": 0,
|
|
"maxItemCount": 100,
|
|
"populateQueryMetrics": true,
|
|
}
|
|
`;
|
|
|
|
exports[`getCommonQueryOptions reads from localStorage 1`] = `
|
|
Object {
|
|
"disableNonStreamingOrderByQuery": true,
|
|
"enableScanInQuery": true,
|
|
"forceQueryPlan": true,
|
|
"maxDegreeOfParallelism": 17,
|
|
"maxItemCount": 37,
|
|
"populateQueryMetrics": true,
|
|
}
|
|
`;
|