MCPcopy Index your code
hub / github.com/outerbase/studio / parseColumnList

Function parseColumnList

src/drivers/sqlite/sql-parse-table.ts:198–209  ·  view source on GitHub ↗
(columnPtr: CursorV2)

Source from the content-addressed store, hash-verified

196}
197
198export function parseColumnList(columnPtr: CursorV2) {
199 const columns: string[] = [];
200
201 while (!columnPtr.end()) {
202 columns.push(columnPtr.consumeIdentifier());
203
204 if (!columnPtr.match(",")) break;
205 columnPtr.next();
206 }
207
208 return columns;
209}
210
211export function parseColumnConstraint(
212 schemaName: string,

Callers 2

parseCreateTriggerScriptFunction · 0.90
parseColumnConstraintFunction · 0.85

Calls 4

endMethod · 0.80
consumeIdentifierMethod · 0.80
nextMethod · 0.80
matchMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…