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

typeorm / typeorm / 19549987525

20 Nov 2025 08:11PM UTC coverage: 80.769% (+4.3%) from 76.433%
19549987525

push

github

web-flow
ci: run tests on commits to master and next (#11783)

Co-authored-by: Oleg "OSA413" Sokolov <OSA413@users.noreply.github.com>

26500 of 32174 branches covered (82.36%)

Branch coverage included in aggregate %.

91252 of 113615 relevant lines covered (80.32%)

88980.79 hits per line

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

44.44
/src/error/DataTypeNotSupportedError.ts
1
import { ColumnType } from "../driver/types/ColumnTypes"
26✔
2
import { DatabaseType } from "../driver/types/DatabaseType"
26✔
3
import { ColumnMetadata } from "../metadata/ColumnMetadata"
26✔
4
import { TypeORMError } from "./TypeORMError"
26✔
5

26✔
6
export class DataTypeNotSupportedError extends TypeORMError {
26✔
7
    constructor(
26✔
8
        column: ColumnMetadata,
×
9
        dataType: ColumnType,
×
10
        database?: DatabaseType,
×
11
    ) {
×
12
        super()
×
13

×
14
        const type =
×
15
            typeof dataType === "string" ? dataType : (<any>dataType).name
×
16
        this.message = `Data type "${type}" in "${column.entityMetadata.targetName}.${column.propertyName}" is not supported by "${database}" database.`
×
17
    }
×
18
}
26✔
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