-
Notifications
You must be signed in to change notification settings - Fork 10
/
order_items.avsc
43 lines (43 loc) · 1.07 KB
/
order_items.avsc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"type" : "record",
"name" : "order_items",
"doc" : "Sqoop import of order_items",
"fields" : [ {
"name" : "order_item_id",
"type" : [ "null", "int" ],
"default" : null,
"columnName" : "order_item_id",
"sqlType" : "4"
}, {
"name" : "order_item_order_id",
"type" : [ "null", "int" ],
"default" : null,
"columnName" : "order_item_order_id",
"sqlType" : "4"
}, {
"name" : "order_item_product_id",
"type" : [ "null", "int" ],
"default" : null,
"columnName" : "order_item_product_id",
"sqlType" : "4"
}, {
"name" : "order_item_quantity",
"type" : [ "null", "int" ],
"default" : null,
"columnName" : "order_item_quantity",
"sqlType" : "-6"
}, {
"name" : "order_item_subtotal",
"type" : [ "null", "float" ],
"default" : null,
"columnName" : "order_item_subtotal",
"sqlType" : "7"
}, {
"name" : "order_item_product_price",
"type" : [ "null", "float" ],
"default" : null,
"columnName" : "order_item_product_price",
"sqlType" : "7"
} ],
"tableName" : "order_items"
}