~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/select.result

  • Committer: Monty
  • Date: 2008-11-28 23:12:37 UTC
  • mto: (632.1.3 devel)
  • mto: This revision was merged to the branch mainline in revision 631.
  • Revision ID: mordred@palanthas.inaugust.com-20081128231237-3ie7yeohoyq3cdxi
Updated test output with new and improved error messages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2932
2932
NULL    a       NULL
2933
2933
drop table t1,t2;
2934
2934
select * from (select * left join t on f1=f2) tt;
2935
 
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 'on f1=f2) tt' at line 1
 
2935
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 'on f1=f2) tt' at line 1
2936
2936
CREATE TABLE t1 (sku int PRIMARY KEY, pr int);
2937
2937
CREATE TABLE t2 (sku int PRIMARY KEY, sppr int, name varchar(255));
2938
2938
INSERT INTO t1 VALUES
3143
3143
CREATE TABLE t1(a int);
3144
3144
INSERT into t1 values (1), (2), (3);
3145
3145
SELECT * FROM t1 LIMIT 2, -1;
3146
 
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 '-1' at line 1
 
3146
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 '-1' at line 1
3147
3147
DROP TABLE t1;
3148
3148
CREATE TABLE t1 (
3149
3149
ID_with_null int NULL,