# File test.rb, line 665
  def test_fetch_tinyint()
    if @m.server_version >= 40100 then
      @m.query("create temporary table t (i tinyint)")
      @m.query("insert into t values (0),(-1),(127),(-128),(255),(-255)")
      @s.prepare("select i from t")
      @s.execute
      assert_equal([0], @s.fetch)
      assert_equal([-1], @s.fetch)
      assert_equal([127], @s.fetch)
      assert_equal([-128], @s.fetch)
      assert_equal([127], @s.fetch)
      assert_equal([-128], @s.fetch)
    end
  end