We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents abe917e + 57fdb5f commit 3b39a6dCopy full SHA for 3b39a6d
pkg/cmd/roachtest/operations/sql_objects.go
@@ -110,6 +110,14 @@ func registerCreateSQLOperations(r registry.Registry) {
110
return fmt.Sprintf("CREATE TABLE %s (id INT PRIMARY KEY, val STRING)", name)
111
},
112
113
+ {
114
+ name: "create-sequence",
115
+ objectType: "SEQUENCE",
116
+ prefix: "roachtest_sequence",
117
+ createSQL: func(name string) string {
118
+ return fmt.Sprintf("CREATE SEQUENCE %s", name)
119
+ },
120
121
}
122
123
for _, obj := range objs {
0 commit comments