~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/odbc.test

  • Committer: Brian Aker
  • Date: 2010-02-10 18:04:24 UTC
  • mfrom: (1286.1.5 build)
  • Revision ID: brian@gaz-20100210180424-03ypoyifmlc2lgcp
Merge of Brian/Padraig

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#
27
27
CREATE TABLE t1 (a INT AUTO_INCREMENT PRIMARY KEY);
28
28
INSERT INTO t1 VALUES (NULL);
29
 
SELECT sql_no_cache a, last_insert_id() FROM t1 WHERE a IS NULL;
30
 
SELECT sql_no_cache a, last_insert_id() FROM t1 WHERE a IS NULL;
31
 
SELECT sql_no_cache a, last_insert_id() FROM t1;
 
29
SELECT a, last_insert_id() FROM t1 WHERE a IS NULL;
 
30
SELECT a, last_insert_id() FROM t1 WHERE a IS NULL;
 
31
SELECT a, last_insert_id() FROM t1;
32
32
DROP TABLE t1;
33
33
 
34
34
# End of 4.1 tests