Repository: asterixdb
Updated Branches:
  refs/heads/master 2cd936670 -> 8cbb05cec


Fix UUID printing for JSON and CSV

Change-Id: If36a71e81cf7ba53ce50e8728d09a3eb7577a946
Reviewed-on: https://asterix-gerrit.ics.uci.edu/1805
Sonar-Qube: Jenkins <[email protected]>
Integration-Tests: Jenkins <[email protected]>
Tested-by: Jenkins <[email protected]>
BAD: Jenkins <[email protected]>
Reviewed-by: Steven Jacobs <[email protected]>


Project: http://git-wip-us.apache.org/repos/asf/asterixdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/asterixdb/commit/8cbb05ce
Tree: http://git-wip-us.apache.org/repos/asf/asterixdb/tree/8cbb05ce
Diff: http://git-wip-us.apache.org/repos/asf/asterixdb/diff/8cbb05ce

Branch: refs/heads/master
Commit: 8cbb05cec2f5df112cd523a82f23a40ba79df307
Parents: 2cd9366
Author: Till Westmann <[email protected]>
Authored: Mon Jun 5 19:49:43 2017 -0700
Committer: Steven Jacobs <[email protected]>
Committed: Wed Jun 7 09:52:31 2017 -0700

----------------------------------------------------------------------
 .../asterix/formats/nontagged/CSVPrinterFactoryProvider.java     | 4 ++--
 .../formats/nontagged/CleanJSONPrinterFactoryProvider.java       | 4 ++--
 .../formats/nontagged/LosslessJSONPrinterFactoryProvider.java    | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/asterixdb/blob/8cbb05ce/asterixdb/asterix-om/src/main/java/org/apache/asterix/formats/nontagged/CSVPrinterFactoryProvider.java
----------------------------------------------------------------------
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.AInt8PrinterFacto
 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.ARecordPrinterFac
 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;

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/8cbb05ce/asterixdb/asterix-om/src/main/java/org/apache/asterix/formats/nontagged/CleanJSONPrinterFactoryProvider.java
----------------------------------------------------------------------
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.AInt8Print
 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.ARecordPri
 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;

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/8cbb05ce/asterixdb/asterix-om/src/main/java/org/apache/asterix/formats/nontagged/LosslessJSONPrinterFactoryProvider.java
----------------------------------------------------------------------
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.AInt8Pr
 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.ARecord
 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;

Reply via email to