You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-07 13:22:56 +03:00
fix MADD
This commit is contained in:
@@ -1,11 +1,11 @@
|
|||||||
import { strict as assert } from 'assert';
|
import { strict as assert } from 'assert';
|
||||||
import testUtils, { GLOBAL } from '../test-utils';
|
import testUtils, { GLOBAL } from '../test-utils';
|
||||||
import { transformArguments } from './MADD';
|
import MADD from './MADD';
|
||||||
|
|
||||||
describe('MADD', () => {
|
describe('MADD', () => {
|
||||||
it('transformArguments', () => {
|
it('transformArguments', () => {
|
||||||
assert.deepEqual(
|
assert.deepEqual(
|
||||||
transformArguments([{
|
MADD.transformArguments([{
|
||||||
key: '1',
|
key: '1',
|
||||||
timestamp: 0,
|
timestamp: 0,
|
||||||
value: 0
|
value: 0
|
||||||
|
@@ -1,14 +1,16 @@
|
|||||||
import { Timestamp, transformTimestampArgument } from '.';
|
import { Timestamp, transformTimestampArgument } from '.';
|
||||||
|
import { ArrayReply, NumberReply, Command } from '@redis/client/dist/lib/RESP/types';
|
||||||
|
|
||||||
export const FIRST_KEY_INDEX = 1;
|
export interface TsMAddSample {
|
||||||
|
|
||||||
interface MAddSample {
|
|
||||||
key: string;
|
key: string;
|
||||||
timestamp: Timestamp;
|
timestamp: Timestamp;
|
||||||
value: number;
|
value: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function transformArguments(toAdd: Array<MAddSample>): Array<string> {
|
export default {
|
||||||
|
FIRST_KEY_INDEX: 1,
|
||||||
|
IS_READ_ONLY: false,
|
||||||
|
transformArguments(toAdd: Array<TsMAddSample>) {
|
||||||
const args = ['TS.MADD'];
|
const args = ['TS.MADD'];
|
||||||
|
|
||||||
for (const { key, timestamp, value } of toAdd) {
|
for (const { key, timestamp, value } of toAdd) {
|
||||||
@@ -20,6 +22,6 @@ export function transformArguments(toAdd: Array<MAddSample>): Array<string> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return args;
|
return args;
|
||||||
}
|
},
|
||||||
|
transformReply: undefined as unknown as () => ArrayReply<NumberReply>
|
||||||
export declare function transformReply(): Array<number>;
|
} as const satisfies Command;
|
||||||
|
Reference in New Issue
Block a user