~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/alter_table.result

  • Committer: Brian Aker
  • Date: 2008-11-29 02:09:01 UTC
  • mfrom: (629.2.6 devel)
  • Revision ID: brian@tangent.org-20081129020901-khmbgwelmn6ysx7r
Merge from Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
713
713
3       3       Stored Functions        You
714
714
2       3       Server  Me
715
715
alter table table_24562 order by 12;
716
 
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '12' at line 1
 
716
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near '12' at line 1
717
717
alter table table_24562 order by (section + 12);
718
 
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '(section + 12)' at line 1
 
718
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near '(section + 12)' at line 1
719
719
alter table table_24562 order by length(title);
720
 
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '(title)' at line 1
 
720
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near '(title)' at line 1
721
721
alter table table_24562 order by no_such_col;
722
722
ERROR 42S22: Unknown column 'no_such_col' in 'order clause'
723
723
drop table table_24562;