| 280 | } |
| 281 | |
| 282 | export class NoticeMessage implements BackendMessage, NoticeOrError { |
| 283 | constructor( |
| 284 | public readonly length: number, |
| 285 | public readonly message: string | undefined, |
| 286 | ) {} |
| 287 | public readonly name = 'notice' |
| 288 | public severity: string | undefined |
| 289 | public code: string | undefined |
| 290 | public detail: string | undefined |
| 291 | public hint: string | undefined |
| 292 | public position: string | undefined |
| 293 | public internalPosition: string | undefined |
| 294 | public internalQuery: string | undefined |
| 295 | public where: string | undefined |
| 296 | public schema: string | undefined |
| 297 | public table: string | undefined |
| 298 | public column: string | undefined |
| 299 | public dataType: string | undefined |
| 300 | public constraint: string | undefined |
| 301 | public file: string | undefined |
| 302 | public line: string | undefined |
| 303 | public routine: string | undefined |
| 304 | } |
nothing calls this directly
no outgoing calls
no test coverage detected