You are viewing a plain text version of this content. The canonical link for it is here.
Posted to codereview@trafodion.apache.org by DaveBirdsall <gi...@git.apache.org> on 2018/08/07 22:06:15 UTC

[GitHub] trafodion pull request #1684: [TRAFODION-3179] Correct Syntax Descriptions o...

Github user DaveBirdsall commented on a diff in the pull request:

    https://github.com/apache/trafodion/pull/1684#discussion_r208400577
  
    --- Diff: docs/spj_guide/src/asciidoc/_chapters/develop_spjs.adoc ---
    @@ -83,19 +83,19 @@ PIC[TURE] X^1^ +
     NCHAR +
     NCHAR VARYING +
     NATIONAL CHAR[ACTER] +
    -NATIONAL CHAR[ACTER] VARYING | java.lang.string
    -| DATE | java.sql.date
    -| TIME | java.sql.time
    -| TIMESTAMP | java.sql.timestamp
    +NATIONAL CHAR[ACTER] VARYING | java.lang.String
    +| DATE | java.sql.Date
    +| TIME | java.sql.Time
    +| TIMESTAMP | java.sql.Timestamp
     | DEC[IMAL]^2^ +
     PIC[TURE] S9^3^ +
    -NUMERIC (including numeric with a precision greater than eighteen)^2^ | java.math.bigdecimal
    +NUMERIC (including numeric with a precision greater than eighteen)^2^ | java.math.Bigdecimal
    --- End diff --
    
    Oops... spotted a typo. It should be "java.math.BigDecimal" (note the capital D in the middle of things)


---