From aa129c75a9cc41630e3e62ba62d5c1ff498dc10a Mon Sep 17 00:00:00 2001 From: Richard Swinbank Date: Sun, 23 Oct 2022 12:53:18 +0100 Subject: [PATCH] updated catalog --- Labs/TableCatalog.json | 113 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 113 insertions(+) diff --git a/Labs/TableCatalog.json b/Labs/TableCatalog.json index dde69fa..0dae21b 100644 --- a/Labs/TableCatalog.json +++ b/Labs/TableCatalog.json @@ -682,5 +682,118 @@ "treatBooleanAsNumber": false } } + }, + { + "entityName": "SalesOrderDetail", + "translator": { + "type": "TabularTranslator", + "mappings": [ + { + "source": { + "type": "Int32", + "ordinal": 1 + }, + "sink": { + "name": "SalesOrderID", + "physicalType": "UTF8" + } + }, + { + "source": { + "type": "Int32", + "ordinal": 2 + }, + "sink": { + "name": "SalesOrderDetailID", + "physicalType": "UTF8" + } + }, + { + "source": { + "type": "String", + "ordinal": 3 + }, + "sink": { + "name": "CarrierTrackingNumber", + "physicalType": "UTF8" + } + }, + { + "source": { + "type": "Int32", + "ordinal": 4 + }, + "sink": { + "name": "OrderQty", + "physicalType": "UTF8" + } + }, + { + "source": { + "type": "Int32", + "ordinal": 5 + }, + "sink": { + "name": "ProductID", + "physicalType": "UTF8" + } + }, + { + "source": { + "type": "Int32", + "ordinal": 6 + }, + "sink": { + "name": "SpecialOfferID", + "physicalType": "UTF8" + } + }, + { + "source": { + "type": "Decimal", + "ordinal": 7 + }, + "sink": { + "name": "UnitPrice", + "physicalType": "UTF8" + } + }, + { + "source": { + "type": "Decimal", + "ordinal": 8 + }, + "sink": { + "name": "UnitPriceDiscount", + "physicalType": "UTF8" + } + }, + { + "source": { + "type": "Guid", + "ordinal": 9 + }, + "sink": { + "name": "rowguid", + "physicalType": "UTF8" + } + }, + { + "source": { + "type": "DateTime", + "ordinal": 10 + }, + "sink": { + "name": "ModifiedDate", + "physicalType": "UTF8" + } + } + ], + "typeConversion": true, + "typeConversionSettings": { + "allowDataTruncation": true, + "treatBooleanAsNumber": false + } + } } ] \ No newline at end of file