/** Write a check constraint. */
  protected void writeCheckConstraint(DdlBuffer buffer, Column column, String checkConstraint)
      throws IOException {

    String ckName = column.getCheckConstraintName();

    buffer.append(",").newLine();
    buffer.append("  constraint ").append(ckName);
    buffer.append(" ").append(checkConstraint);
  }