https://github.com/voldemort/voldemort
Raw File
Tip revision: dcb4135510e4dc9dcced79c4d3df717399835f99 authored by Zhongjie Wu on 15 April 2014, 23:00:22 UTC
Prepare to release 1.7.2
Tip revision: dcb4135
create_mysql_test.sql
insert into test_table (key_, value_) values (?, ?) on duplicate key update value_ = ?
create table test_table (key_ varchar(200) not null primary key, value_ varchar(200)) engine=InnoDB;
back to top