~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/simple_user_policy/tests/r/basic.result

  • Committer: Brian Aker
  • Date: 2011-02-04 09:28:16 UTC
  • mfrom: (2140.1.4 timestamp)
  • mto: This revision was merged to the branch mainline in revision 2144.
  • Revision ID: brian@tangent.org-20110204092816-2s32j9hlh6ztz7ti
Merge in fix for not found table (simplifies the caller as well).

Events are now just being processed on shared tables.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
create table t1 (kill_id int);
13
13
insert into t1 values(connection_id());
14
14
SELECT * from user1.dont_exist;
15
 
ERROR 42S02: Table 'user1.dont_exist' doesn't exist
 
15
ERROR 42S02: Unknown table 'user1.dont_exist'
16
16
SELECT SCHEMA_NAME FROM DATA_DICTIONARY.SCHEMAS ORDER BY SCHEMA_NAME;
17
17
SCHEMA_NAME
18
18
DATA_DICTIONARY