handler.go ×5

Frontier kind: Code frontier

unlabeled · c_cb9ea432274c

6 tests · 2569 LOC · 119 files · introduces 0 tests · 17 LOC · 2 files

Introduces — evidence that enters the hierarchy at this concept

Code
6 ranges17 lines · 2 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
400 ranges2569 lines · 119 files · Browse complete extent
All tests (intent)
6 testsBrowse complete intent

Neighbourhood graph

The orange circle is the focus. Violet and green circles are every ancestor and descendant, broader and narrower, at any distance; blue squares and pink diamonds are the introduced files and exact introduced tests of every visible concept, not only the focus's. Arrows point from broader to narrower concepts and bridge only concepts omitted from this view. Undirected links show source or test introduction. Concept and file size follows LOC; exact test nodes use test-count units.

Introduced files, introduced tests, and structurally relevant concept specialization

In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the native relationship evidence on this page.

Graph controls are ready.

Interactive rendering requires JavaScript and WebGL. Use the native relationship evidence on this page while the interactive map is unavailable.

Native relationship evidence

Every exact file and test below is linked only from the concept that introduces it.

Introduced tests

Every collected test enters the hierarchy at exactly one concept.

No tests are introduced at this concept. Its intent tests are introduced by other concepts.

Introduced code

Every collected source range enters the hierarchy at exactly one concept.

2 files ranked by introduced lines: 17 introduced LOC across 6 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

go.temporal.io/server/tools/sql/handler.go 14 introduced LOC · 5 ranges

Open complete file

58
59 // createDatabase creates a sql database
60 > func createDatabase(cli *cli.Context, logger log.Logger) error { handler.go
61 > cfg, err := parseConnectConfig(cli)
62 > if err != nil {
63 logger.Error("Unable to read config.", tag.Error(schema.NewConfigError(err.Error())))
64 return err
65 }
66 > defaultDb := cli.String(schema.CLIOptDefaultDb) handler.go
67 > err = DoCreateDatabase(cfg, defaultDb, logger)
68 > if err != nil {
69 logger.Error("Unable to create SQL database.", tag.Error(err))
70 return err
71 }
72 > return nil handler.go
73 }
74
75 > func DoCreateDatabase(cfg *config.SQL, defaultDb string, logger log.Logger) error { handler.go
76 > dbToCreate := cfg.DatabaseName
77 > cfg.DatabaseName = defaultDb
78 > conn, err := NewConnection(cfg, logger)
79 > if err != nil {
80 return err
81 }
82 > defer conn.Close() handler.go
83 > return conn.CreateDatabase(dbToCreate)
84 }
85
go.temporal.io/server/tools/sql/main.go 3 introduced LOC · 1 range

Open complete file

183 },
184 },
185 > Action: func(c *cli.Context) { main.go
186 > cliHandler(c, createDatabase, logger)
187 > },
188 },
189 {