Skip to content

Commit 6f3293d

Browse files
committed
add tags
1 parent ee06369 commit 6f3293d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

test/benchmarks/driver_bench/src/suites/node_specific/aggregate_a_million_documents_and_to_array.mts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { ALERT_TAG, driver, READ_TAG, type mongodb } from '../../driver.mjs';
1+
import { ALERT_TAG, CURSOR_TAG, driver, READ_TAG, type mongodb } from '../../driver.mjs';
22

33
export const taskSize = 16;
4-
export const tags = [ALERT_TAG, READ_TAG];
4+
export const tags = [ALERT_TAG, CURSOR_TAG, READ_TAG];
55

66
let db: mongodb.Db;
77

test/benchmarks/driver_bench/src/suites/node_specific/aggregate_a_million_tweets_and_to_array.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { ALERT_TAG, driver, READ_TAG, type mongodb } from '../../driver.mjs';
22

33
export const taskSize = 1500;
4-
export const tags = [ALERT_TAG, READ_TAG];
4+
export const tags = [ALERT_TAG, CURSOR_TAG, READ_TAG];
55

66
let db: mongodb.Db;
77
let tweet: Record<string, any>;

test/benchmarks/driver_bench/src/suites/node_specific/find_many_and_to_array.mts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import { ALERT_TAG, driver, READ_TAG, SPEC_TAG, type mongodb } from '../../driver.mjs';
1+
import { ALERT_TAG, CURSOR_TAG, driver, READ_TAG, SPEC_TAG, type mongodb } from '../../driver.mjs';
22

33
export const taskSize = 16.22;
44

5-
export const tags = [SPEC_TAG, ALERT_TAG,READ_TAG]
5+
export const tags = [SPEC_TAG, ALERT_TAG,READ_TAG, CURSOR_TAG]
66

77
let collection: mongodb.Collection;
88

0 commit comments

Comments
 (0)