-
-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathPostgresMetaColumns.ts
430 lines (410 loc) · 12.6 KB
/
PostgresMetaColumns.ts
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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
import { ident, literal } from 'pg-format'
import PostgresMetaTables from './PostgresMetaTables.js'
import { DEFAULT_SYSTEM_SCHEMAS } from './constants.js'
import columnsSql from './sql/columns.sql'
import { PostgresMetaResult, PostgresColumn } from './types.js'
import { filterByList } from './helpers.js'
export default class PostgresMetaColumns {
query: (sql: string) => Promise<PostgresMetaResult<any>>
metaTables: PostgresMetaTables
constructor(query: (sql: string) => Promise<PostgresMetaResult<any>>) {
this.query = query
this.metaTables = new PostgresMetaTables(query)
}
async list({
tableId,
includeSystemSchemas = false,
includedSchemas,
excludedSchemas,
limit,
offset,
}: {
tableId?: number
includeSystemSchemas?: boolean
includedSchemas?: string[]
excludedSchemas?: string[]
limit?: number
offset?: number
} = {}): Promise<PostgresMetaResult<PostgresColumn[]>> {
let sql = `
WITH
columns AS (${columnsSql})
SELECT
*
FROM
columns
WHERE
true`
const filter = filterByList(
includedSchemas,
excludedSchemas,
!includeSystemSchemas ? DEFAULT_SYSTEM_SCHEMAS : undefined
)
if (filter) {
sql += ` AND schema ${filter}`
}
if (tableId !== undefined) {
sql += ` AND table_id = ${literal(tableId)}`
}
if (limit) {
sql += ` LIMIT ${limit}`
}
if (offset) {
sql += ` OFFSET ${offset}`
}
return await this.query(sql)
}
async retrieve({ id }: { id: string }): Promise<PostgresMetaResult<PostgresColumn>>
async retrieve({
name,
table,
schema,
}: {
name: string
table: string
schema: string
}): Promise<PostgresMetaResult<PostgresColumn>>
async retrieve({
id,
name,
table,
schema = 'public',
}: {
id?: string
name?: string
table?: string
schema?: string
}): Promise<PostgresMetaResult<PostgresColumn>> {
if (id) {
const regexp = /^(\d+)\.(\d+)$/
if (!regexp.test(id)) {
return { data: null, error: { message: 'Invalid format for column ID' } }
}
const matches = id.match(regexp) as RegExpMatchArray
const [tableId, ordinalPos] = matches.slice(1).map(Number)
const sql = `${columnsSql} AND c.oid = ${tableId} AND a.attnum = ${ordinalPos};`
const { data, error } = await this.query(sql)
if (error) {
return { data, error }
} else if (data.length === 0) {
return { data: null, error: { message: `Cannot find a column with ID ${id}` } }
} else {
return { data: data[0], error }
}
} else if (name && table) {
const sql = `${columnsSql} AND a.attname = ${literal(name)} AND c.relname = ${literal(
table
)} AND nc.nspname = ${literal(schema)};`
const { data, error } = await this.query(sql)
if (error) {
return { data, error }
} else if (data.length === 0) {
return {
data: null,
error: { message: `Cannot find a column named ${name} in table ${schema}.${table}` },
}
} else {
return { data: data[0], error }
}
} else {
return { data: null, error: { message: 'Invalid parameters on column retrieve' } }
}
}
async create({
table_id,
name,
type,
default_value,
default_value_format = 'literal',
is_identity = false,
identity_generation = 'BY DEFAULT',
// Can't pick a value as default since regular columns are nullable by default but PK columns aren't
is_nullable,
is_primary_key = false,
is_unique = false,
comment,
check,
}: {
table_id: number
name: string
type: string
default_value?: any
default_value_format?: 'expression' | 'literal'
is_identity?: boolean
identity_generation?: 'BY DEFAULT' | 'ALWAYS'
is_nullable?: boolean
is_primary_key?: boolean
is_unique?: boolean
comment?: string
check?: string
}): Promise<PostgresMetaResult<PostgresColumn>> {
const { data, error } = await this.metaTables.retrieve({ id: table_id })
if (error) {
return { data: null, error }
}
const { name: table, schema } = data!
let defaultValueClause = ''
if (is_identity) {
if (default_value !== undefined) {
return {
data: null,
error: { message: 'Columns cannot both be identity and have a default value' },
}
}
defaultValueClause = `GENERATED ${identity_generation} AS IDENTITY`
} else {
if (default_value === undefined) {
// skip
} else if (default_value_format === 'expression') {
defaultValueClause = `DEFAULT ${default_value}`
} else {
defaultValueClause = `DEFAULT ${literal(default_value)}`
}
}
let isNullableClause = ''
if (is_nullable !== undefined) {
isNullableClause = is_nullable ? 'NULL' : 'NOT NULL'
}
const isPrimaryKeyClause = is_primary_key ? 'PRIMARY KEY' : ''
const isUniqueClause = is_unique ? 'UNIQUE' : ''
const checkSql = check === undefined ? '' : `CHECK (${check})`
const commentSql =
comment === undefined
? ''
: `COMMENT ON COLUMN ${ident(schema)}.${ident(table)}.${ident(name)} IS ${literal(comment)}`
const sql = `
BEGIN;
ALTER TABLE ${ident(schema)}.${ident(table)} ADD COLUMN ${ident(name)} ${typeIdent(type)}
${defaultValueClause}
${isNullableClause}
${isPrimaryKeyClause}
${isUniqueClause}
${checkSql};
${commentSql};
COMMIT;`
{
const { error } = await this.query(sql)
if (error) {
return { data: null, error }
}
}
return await this.retrieve({ name, table, schema })
}
async update(
id: string,
{
name,
type,
drop_default = false,
default_value,
default_value_format = 'literal',
is_identity,
identity_generation = 'BY DEFAULT',
is_nullable,
is_unique,
comment,
check,
}: {
name?: string
type?: string
drop_default?: boolean
default_value?: any
default_value_format?: 'expression' | 'literal'
is_identity?: boolean
identity_generation?: 'BY DEFAULT' | 'ALWAYS'
is_nullable?: boolean
is_unique?: boolean
comment?: string
check?: string | null
}
): Promise<PostgresMetaResult<PostgresColumn>> {
const { data: old, error } = await this.retrieve({ id })
if (error) {
return { data: null, error }
}
const nameSql =
name === undefined || name === old!.name
? ''
: `ALTER TABLE ${ident(old!.schema)}.${ident(old!.table)} RENAME COLUMN ${ident(
old!.name
)} TO ${ident(name)};`
// We use USING to allow implicit conversion of incompatible types (e.g. int4 -> text).
const typeSql =
type === undefined
? ''
: `ALTER TABLE ${ident(old!.schema)}.${ident(old!.table)} ALTER COLUMN ${ident(
old!.name
)} SET DATA TYPE ${typeIdent(type)} USING ${ident(old!.name)}::${typeIdent(type)};`
let defaultValueSql: string
if (drop_default) {
defaultValueSql = `ALTER TABLE ${ident(old!.schema)}.${ident(
old!.table
)} ALTER COLUMN ${ident(old!.name)} DROP DEFAULT;`
} else if (default_value === undefined) {
defaultValueSql = ''
} else {
const defaultValue =
default_value_format === 'expression' ? default_value : literal(default_value)
defaultValueSql = `ALTER TABLE ${ident(old!.schema)}.${ident(
old!.table
)} ALTER COLUMN ${ident(old!.name)} SET DEFAULT ${defaultValue};`
}
// What identitySql does vary depending on the old and new values of
// is_identity and identity_generation.
//
// | is_identity: old \ new | undefined | true | false |
// |------------------------+--------------------+--------------------+----------------|
// | true | maybe set identity | maybe set identity | drop if exists |
// |------------------------+--------------------+--------------------+----------------|
// | false | - | add identity | drop if exists |
let identitySql = `ALTER TABLE ${ident(old!.schema)}.${ident(old!.table)} ALTER COLUMN ${ident(
old!.name
)}`
if (is_identity === false) {
identitySql += ' DROP IDENTITY IF EXISTS;'
} else if (old!.is_identity === true) {
if (identity_generation === undefined) {
identitySql = ''
} else {
identitySql += ` SET GENERATED ${identity_generation};`
}
} else if (is_identity === undefined) {
identitySql = ''
} else {
identitySql += ` ADD GENERATED ${identity_generation} AS IDENTITY;`
}
let isNullableSql: string
if (is_nullable === undefined) {
isNullableSql = ''
} else {
isNullableSql = is_nullable
? `ALTER TABLE ${ident(old!.schema)}.${ident(old!.table)} ALTER COLUMN ${ident(
old!.name
)} DROP NOT NULL;`
: `ALTER TABLE ${ident(old!.schema)}.${ident(old!.table)} ALTER COLUMN ${ident(
old!.name
)} SET NOT NULL;`
}
let isUniqueSql = ''
if (old!.is_unique === true && is_unique === false) {
isUniqueSql = `
DO $$
DECLARE
r record;
BEGIN
FOR r IN
SELECT conname FROM pg_constraint WHERE
contype = 'u'
AND cardinality(conkey) = 1
AND conrelid = ${literal(old!.table_id)}
AND conkey[1] = ${literal(old!.ordinal_position)}
LOOP
EXECUTE ${literal(
`ALTER TABLE ${ident(old!.schema)}.${ident(old!.table)} DROP CONSTRAINT `
)} || quote_ident(r.conname);
END LOOP;
END
$$;
`
} else if (old!.is_unique === false && is_unique === true) {
isUniqueSql = `ALTER TABLE ${ident(old!.schema)}.${ident(old!.table)} ADD UNIQUE (${ident(
old!.name
)});`
}
const commentSql =
comment === undefined
? ''
: `COMMENT ON COLUMN ${ident(old!.schema)}.${ident(old!.table)}.${ident(
old!.name
)} IS ${literal(comment)};`
const checkSql =
check === undefined
? ''
: `
DO $$
DECLARE
v_conname name;
v_conkey int2[];
BEGIN
SELECT conname into v_conname FROM pg_constraint WHERE
contype = 'c'
AND cardinality(conkey) = 1
AND conrelid = ${literal(old!.table_id)}
AND conkey[1] = ${literal(old!.ordinal_position)}
ORDER BY oid asc
LIMIT 1;
IF v_conname IS NOT NULL THEN
EXECUTE format('ALTER TABLE ${ident(old!.schema)}.${ident(
old!.table
)} DROP CONSTRAINT %s', v_conname);
END IF;
${
check !== null
? `
ALTER TABLE ${ident(old!.schema)}.${ident(old!.table)} ADD CONSTRAINT ${ident(
`${old!.table}_${old!.name}_check`
)} CHECK (${check});
SELECT conkey into v_conkey FROM pg_constraint WHERE conname = ${literal(
`${old!.table}_${old!.name}_check`
)};
ASSERT v_conkey IS NOT NULL, 'error creating column constraint: check condition must refer to this column';
ASSERT cardinality(v_conkey) = 1, 'error creating column constraint: check condition cannot refer to multiple columns';
ASSERT v_conkey[1] = ${literal(
old!.ordinal_position
)}, 'error creating column constraint: check condition cannot refer to other columns';
`
: ''
}
END
$$;
`
// TODO: Can't set default if column is previously identity even if
// is_identity: false. Must do two separate PATCHes (once to drop identity
// and another to set default).
// NOTE: nameSql must be last. defaultValueSql must be after typeSql.
// identitySql must be after isNullableSql.
const sql = `
BEGIN;
${isNullableSql}
${typeSql}
${defaultValueSql}
${identitySql}
${isUniqueSql}
${commentSql}
${checkSql}
${nameSql}
COMMIT;`
{
const { error } = await this.query(sql)
if (error) {
return { data: null, error }
}
}
return await this.retrieve({ id })
}
async remove(id: string, { cascade = false } = {}): Promise<PostgresMetaResult<PostgresColumn>> {
const { data: column, error } = await this.retrieve({ id })
if (error) {
return { data: null, error }
}
const sql = `ALTER TABLE ${ident(column!.schema)}.${ident(column!.table)} DROP COLUMN ${ident(
column!.name
)} ${cascade ? 'CASCADE' : 'RESTRICT'};`
{
const { error } = await this.query(sql)
if (error) {
return { data: null, error }
}
}
return { data: column!, error: null }
}
}
// TODO: make this more robust - use type_id or type_schema + type_name instead
// of just type.
const typeIdent = (type: string) => {
return type.endsWith('[]')
? `${ident(type.slice(0, -2))}[]`
: type.includes('.')
? type
: ident(type)
}