~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/session_dictionary/tests/t/user_variable.test

  • Committer: Lee Bieber
  • Date: 2010-11-13 23:44:42 UTC
  • mfrom: (1927.2.2 trunk)
  • Revision ID: kalebral@gmail.com-20101113234442-zaihys061gmpswvl
Merge Brian - Add table function so that you can see set @var style variables

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Insert some variables, and then see if they exist.
 
2
 
 
3
SELECT * FROM DATA_DICTIONARY.USER_DEFINED_VARIABLES;
 
4
SET @a="fsdfsdf";
 
5
SET @g= NULL;
 
6
 
 
7
SELECT * FROM DATA_DICTIONARY.USER_DEFINED_VARIABLES;
 
8
SET @a= NULL;