forked from sqlc-dev/sqlc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathview.go
More file actions
52 lines (45 loc) · 1009 Bytes
/
view.go
File metadata and controls
52 lines (45 loc) · 1009 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package catalog
import (
"github.com/sqlc-dev/sqlc/internal/sql/ast"
"github.com/sqlc-dev/sqlc/internal/sql/sqlerr"
)
func (c *Catalog) createView(stmt *ast.ViewStmt, colGen columnGenerator) error {
cols, err := colGen.OutputColumns(stmt.Query)
if err != nil {
return err
}
catName := ""
if stmt.View.Catalogname != nil {
catName = *stmt.View.Catalogname
}
schemaName := ""
if stmt.View.Schemaname != nil {
schemaName = *stmt.View.Schemaname
}
tbl := Table{
Rel: &ast.TableName{
Catalog: catName,
Schema: schemaName,
Name: *stmt.View.Relname,
},
Columns: cols,
}
ns := tbl.Rel.Schema
if ns == "" {
ns = c.DefaultSchema
}
schema, err := c.getSchema(ns)
if err != nil {
return err
}
_, existingIdx, err := schema.getTable(tbl.Rel)
if err == nil && !stmt.Replace {
return sqlerr.RelationExists(tbl.Rel.Name)
}
if stmt.Replace && err == nil {
schema.Tables[existingIdx] = &tbl
} else {
schema.Tables = append(schema.Tables, &tbl)
}
return nil
}