Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In SourceDataFileJpa size should be: 

    ```java

...

 

Code Block
languagejava
themeEclipse
/** The file size. */

...


...

@Column(name = "\"size\"", nullable = false, unique = false)

...


private Long size;

...

 

 

In TerminologyJpa current should be:

    ```java

...

Code Block
languagejava
themeEclipse
/** The is current. */

...


@Column(name = "\"current\"", nullable = false)

...


private boolean current = false;

    ```

Empty Strings

  • Oracle will convert an empty string ("") to a NULL.  This causes failures when loading data as fields that are NOT NULL and have a "" in MySQL cannot have a NULL in Oracle.

...