~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_str.result

  • Committer: Brian Aker
  • Date: 2009-08-06 15:04:21 UTC
  • mfrom: (1093.1.52 captain)
  • Revision ID: brian@gaz-20090806150421-w8yrasl1m8exorxs
Merge Jay

Show diffs side-by-side

added added

removed removed

Lines of Context:
810
810
20.06
811
811
select conv("18383815659218730760",10,10) + 0;
812
812
conv("18383815659218730760",10,10) + 0
813
 
1.838381565921873e19
 
813
1.83838156592187e19
814
814
select "18383815659218730760" + 0;
815
815
"18383815659218730760" + 0
816
 
1.838381565921873e19
 
816
1.83838156592187e19
817
817
CREATE TABLE t1 (code varchar(10));
818
818
INSERT INTO t1 VALUES ('a12'), ('A12'), ('a13');
819
819
SELECT ASCII(code), code FROM t1 WHERE code='A12';