config root man

Current Path : /home/usr.opt/mysql57/mysql-test/suite/ndb_memcache/t/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //home/usr.opt/mysql57/mysql-test/suite/ndb_memcache/t/math3.test

# The include statement below is a temp one for tests that are yet to
#be ported to run with InnoDB,
#but needs to be kept for tests that would need MyISAM in future.
--source include/force_myisam_default.inc

--source include/have_ndb.inc
--source suite/ndb_memcache/include/have_memcache.inc


# Test INCR and DECR with binary protocol

--perl

use strict;
use lib "lib/";
use My::Memcache;

my $port = $ENV{NDB_MEMCACHED_1_PORT} or die "Need NDB_MEMCACHED_1_PORT";

my $mc = My::Memcache::Binary->new();
my $r = $mc->connect("localhost",$port);

if($r == 0) {
  print STDERR "DID NOT CONNECT TO MEMCACHE AT PORT $port \n";
}
else {
  my $r;
  
  $mc->delete("math_test_3a");
  $mc->delete("math_test_3b");
  
  $r = $mc->incr("math_test_3a", 1, 1500);   # initialize at 1500
  ($r == 1500) || $mc->fail("t1 expected 1500");

  $r = $mc->incr("math_test_3a", 6);         # increment to 1506
  ($r == 1506) || $mc->fail("t2 expected 1506");
    
  $r = $mc->decr("math_test_3b", 1, 1);      # initialize at 1
  ($r == 1)    || $mc->fail("t3 expected 1");

  $r = $mc->decr("math_test_3b", 1);         # decr to 0
  ($r == 0)    || $mc->fail("t4 expected 0");

  $r = $mc->decr("math_test_3b", 1);         # should not wrap below 0.    
  ($r == 0)    || $mc->fail("t5 expected 0");
}

EOF

SELECT mkey, math_value 
FROM ndbmemcache.demo_table where mkey like 'math_test_3%'
ORDER BY mkey;


Man Man