~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbxt/tests/t/basic_insert_multi_column.test

  • Committer: Brian Aker
  • Date: 2010-10-08 17:09:37 UTC
  • mto: This revision was merged to the branch mainline in revision 1824.
  • Revision ID: brian@tangent.org-20101008170937-qn1u67vbkevxidvs
Removes PBXT from valgrind testing (Padraig will write to Paul, the problem is PBXT not playing nicely with the STL).
I found a bug where the ENV table was not presenting us with good values for
variables (which was my mistake).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
--source include/have_linux.inc
 
2
--source include/have_valgrind.inc
2
3
SET SESSION storage_engine=pbxt;
3
4
create table t1 (a int primary key, b varchar(10));
4
5
insert into t1 (a,b) values (1, 'hello');