~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/utility_functions/tests/t/execute.test

  • Committer: Brian Aker
  • Date: 2010-12-18 10:14:05 UTC
  • mfrom: (2008.1.3 clean)
  • Revision ID: brian@tangent.org-20101218101405-qjbse29shi9coklg
Merge of user identifier work

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Simple test of execute
 
2
 
 
3
CREATE TABLE t1 (A VARCHAR(150));
 
4
SET @execute= "SELECT WAIT('barrier')";
 
5
INSERT INTO t1 VALUES (@execute), (@execute), (@execute);
 
6
SELECT EXECUTE(A) FROM t1;
 
7
 
 
8
DROP TABLE t1;