@@ -9,6 +9,7 @@ test('list', async () => {
99 } ,
1010 `
1111 {
12+ "check": null,
1213 "comment": null,
1314 "data_type": "bigint",
1415 "default_value": null,
@@ -54,6 +55,7 @@ test('list from a single table', async () => {
5455 {
5556 "data": [
5657 {
58+ "check": null,
5759 "comment": null,
5860 "data_type": "text",
5961 "default_value": null,
@@ -73,6 +75,7 @@ test('list from a single table', async () => {
7375 "table_id": Any<Number>,
7476 },
7577 {
78+ "check": null,
7679 "comment": null,
7780 "data_type": "text",
7881 "default_value": null,
@@ -150,6 +153,7 @@ test('retrieve, create, update, delete', async () => {
150153 `
151154 {
152155 "data": {
156+ "check": null,
153157 "comment": "foo",
154158 "data_type": "smallint",
155159 "default_value": "'42'::smallint",
@@ -180,6 +184,7 @@ test('retrieve, create, update, delete', async () => {
180184 `
181185 {
182186 "data": {
187+ "check": null,
183188 "comment": "foo",
184189 "data_type": "smallint",
185190 "default_value": "'42'::smallint",
@@ -218,6 +223,7 @@ test('retrieve, create, update, delete', async () => {
218223 `
219224 {
220225 "data": {
226+ "check": null,
221227 "comment": "bar",
222228 "data_type": "integer",
223229 "default_value": null,
@@ -248,6 +254,7 @@ test('retrieve, create, update, delete', async () => {
248254 `
249255 {
250256 "data": {
257+ "check": null,
251258 "comment": "bar",
252259 "data_type": "integer",
253260 "default_value": null,
@@ -292,6 +299,7 @@ test('enum column with quoted name', async () => {
292299 } ,
293300 `
294301 {
302+ "check": null,
295303 "comment": null,
296304 "data_type": "USER-DEFINED",
297305 "default_value": null,
@@ -399,6 +407,7 @@ test('array column', async () => {
399407 `
400408 {
401409 "data": {
410+ "check": null,
402411 "comment": null,
403412 "data_type": "ARRAY",
404413 "default_value": null,
@@ -445,6 +454,7 @@ test('column with default value', async () => {
445454 `
446455 {
447456 "data": {
457+ "check": null,
448458 "comment": null,
449459 "data_type": "timestamp with time zone",
450460 "default_value": "now()",
@@ -522,6 +532,7 @@ test('update with name unchanged', async () => {
522532 `
523533 {
524534 "data": {
535+ "check": null,
525536 "comment": null,
526537 "data_type": "smallint",
527538 "default_value": null,
@@ -569,6 +580,7 @@ test('update with array types', async () => {
569580 `
570581 {
571582 "data": {
583+ "check": null,
572584 "comment": null,
573585 "data_type": "ARRAY",
574586 "default_value": null,
@@ -616,6 +628,7 @@ test('update with incompatible types', async () => {
616628 `
617629 {
618630 "data": {
631+ "check": null,
619632 "comment": null,
620633 "data_type": "integer",
621634 "default_value": null,
@@ -662,6 +675,7 @@ test('update is_unique', async () => {
662675 `
663676 {
664677 "data": {
678+ "check": null,
665679 "comment": null,
666680 "data_type": "text",
667681 "default_value": null,
@@ -695,6 +709,7 @@ test('update is_unique', async () => {
695709 `
696710 {
697711 "data": {
712+ "check": null,
698713 "comment": null,
699714 "data_type": "text",
700715 "default_value": null,
@@ -743,6 +758,7 @@ test('alter column to type with uppercase', async () => {
743758 `
744759 {
745760 "data": {
761+ "check": null,
746762 "comment": null,
747763 "data_type": "USER-DEFINED",
748764 "default_value": null,
@@ -789,6 +805,7 @@ test('enums are populated in enum array columns', async () => {
789805 `
790806 {
791807 "data": {
808+ "check": null,
792809 "comment": null,
793810 "data_type": "ARRAY",
794811 "default_value": null,
@@ -842,6 +859,7 @@ create table public.t (
842859 `
843860 {
844861 "data": {
862+ "check": null,
845863 "comment": null,
846864 "data_type": "bigint",
847865 "default_value": null,
0 commit comments