~eday/drizzle/eday-dev

« back to all changes in this revision

Viewing changes to plugin/transaction_log/tests/t/alter.inc

  • Committer: Eric Day
  • Date: 2010-01-07 20:02:38 UTC
  • mfrom: (971.3.291 staging)
  • Revision ID: eday@oddments.org-20100107200238-uqw8v6kv9pl7nny5
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
2
 
# Simple test of the serial event log for testing ALTER command 
3
 
4
 
# We create a table then alter it by adding a column into it. 
5
 
6
 
# We then use the transaction_reader in drizzled/message/ to read the events.
 
2
# Simple test of the transaction log for testing ALTER command 
7
3
#
8
4
 
9
5
--disable_warnings
24
20
 
25
21
# Add an index via ALTER TABLE
26
22
ALTER TABLE t1 ADD INDEX ix_padding (padding(20));
 
23
 
 
24
DROP TABLE t1;