Rejected
Details
Assignee
UnassignedUnassignedReporter
Magnus LindkvistMagnus LindkvistOriginal estimate
Time tracking
No time logged3h remainingComponents
Affects versions
Priority
Minor
Details
Details
Assignee
Unassigned
UnassignedReporter
Magnus Lindkvist
Magnus LindkvistOriginal estimate
Time tracking
No time logged3h remaining
Components
Affects versions
Priority
Created November 19, 2009 at 12:56 PM
Updated July 8, 2014 at 3:10 PM
Resolved July 8, 2014 at 3:10 PM
Adding a row to a table with only one column of type SERIAL8 generates the query "INSERT INTO table_name VALUES ( )". Correct syntax for this is "INSERT INTO table_name VALUES (0)" in Informix.
Adding this in InformixDialect.java fixes this problem:
public String getIdentityInsertString() {
return "0";
}