exec
drop table if exists auto_increment_tbl
----

exec
CREATE TABLE `auto_increment_tbl` (
  `pk` bigint NOT NULL AUTO_INCREMENT,
  `c0` bigint,
  PRIMARY KEY (`pk`)
)
----

exec
INSERT INTO auto_increment_tbl (c0) values
    (11),
    (22),
    (33)
----
