Skip to content

Commit

Permalink
Merge branch 'master' of github.com:SOCI/soci
Browse files Browse the repository at this point in the history
  • Loading branch information
mloskot committed Oct 27, 2012
2 parents 8bbe405 + 8d4e46d commit f82e22e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/backends/mysql/test/test-mysql.cpp
Expand Up @@ -613,7 +613,7 @@ struct table_creator_one : public table_creator_base
sql << "create table soci_test(id integer, val integer, c char, "
"str varchar(20), sh int2, ul numeric(20), d float8, "
"tm datetime, i1 integer, i2 integer, i3 integer, "
"name varchar(20)) type=InnoDB";
"name varchar(20)) engine=InnoDB";
}
};

Expand Down Expand Up @@ -674,7 +674,7 @@ bool are_transactions_supported()
{
session sql(backEnd, connectString);
sql << "drop table if exists soci_test";
sql << "create table soci_test (id int) type=InnoDB";
sql << "create table soci_test (id int) engine=InnoDB";
row r;
sql << "show table status like \'soci_test\'", into(r);
bool retv = (r.get<std::string>(1) == "InnoDB");
Expand Down

0 comments on commit f82e22e

Please sign in to comment.