-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathcatalog_test.go
More file actions
288 lines (267 loc) · 6.02 KB
/
catalog_test.go
File metadata and controls
288 lines (267 loc) · 6.02 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
package postgresql
import (
"errors"
"strconv"
"strings"
"testing"
"github.com/sqlc-dev/sqlc/internal/sql/ast"
"github.com/sqlc-dev/sqlc/internal/sql/catalog"
"github.com/sqlc-dev/sqlc/internal/sql/sqlerr"
"github.com/google/go-cmp/cmp"
)
func TestUpdateErrors(t *testing.T) {
p := NewParser()
for i, tc := range []struct {
stmt string
err *sqlerr.Error
}{
{
`
CREATE TABLE foo ();
CREATE TABLE foo ();
`,
sqlerr.RelationExists("foo"),
},
{
`
CREATE TYPE foo AS ENUM ('bar');
CREATE TYPE foo AS ENUM ('bar');
`,
sqlerr.TypeExists("foo"),
},
{
`
DROP TABLE foo;
`,
sqlerr.RelationNotFound("foo"),
},
{
`
DROP TYPE foo;
`,
sqlerr.TypeNotFound("foo"),
},
{
`
CREATE TABLE foo ();
CREATE TABLE bar ();
ALTER TABLE foo RENAME TO bar;
`,
sqlerr.RelationExists("bar"),
},
{
`
ALTER TABLE foo RENAME TO bar;
`,
sqlerr.RelationNotFound("foo"),
},
{
`
CREATE TABLE foo ();
ALTER TABLE foo ADD COLUMN bar text;
ALTER TABLE foo ADD COLUMN bar text;
`,
sqlerr.ColumnExists("foo", "bar"),
},
{
`
CREATE TABLE foo ();
ALTER TABLE foo DROP COLUMN bar;
`,
sqlerr.ColumnNotFound("foo", "bar"),
},
{
`
CREATE TABLE foo ();
ALTER TABLE foo ALTER COLUMN bar SET NOT NULL;
`,
sqlerr.ColumnNotFound("foo", "bar"),
},
{
`
CREATE TABLE foo ();
ALTER TABLE foo ALTER COLUMN bar DROP NOT NULL;
`,
sqlerr.ColumnNotFound("foo", "bar"),
},
{
`
CREATE SCHEMA foo;
CREATE SCHEMA foo;
`,
sqlerr.SchemaExists("foo"),
},
{
`
ALTER TABLE foo.baz SET SCHEMA bar;
`,
sqlerr.SchemaNotFound("foo"),
},
{
`
CREATE SCHEMA foo;
ALTER TABLE foo.baz SET SCHEMA bar;
`,
sqlerr.RelationNotFound("baz"),
},
{
`
CREATE SCHEMA foo;
CREATE TABLE foo.baz ();
ALTER TABLE foo.baz SET SCHEMA bar;
`,
sqlerr.SchemaNotFound("bar"),
},
{
`
DROP SCHEMA bar;
`,
sqlerr.SchemaNotFound("bar"),
},
{
`
ALTER TABLE foo RENAME bar TO baz;
`,
sqlerr.RelationNotFound("foo"),
},
{
`
CREATE TABLE foo ();
ALTER TABLE foo RENAME bar TO baz;
`,
sqlerr.ColumnNotFound("foo", "bar"),
},
{
`
CREATE TABLE foo (bar text, baz text);
ALTER TABLE foo RENAME bar TO baz;
`,
sqlerr.ColumnExists("foo", "baz"),
},
} {
test := tc
t.Run(strconv.Itoa(i), func(t *testing.T) {
stmts, err := p.Parse(strings.NewReader(test.stmt))
if err != nil {
t.Log(test.stmt)
t.Fatal(err)
}
c := NewCatalog()
err = c.Build(stmts)
if err == nil {
t.Log(test.stmt)
t.Fatal("err was nil")
}
var actual *sqlerr.Error
if !errors.As(err, &actual) {
t.Fatalf("err is not *sqlerr.Error: %#v", err)
}
if diff := cmp.Diff(test.err.Error(), actual.Error()); diff != "" {
t.Log(test.stmt)
t.Errorf("error mismatch: \n%s", diff)
}
})
}
}
func TestDropTableCascadeViewRecreate(t *testing.T) {
// Regression test for https://github.com/sqlc-dev/sqlc/issues/4416
// DROP TABLE CASCADE should remove dependent views from the catalog,
// allowing a subsequent CREATE VIEW with the same name to succeed.
p := NewParser()
// First: create the table
stmts1, err := p.Parse(strings.NewReader(`
CREATE TABLE reference_rates (id BIGSERIAL PRIMARY KEY);
`))
if err != nil {
t.Fatalf("parse error: %v", err)
}
c := NewCatalog()
if err := c.Build(stmts1); err != nil {
t.Fatalf("create table error: %v", err)
}
// Manually add a view that depends on reference_rates to the catalog
var schema *catalog.Schema
for _, s := range c.Schemas {
if s.Name == "public" {
schema = s
}
}
schema.Tables = append(schema.Tables, &catalog.Table{
Rel: &ast.TableName{Schema: "public", Name: "vw_reference_rates"},
Columns: []*catalog.Column{{Name: "id"}},
DependsOnTables: []*ast.TableName{
{Schema: "public", Name: "reference_rates"},
},
})
// Verify the view exists
if !viewExists(schema, "vw_reference_rates") {
t.Fatal("view not found in catalog before drop")
}
// Second: DROP TABLE CASCADE
stmts2, err := p.Parse(strings.NewReader(`
DROP TABLE reference_rates CASCADE;
`))
if err != nil {
t.Fatalf("parse error: %v", err)
}
if err := c.Build(stmts2); err != nil {
t.Fatalf("DROP TABLE CASCADE error: %v", err)
}
// Verify the view was removed
if viewExists(schema, "vw_reference_rates") {
t.Fatal("expected view to be removed by CASCADE, but it still exists")
}
}
func TestDropTableCascadeWithoutCascadeFails(t *testing.T) {
// Without CASCADE, dropping a table that has a dependent view leaves the view
// in the catalog (matching current sqlc behavior, though real PostgreSQL would
// reject DROP TABLE without CASCADE when views depend on it).
p := NewParser()
// Create the table
stmts1, err := p.Parse(strings.NewReader(`
CREATE TABLE reference_rates (id BIGSERIAL PRIMARY KEY);
`))
if err != nil {
t.Fatalf("parse error: %v", err)
}
c := NewCatalog()
if err := c.Build(stmts1); err != nil {
t.Fatalf("create table error: %v", err)
}
// Manually add a view that depends on reference_rates
schema := c.Schemas[0]
for _, s := range c.Schemas {
if s.Name == "public" {
schema = s
}
}
schema.Tables = append(schema.Tables, &catalog.Table{
Rel: &ast.TableName{Schema: "public", Name: "vw_reference_rates"},
Columns: []*catalog.Column{{Name: "id"}},
DependsOnTables: []*ast.TableName{
{Schema: "public", Name: "reference_rates"},
},
})
// DROP TABLE without CASCADE
stmts2, err := p.Parse(strings.NewReader(`
DROP TABLE reference_rates;
`))
if err != nil {
t.Fatalf("parse error: %v", err)
}
if err := c.Build(stmts2); err != nil {
t.Fatalf("DROP TABLE error: %v", err)
}
// Without CASCADE, the view should still exist in the catalog
if !viewExists(schema, "vw_reference_rates") {
t.Fatal("expected view to still exist without CASCADE, but it was removed")
}
}
func viewExists(schema *catalog.Schema, name string) bool {
for _, tbl := range schema.Tables {
if tbl.Rel.Name == name {
return true
}
}
return false
}