# File test.rb, line 1024
  def test_fetch_tinyblob()
    if @m.server_version >= 40100 then
      @m.query("create temporary table t (i tinyblob)")
      @m.query("insert into t values (null),('abc')")
      @s.prepare("select i from t")
      @s.execute
      assert_equal([nil], @s.fetch)
      assert_equal(["abc"], @s.fetch)
    end
  end