~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/func_system.test

  • Committer: Brian Aker
  • Date: 2008-12-16 17:15:24 UTC
  • Revision ID: brian@gir.tangent.org-20081216171524-pej54rx82rt0krxb
Make the test portable. 

Trick folks... IP address... for localhost... not portable. Welcome to IPV4
mixed with IPV6.

Someone should come up with a drink for that...

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
insert into t1 values('row 1');
28
28
insert into t1 values('row 2');
29
29
insert into t1 values('row 3');
30
 
select concat(user(), '--', c1) from t1;
 
30
select concat(SUBSTRING(user(), 0, 4), '--', c1) from t1;
31
31
select concat(database(), '--', c1) from t1;
32
32
drop table t1;
33
33