You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@asterixdb.apache.org by mb...@apache.org on 2024/02/19 23:36:08 UTC

(asterixdb) branch master updated: [NO ISSUE][*DB][EXT] Add missing serialVersionUID

This is an automated email from the ASF dual-hosted git repository.

mblow pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/asterixdb.git


The following commit(s) were added to refs/heads/master by this push:
     new c45e8f8349 [NO ISSUE][*DB][EXT] Add missing serialVersionUID
c45e8f8349 is described below

commit c45e8f8349495f5af56b3df4d02424857ff00037
Author: Michael Blow <mi...@couchbase.com>
AuthorDate: Mon Feb 19 17:23:59 2024 -0500

    [NO ISSUE][*DB][EXT] Add missing serialVersionUID
    
    Change-Id: I1e0d4569158c752790b2b7303b636bde4438e9cb
    Reviewed-on: https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/18170
    Reviewed-by: Michael Blow <mb...@apache.org>
    Reviewed-by: Hussain Towaileb <hu...@gmail.com>
    Tested-by: Michael Blow <mb...@apache.org>
---
 .../external/parser/factory/AbstractGenericDataParserFactory.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/asterixdb/asterix-external-data/src/main/java/org/apache/asterix/external/parser/factory/AbstractGenericDataParserFactory.java b/asterixdb/asterix-external-data/src/main/java/org/apache/asterix/external/parser/factory/AbstractGenericDataParserFactory.java
index d2aa4ea552..3aa4b26cc1 100644
--- a/asterixdb/asterix-external-data/src/main/java/org/apache/asterix/external/parser/factory/AbstractGenericDataParserFactory.java
+++ b/asterixdb/asterix-external-data/src/main/java/org/apache/asterix/external/parser/factory/AbstractGenericDataParserFactory.java
@@ -31,7 +31,7 @@ import org.apache.asterix.om.types.AUnionType;
 import org.apache.asterix.om.types.IAType;
 
 public abstract class AbstractGenericDataParserFactory<T> extends AbstractRecordStreamParserFactory<T> {
-
+    private static final long serialVersionUID = 1L;
     private static final List<ATypeTag> UNSUPPORTED_TYPES = Collections
             .unmodifiableList(Arrays.asList(ATypeTag.MULTISET, ATypeTag.POINT3D, ATypeTag.CIRCLE, ATypeTag.RECTANGLE,
                     ATypeTag.INTERVAL, ATypeTag.DAYTIMEDURATION, ATypeTag.DURATION, ATypeTag.BINARY));