update db

This commit is contained in:
Lakee Sivaraya
2026-01-15 10:46:11 -08:00
parent 793c888808
commit c3afbaebce
11 changed files with 10170 additions and 187 deletions

View File

@@ -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 })),