Browse Source

Use bigint for order_number

Avoid overflow
Mostafa Mokhtar 10 năm trước cách đây
mục cha
commit
077d9ff1e6
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      ddl-tpcds/bin_partitioned/catalog_sales.sql

+ 1 - 1
ddl-tpcds/bin_partitioned/catalog_sales.sql

@@ -21,7 +21,7 @@ create table catalog_sales
     cs_warehouse_sk           int,
     cs_item_sk                int,
     cs_promo_sk               int,
-    cs_order_number           int,
+    cs_order_number           bigint,
     cs_quantity               int,
     cs_wholesale_cost         float,
     cs_list_price             float,