# File test.rb, line 620
  def test_execute2()
    if @m.server_version >= 40100 then
      @m.query("create temporary table t (i int)")
      @s.prepare("insert into t values (?)")
      @s.execute(123)
      @s.execute("456")
      @s.prepare("select * from t")
      @s.execute
      assert_equal([123], @s.fetch)
      assert_equal([456], @s.fetch)
    end
  end