MCPcopy
hub / github.com/chartdb/chartdb / generateTableKey

Function generateTableKey

src/lib/domain/db-table.ts:58–64  ·  view source on GitHub ↗
({
    schemaName,
    tableName,
}: {
    schemaName: string | null | undefined;
    tableName: string;
})

Source from the content-addressed store, hash-verified

56});
57
58export const generateTableKey = ({
59 schemaName,
60 tableName,
61}: {
62 schemaName: string | null | undefined;
63 tableName: string;
64}) => `${schemaNameToDomainSchemaName(schemaName) ?? ''}.${tableName}`;
65
66export const adjustTablePositions = ({
67 relationships: inputRelationships,

Callers 2

createTablesFromMetadataFunction · 0.90
SelectTablesFunction · 0.90

Calls 1

Tested by

no test coverage detected