@@ -85,6 +85,7 @@ for (const dialect of DIALECTS) {
85
85
expect ( meta ) . to . eql ( [
86
86
{
87
87
name : 'person' ,
88
+ isForeign : false ,
88
89
isView : false ,
89
90
schema : 'public' ,
90
91
columns : [
@@ -157,6 +158,7 @@ for (const dialect of DIALECTS) {
157
158
{
158
159
name : 'pet' ,
159
160
isView : false ,
161
+ isForeign : false ,
160
162
schema : 'public' ,
161
163
columns : [
162
164
{
@@ -200,6 +202,7 @@ for (const dialect of DIALECTS) {
200
202
{
201
203
name : 'toy' ,
202
204
isView : false ,
205
+ isForeign : false ,
203
206
schema : 'public' ,
204
207
columns : [
205
208
{
@@ -242,6 +245,7 @@ for (const dialect of DIALECTS) {
242
245
} ,
243
246
{
244
247
name : 'toy_names' ,
248
+ isForeign : false ,
245
249
isView : true ,
246
250
schema : 'public' ,
247
251
columns : [
@@ -258,6 +262,7 @@ for (const dialect of DIALECTS) {
258
262
} ,
259
263
{
260
264
name : 'MixedCaseTable' ,
265
+ isForeign : false ,
261
266
isView : false ,
262
267
schema : 'some_schema' ,
263
268
columns : [
@@ -274,6 +279,7 @@ for (const dialect of DIALECTS) {
274
279
} ,
275
280
{
276
281
name : 'pet' ,
282
+ isForeign : false ,
277
283
isView : false ,
278
284
schema : 'some_schema' ,
279
285
columns : [
@@ -299,6 +305,7 @@ for (const dialect of DIALECTS) {
299
305
} ,
300
306
{
301
307
name : 'pet_partition' ,
308
+ isForeign : false ,
302
309
isView : false ,
303
310
schema : 'some_schema' ,
304
311
columns : [
@@ -318,6 +325,7 @@ for (const dialect of DIALECTS) {
318
325
expect ( meta ) . to . eql ( [
319
326
{
320
327
name : 'person' ,
328
+ isForeign : false ,
321
329
isView : false ,
322
330
schema : 'kysely_test' ,
323
331
columns : [
@@ -382,6 +390,7 @@ for (const dialect of DIALECTS) {
382
390
} ,
383
391
{
384
392
name : 'pet' ,
393
+ isForeign : false ,
385
394
isView : false ,
386
395
schema : 'kysely_test' ,
387
396
columns : [
@@ -421,6 +430,7 @@ for (const dialect of DIALECTS) {
421
430
} ,
422
431
{
423
432
name : 'toy' ,
433
+ isForeign : false ,
424
434
isView : false ,
425
435
schema : 'kysely_test' ,
426
436
columns : [
@@ -460,6 +470,7 @@ for (const dialect of DIALECTS) {
460
470
} ,
461
471
{
462
472
name : 'toy_names' ,
473
+ isForeign : false ,
463
474
isView : true ,
464
475
schema : 'kysely_test' ,
465
476
columns : [
@@ -477,6 +488,7 @@ for (const dialect of DIALECTS) {
477
488
} else if ( dialect === 'mssql' ) {
478
489
expect ( meta ) . to . eql ( [
479
490
{
491
+ isForeign : false ,
480
492
isView : false ,
481
493
name : 'person' ,
482
494
schema : 'dbo' ,
@@ -547,6 +559,7 @@ for (const dialect of DIALECTS) {
547
559
] ,
548
560
} ,
549
561
{
562
+ isForeign : false ,
550
563
isView : false ,
551
564
name : 'pet' ,
552
565
schema : 'dbo' ,
@@ -590,6 +603,7 @@ for (const dialect of DIALECTS) {
590
603
] ,
591
604
} ,
592
605
{
606
+ isForeign : false ,
593
607
isView : false ,
594
608
name : 'toy' ,
595
609
schema : 'dbo' ,
@@ -633,6 +647,7 @@ for (const dialect of DIALECTS) {
633
647
] ,
634
648
} ,
635
649
{
650
+ isForeign : false ,
636
651
isView : true ,
637
652
name : 'toy_names' ,
638
653
schema : 'dbo' ,
@@ -649,6 +664,7 @@ for (const dialect of DIALECTS) {
649
664
] ,
650
665
} ,
651
666
{
667
+ isForeign : false ,
652
668
isView : false ,
653
669
name : 'pet' ,
654
670
schema : 'some_schema' ,
@@ -678,6 +694,7 @@ for (const dialect of DIALECTS) {
678
694
expect ( meta ) . to . eql ( [
679
695
{
680
696
name : 'person' ,
697
+ isForeign : false ,
681
698
isView : false ,
682
699
columns : [
683
700
{
@@ -741,6 +758,7 @@ for (const dialect of DIALECTS) {
741
758
} ,
742
759
{
743
760
name : 'pet' ,
761
+ isForeign : false ,
744
762
isView : false ,
745
763
columns : [
746
764
{
@@ -779,6 +797,7 @@ for (const dialect of DIALECTS) {
779
797
} ,
780
798
{
781
799
name : 'toy' ,
800
+ isForeign : false ,
782
801
isView : false ,
783
802
columns : [
784
803
{
@@ -817,6 +836,7 @@ for (const dialect of DIALECTS) {
817
836
} ,
818
837
{
819
838
name : 'toy_names' ,
839
+ isForeign : false ,
820
840
isView : true ,
821
841
columns : [
822
842
{
@@ -856,6 +876,7 @@ for (const dialect of DIALECTS) {
856
876
857
877
expect ( testTable ) . to . eql ( {
858
878
name : testTableName ,
879
+ isForeign : false ,
859
880
isView : false ,
860
881
columns : [
861
882
{
0 commit comments