MCPcopy Create free account
hub / github.com/subquery/subql / commentTableQuery

Function commentTableQuery

packages/node-core/src/db/sync-helper.ts:102–104  ·  view source on GitHub ↗
(schema: string, table: string, comment: string)

Source from the content-addressed store, hash-verified

100}
101
102export function commentTableQuery(schema: string, table: string, comment: string): Query {
103 return commentOn('TABLE', escapedName(schema, table), comment);
104}
105
106export function commentColumnQuery(schema: string, table: string, column: string, comment: string): Query {
107 return commentOn('COLUMN', escapedName(schema, table, column), comment);

Callers

nothing calls this directly

Calls 2

commentOnFunction · 0.85
escapedNameFunction · 0.85

Tested by

no test coverage detected