~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/information_schema.test

  • Committer: Brian Aker
  • Date: 2010-01-15 01:41:40 UTC
  • mfrom: (1259.8.3 i_s_work)
  • Revision ID: brian@gaz-20100115014140-0n6kh7fqhp1abqs4
Merge Joe Daly

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
SELECT table_schema, count(*) FROM information_schema.TABLES
128
128
WHERE table_name NOT LIKE 'ndb_%' AND 
129
129
table_name NOT LIKE 'falcon%' AND
130
 
table_name NOT LIKE 'MEMCACHED%'
 
130
plugin_name IS NULL
131
131
GROUP BY TABLE_SCHEMA;
132
132
 
133
133
#
259
259
                  c2.column_name LIKE '%SCHEMA%'
260
260
        )
261
261
  AND t.table_name NOT LIKE 'falcon%'
262
 
  AND t.table_name NOT LIKE 'MEMCACHED%';
 
262
  AND t.plugin_name IS NULL;
263
263
SELECT t.table_name, c1.column_name
264
264
  FROM information_schema.tables t
265
265
       INNER JOIN
275
275
                  c2.column_name LIKE '%SCHEMA%'
276
276
        )
277
277
  AND t.table_name NOT LIKE 'falcon%'
278
 
  AND t.table_name NOT LIKE 'MEMCACHED%';
 
278
  AND t.plugin_name IS NULL;
279
279
 
280
280
#
281
281
# Bug#21231: query with a simple non-correlated subquery over
313
313
on t.table_schema = c1.table_schema AND t.table_name = c1.table_name
314
314
where t.table_schema = 'information_schema' AND
315
315
      t.table_name not like 'falcon%' AND
316
 
      t.table_name not like 'MEMCACHED%' AND
 
316
      t.plugin_name IS NULL AND
317
317
        c1.ordinal_position =
318
318
        (select isnull(c2.column_type) -
319
319
         isnull(group_concat(c2.table_schema, '.', c2.table_name)) +
437
437
#
438
438
SELECT table_name, column_name
439
439
FROM information_schema.columns
440
 
WHERE table_name NOT LIKE 'MEMCACHED%'
 
440
WHERE table_name IN
 
441
(SELECT table_name FROM information_schema.tables 
 
442
 WHERE plugin_name IS NULL)
441
443
ORDER BY table_name;
442
444
 
443
445
#
500
502
#
501
503
SELECT table_schema, table_name
502
504
FROM information_schema.tables
503
 
WHERE table_name NOT LIKE 'MEMCACHED%'
 
505
WHERE plugin_name IS NULL
504
506
ORDER BY table_name;
505
507
 
506
508