~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/filesystem_engine/tests/r/multiple_update.result

  • Committer: patrick crews
  • Date: 2011-01-26 21:35:28 UTC
  • mfrom: (2088.9.25 project_steve_austin)
  • mto: This revision was merged to the branch mainline in revision 2121.
  • Revision ID: gleebix@gmail.com-20110126213528-rounf54hyridrak4
Re-merge with trunk to fix make-distcheck

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
DROP TABLE IF EXISTS t1;
2
 
CREATE TABLE t1 (a INT) ENGINE=FILESYSTEM,FILE="../../filesystem_ln/multiple_update.data";
 
2
CREATE TABLE t1 (a INT) ENGINE=FILESYSTEM,FILE="VARDIR/filesystem_ln/multiple_update.data";
3
3
UPDATE t1 SET a=222 WHERE a=111;
4
4
UPDATE t1 SET a=111 WHERE a=222;
5
5
UPDATE t1 SET a=222 WHERE a=111;