Skip to content
This repository was archived by the owner on Nov 7, 2025. It is now read-only.

Commit 554b1b8

Browse files
committed
Update array types
1 parent 7614a7e commit 554b1b8

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

ci/it/testcases/test_ingest.go

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ var (
182182
"@timestamp": "DateTime64(3)",
183183
"attributes_metadata": "Map(String, String)",
184184
"attributes_values": "Map(String, String)",
185-
"category": "Array(String)",
185+
"category": "Array(Nullable(String))",
186186
"currency": "Nullable(String)",
187187
"customer_first_name": "Nullable(String)",
188188
"customer_full_name": "Nullable(String)",
@@ -200,28 +200,28 @@ var (
200200
"geoip_location_lat": "Nullable(Float64)",
201201
"geoip_location_lon": "Nullable(Float64)",
202202
"geoip_region_name": "Nullable(String)",
203-
"manufacturer": "Array(String)",
203+
"manufacturer": "Array(Nullable(String))",
204204
"order_date": "DateTime64(3)",
205205
"order_id": "Nullable(Int64)",
206-
"products__id": "Array(String)",
207-
"products_base_price": "Array(Float64)",
208-
"products_base_unit_price": "Array(Float64)",
209-
"products_category": "Array(String)",
210-
"products_created_on": "Array(DateTime64(3))",
211-
"products_discount_amount": "Array(Int64)",
212-
"products_discount_percentage": "Array(Int64)",
213-
"products_manufacturer": "Array(String)",
214-
"products_min_price": "Array(Float64)",
215-
"products_price": "Array(Float64)",
216-
"products_product_id": "Array(Int64)",
217-
"products_product_name": "Array(String)",
218-
"products_quantity": "Array(Int64)",
219-
"products_sku": "Array(String)",
220-
"products_tax_amount": "Array(Int64)",
221-
"products_taxful_price": "Array(Float64)",
222-
"products_taxless_price": "Array(Float64)",
223-
"products_unit_discount_amount": "Array(Int64)",
224-
"sku": "Array(String)",
206+
"products__id": "Array(Nullable(String))",
207+
"products_base_price": "Array(Nullable(Float64))",
208+
"products_base_unit_price": "Array(Nullable(Float64))",
209+
"products_category": "Array(Nullable(String))",
210+
"products_created_on": "Array(Nullable(DateTime64(3)))",
211+
"products_discount_amount": "Array(Nullable(Int64))",
212+
"products_discount_percentage": "Array(Nullable(Int64))",
213+
"products_manufacturer": "Array(Nullable(String))",
214+
"products_min_price": "Array(Nullable(Float64))",
215+
"products_price": "Array(Nullable(Float64))",
216+
"products_product_id": "Array(Nullable(Int64))",
217+
"products_product_name": "Array(Nullable(String))",
218+
"products_quantity": "Array(Nullable(Int64))",
219+
"products_sku": "Array(Nullable(String))",
220+
"products_tax_amount": "Array(Nullable(Int64))",
221+
"products_taxful_price": "Array(Nullable(Float64))",
222+
"products_taxless_price": "Array(Nullable(Float64))",
223+
"products_unit_discount_amount": "Array(Nullable(Int64))",
224+
"sku": "Array(Nullable(String))",
225225
"taxful_total_price": "Nullable(Float64)",
226226
"taxless_total_price": "Nullable(Float64)",
227227
"total_quantity": "Nullable(Int64)",

0 commit comments

Comments
 (0)