• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

teableio / teable / 18594585569

17 Oct 2025 01:43PM UTC coverage: 75.033%. First build
18594585569

push

github

web-flow
Merge pull request #1694 from teableio/feat/generated-column

feat/formula generated column

9929 of 10672 branches covered (93.04%)

12586 of 17368 new or added lines in 193 files covered. (72.47%)

49761 of 66319 relevant lines covered (75.03%)

4455.56 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

57.14
/apps/nestjs-backend/src/db-provider/sort-query/sqlite/sort-query.function.ts
1
import { AbstractSortFunction } from '../function/sort-function.abstract';
2✔
2

3
export class SortFunctionSqlite extends AbstractSortFunction {
2✔
4
  generateOrderByCase(keys: string[], columnName: string): string {
2✔
5
    const cases = keys.map((key, index) => `WHEN '${key}' THEN ${index + 1}`).join(' ');
×
NEW
6
    return `CASE ${columnName} ${cases} ELSE -1 END`;
×
7
  }
×
8
}
2✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc