MCPcopy
hub / github.com/electric-sql/pglite / NoticeMessage

Class NoticeMessage

packages/pg-protocol/src/messages.ts:282–304  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

280}
281
282export 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected