Till Westmann has uploaded a new change for review. https://asterix-gerrit.ics.uci.edu/1805
Change subject: Fix UUID printing for JSON and CSV ...................................................................... Fix UUID printing for JSON and CSV Change-Id: If36a71e81cf7ba53ce50e8728d09a3eb7577a946 --- M asterixdb/asterix-om/src/main/java/org/apache/asterix/formats/nontagged/CSVPrinterFactoryProvider.java M asterixdb/asterix-om/src/main/java/org/apache/asterix/formats/nontagged/CleanJSONPrinterFactoryProvider.java M asterixdb/asterix-om/src/main/java/org/apache/asterix/formats/nontagged/LosslessJSONPrinterFactoryProvider.java 3 files changed, 6 insertions(+), 6 deletions(-) git pull ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb refs/changes/05/1805/1 diff --git a/asterixdb/asterix-om/src/main/java/org/apache/asterix/formats/nontagged/CSVPrinterFactoryProvider.java b/asterixdb/asterix-om/src/main/java/org/apache/asterix/formats/nontagged/CSVPrinterFactoryProvider.java index e8a2ae7..cc4ed0d 100644 --- a/asterixdb/asterix-om/src/main/java/org/apache/asterix/formats/nontagged/CSVPrinterFactoryProvider.java +++ b/asterixdb/asterix-om/src/main/java/org/apache/asterix/formats/nontagged/CSVPrinterFactoryProvider.java @@ -18,7 +18,6 @@ */ package org.apache.asterix.formats.nontagged; -import org.apache.asterix.dataflow.data.nontagged.printers.adm.AUUIDPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.adm.ShortWithoutTypeInfoPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.csv.ABooleanPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.csv.ACirclePrinterFactory; @@ -35,8 +34,8 @@ import org.apache.asterix.dataflow.data.nontagged.printers.csv.AIntervalPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.csv.ALinePrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.csv.ANullPrinterFactory; -import org.apache.asterix.dataflow.data.nontagged.printers.csv.AOptionalFieldPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.csv.AObjectPrinterFactory; +import org.apache.asterix.dataflow.data.nontagged.printers.csv.AOptionalFieldPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.csv.APoint3DPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.csv.APointPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.csv.APolygonPrinterFactory; @@ -44,6 +43,7 @@ import org.apache.asterix.dataflow.data.nontagged.printers.csv.ARectanglePrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.csv.AStringPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.csv.ATimePrinterFactory; +import org.apache.asterix.dataflow.data.nontagged.printers.csv.AUUIDPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.csv.AUnionPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.csv.AYearMonthDurationPrinterFactory; import org.apache.asterix.om.types.ARecordType; diff --git a/asterixdb/asterix-om/src/main/java/org/apache/asterix/formats/nontagged/CleanJSONPrinterFactoryProvider.java b/asterixdb/asterix-om/src/main/java/org/apache/asterix/formats/nontagged/CleanJSONPrinterFactoryProvider.java index 949f11f..51b0c6c 100644 --- a/asterixdb/asterix-om/src/main/java/org/apache/asterix/formats/nontagged/CleanJSONPrinterFactoryProvider.java +++ b/asterixdb/asterix-om/src/main/java/org/apache/asterix/formats/nontagged/CleanJSONPrinterFactoryProvider.java @@ -18,7 +18,6 @@ */ package org.apache.asterix.formats.nontagged; -import org.apache.asterix.dataflow.data.nontagged.printers.adm.AUUIDPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.adm.ShortWithoutTypeInfoPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.json.clean.ABinaryHexPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.json.clean.ABooleanPrinterFactory; @@ -36,8 +35,8 @@ import org.apache.asterix.dataflow.data.nontagged.printers.json.clean.AIntervalPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.json.clean.ALinePrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.json.clean.ANullPrinterFactory; -import org.apache.asterix.dataflow.data.nontagged.printers.json.clean.AOptionalFieldPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.json.clean.AObjectPrinterFactory; +import org.apache.asterix.dataflow.data.nontagged.printers.json.clean.AOptionalFieldPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.json.clean.AOrderedlistPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.json.clean.APoint3DPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.json.clean.APointPrinterFactory; @@ -46,6 +45,7 @@ import org.apache.asterix.dataflow.data.nontagged.printers.json.clean.ARectanglePrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.json.clean.AStringPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.json.clean.ATimePrinterFactory; +import org.apache.asterix.dataflow.data.nontagged.printers.json.clean.AUUIDPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.json.clean.AUnionPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.json.clean.AUnorderedlistPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.json.clean.AYearMonthDurationPrinterFactory; diff --git a/asterixdb/asterix-om/src/main/java/org/apache/asterix/formats/nontagged/LosslessJSONPrinterFactoryProvider.java b/asterixdb/asterix-om/src/main/java/org/apache/asterix/formats/nontagged/LosslessJSONPrinterFactoryProvider.java index 3edaa75..8de46f7 100644 --- a/asterixdb/asterix-om/src/main/java/org/apache/asterix/formats/nontagged/LosslessJSONPrinterFactoryProvider.java +++ b/asterixdb/asterix-om/src/main/java/org/apache/asterix/formats/nontagged/LosslessJSONPrinterFactoryProvider.java @@ -18,7 +18,6 @@ */ package org.apache.asterix.formats.nontagged; -import org.apache.asterix.dataflow.data.nontagged.printers.adm.AUUIDPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.adm.ShortWithoutTypeInfoPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.json.lossless.ABinaryHexPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.json.lossless.ABooleanPrinterFactory; @@ -36,8 +35,8 @@ import org.apache.asterix.dataflow.data.nontagged.printers.json.lossless.AIntervalPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.json.lossless.ALinePrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.json.lossless.ANullPrinterFactory; -import org.apache.asterix.dataflow.data.nontagged.printers.json.lossless.AOptionalFieldPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.json.lossless.AObjectPrinterFactory; +import org.apache.asterix.dataflow.data.nontagged.printers.json.lossless.AOptionalFieldPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.json.lossless.AOrderedlistPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.json.lossless.APoint3DPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.json.lossless.APointPrinterFactory; @@ -46,6 +45,7 @@ import org.apache.asterix.dataflow.data.nontagged.printers.json.lossless.ARectanglePrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.json.lossless.AStringPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.json.lossless.ATimePrinterFactory; +import org.apache.asterix.dataflow.data.nontagged.printers.json.lossless.AUUIDPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.json.lossless.AUnionPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.json.lossless.AUnorderedlistPrinterFactory; import org.apache.asterix.dataflow.data.nontagged.printers.json.lossless.AYearMonthDurationPrinterFactory; -- To view, visit https://asterix-gerrit.ics.uci.edu/1805 To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings Gerrit-MessageType: newchange Gerrit-Change-Id: If36a71e81cf7ba53ce50e8728d09a3eb7577a946 Gerrit-PatchSet: 1 Gerrit-Project: asterixdb Gerrit-Branch: master Gerrit-Owner: Till Westmann <[email protected]>
