~stewart/drizzle/embedded-innodb-create-select-transaction-arrgh

« back to all changes in this revision

Viewing changes to mysql-test/suite/funcs_1/r/is_table_constraints_is.result

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
DROP DATABASE IF EXISTS db_datadict;
 
2
CREATE DATABASE db_datadict;
 
3
DROP   USER testuser1@localhost;
 
4
CREATE USER testuser1@localhost;
 
5
GRANT SELECT ON db_datadict.* TO testuser1@localhost;
 
6
SELECT * FROM information_schema.table_constraints
 
7
WHERE table_schema = 'information_schema'
 
8
ORDER BY table_schema,table_name,constraint_name;
 
9
CONSTRAINT_CATALOG      CONSTRAINT_SCHEMA       CONSTRAINT_NAME TABLE_SCHEMA    TABLE_NAME      CONSTRAINT_TYPE
 
10
# Establish connection testuser1 (user=testuser1)
 
11
SELECT * FROM information_schema.table_constraints
 
12
WHERE table_schema = 'information_schema'
 
13
ORDER BY table_schema,table_name,constraint_name;
 
14
CONSTRAINT_CATALOG      CONSTRAINT_SCHEMA       CONSTRAINT_NAME TABLE_SCHEMA    TABLE_NAME      CONSTRAINT_TYPE
 
15
# Switch to connection default and close connection testuser1
 
16
DROP USER testuser1@localhost;
 
17
DROP DATABASE db_datadict;