mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-28 03:00:29 -04:00
update db
This commit is contained in:
@@ -23,6 +23,7 @@ export function createMockSqlOperators() {
|
||||
gte: vi.fn((a, b) => ({ type: 'gte', left: a, right: b })),
|
||||
lt: vi.fn((a, b) => ({ type: 'lt', left: a, right: b })),
|
||||
lte: vi.fn((a, b) => ({ type: 'lte', left: a, right: b })),
|
||||
count: vi.fn((column) => ({ type: 'count', column })),
|
||||
and: vi.fn((...conditions) => ({ type: 'and', conditions })),
|
||||
or: vi.fn((...conditions) => ({ type: 'or', conditions })),
|
||||
not: vi.fn((condition) => ({ type: 'not', condition })),
|
||||
|
||||
Reference in New Issue
Block a user