Repository: incubator-trafodion Updated Branches: refs/heads/master 26076ab9c -> ebafce11b
[TRAFODION-2045] Minor Javadoc/Doxygen update Project: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/commit/0c77153a Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/tree/0c77153a Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/diff/0c77153a Branch: refs/heads/master Commit: 0c77153a67e58782b8ce0bbbf3e6e20606944291 Parents: 2459135 Author: Hans Zeller <[email protected]> Authored: Thu Jun 9 19:40:52 2016 +0000 Committer: Hans Zeller <[email protected]> Committed: Thu Jun 9 19:40:52 2016 +0000 ---------------------------------------------------------------------- core/sql/sqludr/sqludr.cpp | 6 ++++++ core/sql/src/main/java/org/trafodion/sql/udr/ColumnInfo.java | 6 ++++++ 2 files changed, 12 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/0c77153a/core/sql/sqludr/sqludr.cpp ---------------------------------------------------------------------- diff --git a/core/sql/sqludr/sqludr.cpp b/core/sql/sqludr/sqludr.cpp index 3ea6ad6..66e3ca1 100644 --- a/core/sql/sqludr/sqludr.cpp +++ b/core/sql/sqludr/sqludr.cpp @@ -2684,6 +2684,12 @@ ColumnInfo::ColumnInfo() : /** * Constructor, specifying a name and a type + * + * @param name Name of the column to add. Use UPPER CASE letters, + * digits and underscore, otherwise you will need to + * use delimited column names with matching case in + * Trafodion. + * @param type Type of the column to add. */ ColumnInfo::ColumnInfo(const char *name, const TypeInfo &type) : http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/0c77153a/core/sql/src/main/java/org/trafodion/sql/udr/ColumnInfo.java ---------------------------------------------------------------------- diff --git a/core/sql/src/main/java/org/trafodion/sql/udr/ColumnInfo.java b/core/sql/src/main/java/org/trafodion/sql/udr/ColumnInfo.java index 09c7d3a..3d0e6d8 100644 --- a/core/sql/src/main/java/org/trafodion/sql/udr/ColumnInfo.java +++ b/core/sql/src/main/java/org/trafodion/sql/udr/ColumnInfo.java @@ -60,6 +60,12 @@ import java.nio.ByteBuffer; /** * Constructor, specifying a name and a type + * + * @param name Name of the column to add. Use UPPER CASE letters, + * digits and underscore, otherwise you will need to + * use delimited column names with matching case in + * Trafodion. + * @param type Type of the column to add. */ public ColumnInfo(String name, TypeInfo type){ super(TMUDRObjectType.COLUMN_INFO_OBJ, getCurrentVersion());
