@@ -9,6 +9,7 @@ test('list', async () => {
9
9
} ,
10
10
`
11
11
{
12
+ "check": null,
12
13
"comment": null,
13
14
"data_type": "bigint",
14
15
"default_value": null,
@@ -54,6 +55,7 @@ test('list from a single table', async () => {
54
55
{
55
56
"data": [
56
57
{
58
+ "check": null,
57
59
"comment": null,
58
60
"data_type": "text",
59
61
"default_value": null,
@@ -73,6 +75,7 @@ test('list from a single table', async () => {
73
75
"table_id": Any<Number>,
74
76
},
75
77
{
78
+ "check": null,
76
79
"comment": null,
77
80
"data_type": "text",
78
81
"default_value": null,
@@ -150,6 +153,7 @@ test('retrieve, create, update, delete', async () => {
150
153
`
151
154
{
152
155
"data": {
156
+ "check": null,
153
157
"comment": "foo",
154
158
"data_type": "smallint",
155
159
"default_value": "'42'::smallint",
@@ -180,6 +184,7 @@ test('retrieve, create, update, delete', async () => {
180
184
`
181
185
{
182
186
"data": {
187
+ "check": null,
183
188
"comment": "foo",
184
189
"data_type": "smallint",
185
190
"default_value": "'42'::smallint",
@@ -218,6 +223,7 @@ test('retrieve, create, update, delete', async () => {
218
223
`
219
224
{
220
225
"data": {
226
+ "check": null,
221
227
"comment": "bar",
222
228
"data_type": "integer",
223
229
"default_value": null,
@@ -248,6 +254,7 @@ test('retrieve, create, update, delete', async () => {
248
254
`
249
255
{
250
256
"data": {
257
+ "check": null,
251
258
"comment": "bar",
252
259
"data_type": "integer",
253
260
"default_value": null,
@@ -292,6 +299,7 @@ test('enum column with quoted name', async () => {
292
299
} ,
293
300
`
294
301
{
302
+ "check": null,
295
303
"comment": null,
296
304
"data_type": "USER-DEFINED",
297
305
"default_value": null,
@@ -399,6 +407,7 @@ test('array column', async () => {
399
407
`
400
408
{
401
409
"data": {
410
+ "check": null,
402
411
"comment": null,
403
412
"data_type": "ARRAY",
404
413
"default_value": null,
@@ -445,6 +454,7 @@ test('column with default value', async () => {
445
454
`
446
455
{
447
456
"data": {
457
+ "check": null,
448
458
"comment": null,
449
459
"data_type": "timestamp with time zone",
450
460
"default_value": "now()",
@@ -522,6 +532,7 @@ test('update with name unchanged', async () => {
522
532
`
523
533
{
524
534
"data": {
535
+ "check": null,
525
536
"comment": null,
526
537
"data_type": "smallint",
527
538
"default_value": null,
@@ -569,6 +580,7 @@ test('update with array types', async () => {
569
580
`
570
581
{
571
582
"data": {
583
+ "check": null,
572
584
"comment": null,
573
585
"data_type": "ARRAY",
574
586
"default_value": null,
@@ -616,6 +628,7 @@ test('update with incompatible types', async () => {
616
628
`
617
629
{
618
630
"data": {
631
+ "check": null,
619
632
"comment": null,
620
633
"data_type": "integer",
621
634
"default_value": null,
@@ -662,6 +675,7 @@ test('update is_unique', async () => {
662
675
`
663
676
{
664
677
"data": {
678
+ "check": null,
665
679
"comment": null,
666
680
"data_type": "text",
667
681
"default_value": null,
@@ -695,6 +709,7 @@ test('update is_unique', async () => {
695
709
`
696
710
{
697
711
"data": {
712
+ "check": null,
698
713
"comment": null,
699
714
"data_type": "text",
700
715
"default_value": null,
@@ -743,6 +758,7 @@ test('alter column to type with uppercase', async () => {
743
758
`
744
759
{
745
760
"data": {
761
+ "check": null,
746
762
"comment": null,
747
763
"data_type": "USER-DEFINED",
748
764
"default_value": null,
@@ -789,6 +805,7 @@ test('enums are populated in enum array columns', async () => {
789
805
`
790
806
{
791
807
"data": {
808
+ "check": null,
792
809
"comment": null,
793
810
"data_type": "ARRAY",
794
811
"default_value": null,
@@ -842,6 +859,7 @@ create table public.t (
842
859
`
843
860
{
844
861
"data": {
862
+ "check": null,
845
863
"comment": null,
846
864
"data_type": "bigint",
847
865
"default_value": null,
0 commit comments