# File test.rb, line 646
  def test_execute4()
    if @m.server_version >= 40100 then
      @m.query("create temporary table t (i int, c char(255), t timestamp)")
      @s.prepare("insert into t values (?,?,?)")
      @s.execute(nil, "hoge", Mysql::Time.new(2005,7,19,23,53,0));
      @s.prepare("select * from t")
      @s.execute
      assert_equal([nil, "hoge", Mysql::Time.new(2005,7,19,23,53,0)], @s.fetch)
    end
  end