-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathschema.json
More file actions
1768 lines (1768 loc) · 50.9 KB
/
schema.json
File metadata and controls
1768 lines (1768 loc) · 50.9 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
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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Configuration",
"description": "The configuration that is contained inside the configuration file.",
"type": "object",
"properties": {
"$schema": {
"description": "A field for the [JSON schema](https://json-schema.org/) specification",
"type": [
"string",
"null"
]
},
"db": {
"description": "The configuration of the database connection",
"anyOf": [
{
"$ref": "#/definitions/DatabaseConfiguration"
},
{
"type": "null"
}
]
},
"extends": {
"description": "A list of paths to other JSON files, used to extends the current configuration.",
"anyOf": [
{
"$ref": "#/definitions/StringSet"
},
{
"type": "null"
}
]
},
"files": {
"description": "The configuration of the filesystem",
"anyOf": [
{
"$ref": "#/definitions/FilesConfiguration"
},
{
"type": "null"
}
]
},
"format": {
"description": "The configuration for the SQL formatter",
"anyOf": [
{
"$ref": "#/definitions/FormatConfiguration"
},
{
"type": "null"
}
]
},
"linter": {
"description": "The configuration for the linter",
"anyOf": [
{
"$ref": "#/definitions/LinterConfiguration"
},
{
"type": "null"
}
]
},
"migrations": {
"description": "Configure migrations",
"anyOf": [
{
"$ref": "#/definitions/MigrationsConfiguration"
},
{
"type": "null"
}
]
},
"pglinter": {
"description": "The configuration for pglinter",
"anyOf": [
{
"$ref": "#/definitions/PglinterConfiguration"
},
{
"type": "null"
}
]
},
"plpgsqlCheck": {
"description": "The configuration for type checking",
"anyOf": [
{
"$ref": "#/definitions/PlPgSqlCheckConfiguration"
},
{
"type": "null"
}
]
},
"splinter": {
"description": "The configuration for splinter",
"anyOf": [
{
"$ref": "#/definitions/SplinterConfiguration"
},
{
"type": "null"
}
]
},
"typecheck": {
"description": "The configuration for type checking",
"anyOf": [
{
"$ref": "#/definitions/TypecheckConfiguration"
},
{
"type": "null"
}
]
},
"vcs": {
"description": "The configuration of the VCS integration",
"anyOf": [
{
"$ref": "#/definitions/VcsConfiguration"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false,
"definitions": {
"Base": {
"description": "A list of rules that belong to this group",
"type": "object",
"properties": {
"all": {
"description": "It enables ALL rules for this group.",
"type": [
"boolean",
"null"
]
},
"compositePrimaryKeyTooManyColumns": {
"description": "CompositePrimaryKeyTooManyColumns (B012): Detect tables with composite primary keys involving more than 4 columns",
"anyOf": [
{
"$ref": "#/definitions/RuleConfiguration"
},
{
"type": "null"
}
]
},
"howManyObjectsWithUppercase": {
"description": "HowManyObjectsWithUppercase (B005): Count number of objects with uppercase in name or in columns.",
"anyOf": [
{
"$ref": "#/definitions/RuleConfiguration"
},
{
"type": "null"
}
]
},
"howManyRedudantIndex": {
"description": "HowManyRedudantIndex (B002): Count number of redundant index vs nb index.",
"anyOf": [
{
"$ref": "#/definitions/RuleConfiguration"
},
{
"type": "null"
}
]
},
"howManyTableWithoutIndexOnFk": {
"description": "HowManyTableWithoutIndexOnFk (B003): Count number of tables without index on foreign key.",
"anyOf": [
{
"$ref": "#/definitions/RuleConfiguration"
},
{
"type": "null"
}
]
},
"howManyTableWithoutPrimaryKey": {
"description": "HowManyTableWithoutPrimaryKey (B001): Count number of tables without primary key.",
"anyOf": [
{
"$ref": "#/definitions/RuleConfiguration"
},
{
"type": "null"
}
]
},
"howManyTablesNeverSelected": {
"description": "HowManyTablesNeverSelected (B006): Count number of table(s) that has never been selected.",
"anyOf": [
{
"$ref": "#/definitions/RuleConfiguration"
},
{
"type": "null"
}
]
},
"howManyTablesWithFkMismatch": {
"description": "HowManyTablesWithFkMismatch (B008): Count number of tables with foreign keys that do not match the key reference type.",
"anyOf": [
{
"$ref": "#/definitions/RuleConfiguration"
},
{
"type": "null"
}
]
},
"howManyTablesWithFkOutsideSchema": {
"description": "HowManyTablesWithFkOutsideSchema (B007): Count number of tables with foreign keys outside their schema.",
"anyOf": [
{
"$ref": "#/definitions/RuleConfiguration"
},
{
"type": "null"
}
]
},
"howManyTablesWithReservedKeywords": {
"description": "HowManyTablesWithReservedKeywords (B010): Count number of database objects using reserved keywords in their names.",
"anyOf": [
{
"$ref": "#/definitions/RuleConfiguration"
},
{
"type": "null"
}
]
},
"howManyTablesWithSameTrigger": {
"description": "HowManyTablesWithSameTrigger (B009): Count number of tables using the same trigger vs nb table with their own triggers.",
"anyOf": [
{
"$ref": "#/definitions/RuleConfiguration"
},
{
"type": "null"
}
]
},
"howManyUnusedIndex": {
"description": "HowManyUnusedIndex (B004): Count number of unused index vs nb index (base on pg_stat_user_indexes, indexes associated to unique constraints are discard.)",
"anyOf": [
{
"$ref": "#/definitions/RuleConfiguration"
},
{
"type": "null"
}
]
},
"recommended": {
"description": "It enables the recommended rules for this group",
"type": [
"boolean",
"null"
]
},
"severalTableOwnerInSchema": {
"description": "SeveralTableOwnerInSchema (B011): In a schema there are several tables owned by different owners.",
"anyOf": [
{
"$ref": "#/definitions/RuleConfiguration"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
},
"Cluster": {
"description": "A list of rules that belong to this group",
"type": "object",
"properties": {
"all": {
"description": "It enables ALL rules for this group.",
"type": [
"boolean",
"null"
]
},
"passwordEncryptionIsMd5": {
"description": "PasswordEncryptionIsMd5 (C003): This configuration is not secure anymore and will prevent an upgrade to Postgres 18. Warning, you will need to reset all passwords after this is changed to scram-sha-256.",
"anyOf": [
{
"$ref": "#/definitions/RuleConfiguration"
},
{
"type": "null"
}
]
},
"pgHbaEntriesWithMethodTrustOrPasswordShouldNotExists": {
"description": "PgHbaEntriesWithMethodTrustOrPasswordShouldNotExists (C002): This configuration is extremely insecure and should only be used in a controlled, non-production environment for testing purposes. In a production environment, you should use more secure authentication methods such as md5, scram-sha-256, or cert, and restrict access to trusted IP addresses only.",
"anyOf": [
{
"$ref": "#/definitions/RuleConfiguration"
},
{
"type": "null"
}
]
},
"pgHbaEntriesWithMethodTrustShouldNotExists": {
"description": "PgHbaEntriesWithMethodTrustShouldNotExists (C001): This configuration is extremely insecure and should only be used in a controlled, non-production environment for testing purposes. In a production environment, you should use more secure authentication methods such as md5, scram-sha-256, or cert, and restrict access to trusted IP addresses only.",
"anyOf": [
{
"$ref": "#/definitions/RuleConfiguration"
},
{
"type": "null"
}
]
},
"recommended": {
"description": "It enables the recommended rules for this group",
"type": [
"boolean",
"null"
]
}
},
"additionalProperties": false
},
"DatabaseConfiguration": {
"description": "The configuration of the database connection.",
"type": "object",
"properties": {
"allowStatementExecutionsAgainst": {
"anyOf": [
{
"$ref": "#/definitions/StringSet"
},
{
"type": "null"
}
]
},
"connTimeoutSecs": {
"description": "The connection timeout in seconds.",
"type": [
"integer",
"null"
],
"format": "uint16",
"minimum": 0.0
},
"connectionString": {
"description": "A connection string that encodes the full connection setup. When provided, it takes precedence over the individual fields. Can also be set via the `DATABASE_URL` environment variable.",
"type": [
"string",
"null"
]
},
"database": {
"description": "The name of the database. Can also be set via the `PGDATABASE` environment variable.",
"type": [
"string",
"null"
]
},
"host": {
"description": "The host of the database. Required if you want database-related features. All else falls back to sensible defaults. Can also be set via the `PGHOST` environment variable.",
"type": [
"string",
"null"
]
},
"password": {
"description": "The password to connect to the database. Can also be set via the `PGPASSWORD` environment variable.",
"type": [
"string",
"null"
]
},
"port": {
"description": "The port of the database. Can also be set via the `PGPORT` environment variable.",
"type": [
"integer",
"null"
],
"format": "uint16",
"minimum": 0.0
},
"username": {
"description": "The username to connect to the database. Can also be set via the `PGUSER` environment variable.",
"type": [
"string",
"null"
]
}
},
"additionalProperties": false
},
"FilesConfiguration": {
"description": "The configuration of the filesystem",
"type": "object",
"properties": {
"ignore": {
"description": "A list of Unix shell style patterns. Will ignore files/folders that will match these patterns.",
"anyOf": [
{
"$ref": "#/definitions/StringSet"
},
{
"type": "null"
}
]
},
"include": {
"description": "A list of Unix shell style patterns. Will handle only those files/folders that will match these patterns.",
"anyOf": [
{
"$ref": "#/definitions/StringSet"
},
{
"type": "null"
}
]
},
"maxSize": {
"description": "The maximum allowed size for source code files in bytes. Files above this limit will be ignored for performance reasons. Defaults to 1 MiB",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 1.0
}
},
"additionalProperties": false
},
"FormatConfiguration": {
"description": "The configuration for SQL formatting.",
"type": "object",
"properties": {
"constantCase": {
"description": "Constant casing (NULL, TRUE, FALSE): \"upper\" or \"lower\". Default: \"lower\".",
"anyOf": [
{
"$ref": "#/definitions/KeywordCase"
},
{
"type": "null"
}
]
},
"enabled": {
"description": "If `false`, it disables the formatter. `true` by default.",
"type": [
"boolean",
"null"
]
},
"ignore": {
"description": "A list of Unix shell style patterns. The formatter will ignore files/folders that will match these patterns.",
"anyOf": [
{
"$ref": "#/definitions/StringSet"
},
{
"type": "null"
}
]
},
"include": {
"description": "A list of Unix shell style patterns. The formatter will include files/folders that will match these patterns.",
"anyOf": [
{
"$ref": "#/definitions/StringSet"
},
{
"type": "null"
}
]
},
"indentSize": {
"description": "Number of spaces (or tab width) for indentation. Default: 2.",
"type": [
"integer",
"null"
],
"format": "uint8",
"minimum": 0.0
},
"indentStyle": {
"description": "Indentation style: \"spaces\" or \"tabs\". Default: \"spaces\".",
"anyOf": [
{
"$ref": "#/definitions/IndentStyle"
},
{
"type": "null"
}
]
},
"keywordCase": {
"description": "Keyword casing: \"upper\" or \"lower\". Default: \"lower\".",
"anyOf": [
{
"$ref": "#/definitions/KeywordCase"
},
{
"type": "null"
}
]
},
"lineWidth": {
"description": "Maximum line width before breaking. Default: 100.",
"type": [
"integer",
"null"
],
"format": "uint16",
"minimum": 0.0
},
"skipFnBodies": {
"description": "If `true`, skip formatting of SQL function bodies (keep them verbatim). Default: `false`.",
"type": [
"boolean",
"null"
]
},
"typeCase": {
"description": "Data type casing (text, varchar, int): \"upper\" or \"lower\". Default: \"lower\".",
"anyOf": [
{
"$ref": "#/definitions/KeywordCase"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
},
"IndentStyle": {
"description": "Indentation style for the formatter.",
"oneOf": [
{
"description": "Use spaces for indentation (default).",
"type": "string",
"enum": [
"spaces"
]
},
{
"description": "Use tabs for indentation.",
"type": "string",
"enum": [
"tabs"
]
}
]
},
"KeywordCase": {
"description": "Keyword casing style for the formatter.",
"oneOf": [
{
"description": "Use uppercase keywords (SELECT, FROM, WHERE).",
"type": "string",
"enum": [
"upper"
]
},
{
"description": "Use lowercase keywords (select, from, where). Default.",
"type": "string",
"enum": [
"lower"
]
}
]
},
"LinterConfiguration": {
"type": "object",
"properties": {
"enabled": {
"description": "if `false`, it disables the feature and the linter won't be executed. `true` by default",
"type": [
"boolean",
"null"
]
},
"ignore": {
"description": "A list of Unix shell style patterns. The linter will ignore files/folders that will match these patterns.",
"anyOf": [
{
"$ref": "#/definitions/StringSet"
},
{
"type": "null"
}
]
},
"include": {
"description": "A list of Unix shell style patterns. The linter will include files/folders that will match these patterns.",
"anyOf": [
{
"$ref": "#/definitions/StringSet"
},
{
"type": "null"
}
]
},
"rules": {
"description": "List of rules",
"anyOf": [
{
"$ref": "#/definitions/LinterRules"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
},
"LinterRules": {
"type": "object",
"properties": {
"all": {
"description": "It enables ALL rules. The rules that belong to `nursery` won't be enabled.",
"type": [
"boolean",
"null"
]
},
"recommended": {
"description": "It enables the lint rules recommended by Postgres Language Server. `true` by default.",
"type": [
"boolean",
"null"
]
},
"safety": {
"anyOf": [
{
"$ref": "#/definitions/Safety"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
},
"MigrationsConfiguration": {
"description": "The configuration of the filesystem",
"type": "object",
"properties": {
"after": {
"description": "Ignore any migrations before this timestamp",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
},
"migrationsDir": {
"description": "The directory where the migration files are stored",
"type": [
"string",
"null"
]
}
},
"additionalProperties": false
},
"Performance": {
"description": "A list of rules that belong to this group",
"type": "object",
"properties": {
"all": {
"description": "It enables ALL rules for this group.",
"type": [
"boolean",
"null"
]
},
"authRlsInitplan": {
"description": "Auth RLS Initialization Plan: Detects if calls to `current_setting()` and `auth.()` in RLS policies are being unnecessarily re-evaluated for each row",
"anyOf": [
{
"$ref": "#/definitions/SplinterRuleConfiguration"
},
{
"type": "null"
}
]
},
"duplicateIndex": {
"description": "Duplicate Index: Detects cases where two ore more identical indexes exist.",
"anyOf": [
{
"$ref": "#/definitions/SplinterRuleConfiguration"
},
{
"type": "null"
}
]
},
"multiplePermissivePolicies": {
"description": "Multiple Permissive Policies: Detects if multiple permissive row level security policies are present on a table for the same `role` and `action` (e.g. insert). Multiple permissive policies are suboptimal for performance as each policy must be executed for every relevant query.",
"anyOf": [
{
"$ref": "#/definitions/SplinterRuleConfiguration"
},
{
"type": "null"
}
]
},
"noPrimaryKey": {
"description": "No Primary Key: Detects if a table does not have a primary key. Tables without a primary key can be inefficient to interact with at scale.",
"anyOf": [
{
"$ref": "#/definitions/SplinterRuleConfiguration"
},
{
"type": "null"
}
]
},
"recommended": {
"description": "It enables the recommended rules for this group",
"type": [
"boolean",
"null"
]
},
"tableBloat": {
"description": "Table Bloat: Detects if a table has excess bloat and may benefit from maintenance operations like vacuum full or cluster.",
"anyOf": [
{
"$ref": "#/definitions/SplinterRuleConfiguration"
},
{
"type": "null"
}
]
},
"unindexedForeignKeys": {
"description": "Unindexed foreign keys: Identifies foreign key constraints without a covering index, which can impact database performance.",
"anyOf": [
{
"$ref": "#/definitions/SplinterRuleConfiguration"
},
{
"type": "null"
}
]
},
"unusedIndex": {
"description": "Unused Index: Detects if an index has never been used and may be a candidate for removal.",
"anyOf": [
{
"$ref": "#/definitions/SplinterRuleConfiguration"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
},
"PglinterConfiguration": {
"type": "object",
"properties": {
"enabled": {
"description": "if `false`, it disables the feature and the linter won't be executed. `true` by default",
"type": [
"boolean",
"null"
]
},
"rules": {
"description": "List of rules",
"anyOf": [
{
"$ref": "#/definitions/PglinterRules"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
},
"PglinterRules": {
"type": "object",
"properties": {
"all": {
"description": "It enables ALL rules. The rules that belong to `nursery` won't be enabled.",
"type": [
"boolean",
"null"
]
},
"base": {
"anyOf": [
{
"$ref": "#/definitions/Base"
},
{
"type": "null"
}
]
},
"cluster": {
"anyOf": [
{
"$ref": "#/definitions/Cluster"
},
{
"type": "null"
}
]
},
"recommended": {
"description": "It enables the lint rules recommended by Postgres Language Server. `true` by default.",
"type": [
"boolean",
"null"
]
},
"schema": {
"anyOf": [
{
"$ref": "#/definitions/Schema"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
},
"PlPgSqlCheckConfiguration": {
"description": "The configuration for type checking.",
"type": "object",
"properties": {
"enabled": {
"description": "if `false`, it disables the feature and pglpgsql_check won't be executed. `true` by default",
"type": [
"boolean",
"null"
]
}
},
"additionalProperties": false
},
"RuleConfiguration": {
"anyOf": [
{
"$ref": "#/definitions/RulePlainConfiguration"
},
{
"$ref": "#/definitions/RuleWithNoOptions"
}
]
},
"RulePlainConfiguration": {
"type": "string",
"enum": [
"warn",
"error",
"info",
"off"
]
},
"RuleWithNoOptions": {
"type": "object",
"required": [
"level"
],
"properties": {
"level": {
"description": "The severity of the emitted diagnostics by the rule",
"allOf": [
{
"$ref": "#/definitions/RulePlainConfiguration"
}
]
}
},
"additionalProperties": false
},
"RuleWithSplinterRuleOptions": {
"type": "object",
"required": [
"level",
"options"
],
"properties": {
"level": {
"description": "The severity of the emitted diagnostics by the rule",
"allOf": [
{
"$ref": "#/definitions/RulePlainConfiguration"
}
]
},
"options": {
"description": "Rule's options",
"allOf": [
{
"$ref": "#/definitions/SplinterRuleOptions"
}
]
}
},
"additionalProperties": false
},
"Safety": {
"description": "A list of rules that belong to this group",
"type": "object",
"properties": {
"addSerialColumn": {
"description": "Adding a column with a SERIAL type or GENERATED ALWAYS AS ... STORED causes a full table rewrite.",
"anyOf": [
{
"$ref": "#/definitions/RuleConfiguration"
},
{
"type": "null"
}
]
},
"addingFieldWithDefault": {
"description": "Adding a column with a DEFAULT value may lead to a table rewrite while holding an ACCESS EXCLUSIVE lock.",
"anyOf": [
{
"$ref": "#/definitions/RuleConfiguration"
},
{
"type": "null"
}
]
},
"addingForeignKeyConstraint": {
"description": "Adding a foreign key constraint requires a table scan and a SHARE ROW EXCLUSIVE lock on both tables, which blocks writes.",
"anyOf": [
{
"$ref": "#/definitions/RuleConfiguration"
},
{
"type": "null"
}
]
},
"addingNotNullField": {
"description": "Setting a column NOT NULL blocks reads while the table is scanned.",
"anyOf": [
{
"$ref": "#/definitions/RuleConfiguration"
},
{
"type": "null"
}
]
},
"addingPrimaryKeyConstraint": {
"description": "Adding a primary key constraint results in locks and table rewrites.",
"anyOf": [
{
"$ref": "#/definitions/RuleConfiguration"
},
{
"type": "null"
}
]