# File test.rb, line 573
  def test_bind_result_unmatch_count()
    if @m.server_version >= 40100 then
      @m.query("create temporary table t (i int, c char(10), d double, t datetime)")
      @m.query("insert into t values (123, '9abcdefg', 1.2345, 20050802235011)")
      @s.prepare("select * from t")
      assert_raises(Mysql::Error){@s.bind_result(nil, nil)}
    end
  end