Remove unused sequences code

This commit is contained in:
Dan Sosedoff
2016-01-12 22:05:32 -06:00
parent fbaa61bbbc
commit 556e7d445a
7 changed files with 2 additions and 39 deletions

View File

@@ -207,20 +207,6 @@ func test_TableConstraints(t *testing.T) {
assert.Equal(t, 2, len(res.Rows))
}
func test_Sequences(t *testing.T) {
res, err := testClient.Sequences()
expected := []string{
"author_ids",
"book_ids",
"shipments_ship_id_seq",
"subject_ids",
}
assert.Equal(t, nil, err)
assert.Equal(t, expected, res)
}
func test_Query(t *testing.T) {
res, err := testClient.Query("SELECT * FROM books")
@@ -301,7 +287,6 @@ func TestAll(t *testing.T) {
test_TableInfo(t)
test_TableIndexes(t)
test_TableConstraints(t)
test_Sequences(t)
test_Query(t)
test_QueryError(t)
test_QueryInvalidTable(t)