Skip to content

Commit 03cee14

Browse files
committed
test(spanner): fix PostgreSQL column name mismatches for test tables
1 parent daa6db5 commit 03cee14

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

Spanner/tests/System/PgSystemTestCaseTrait.php

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,21 +96,23 @@ protected static function setUpTestDatabase(): void
9696
arrayField bigint[],
9797
arrayBoolField boolean[],
9898
arrayFloatField double precision[],
99-
arrayFloat32Field real[],
99+
arrayfloat4field real[],
100100
arrayStringField character varying[],
101101
arrayBytesField bytea[],
102102
arrayTimestampField timestamp with time zone[],
103103
arrayDateField date[],
104-
arrayNumericField numeric[],
104+
arraypgnumericfield numeric[],
105+
arraypgjsonbfield jsonb[],
105106
boolField boolean,
106107
bytesField bytea,
107108
dateField date,
108109
floatField double precision,
109-
float32Field real,
110+
float4field real,
110111
intField bigint,
111112
stringField character varying,
112113
timestampField timestamp with time zone,
113-
numericField numeric,
114+
pgnumericfield numeric,
115+
pgjsonbfield jsonb,
114116
uuidField character varying(36),
115117
arrayUuidField character varying(36)[],
116118
PRIMARY KEY (id)

0 commit comments

Comments
 (0)