~akiban-technologies/akiban-server/trunk

« back to all changes in this revision

Viewing changes to src/test/java/com/akiban/server/api/ddl/DDLFunctionsMockBase.java

merge nwilliams: Change SERIAL back to BY DEFAULT, fix div by zero on maximum range cycling sequence and underlying support for ALTER SEQUENCE.

https://code.launchpad.net/~nwilliams/akiban-server/sequence-fix-and-tweak/+merge/177031

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
    }
67
67
 
68
68
    @Override
 
69
    public void alterSequence(Session session, TableName sequenceName, Sequence newDefinition) {
 
70
        throw new UnsupportedOperationException();
 
71
    }
 
72
 
 
73
    @Override
69
74
    public void dropSchema(Session session, String schemaName) {
70
75
        throw new UnsupportedOperationException();
71
76
    }