~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to plugin/md5/tests/r/md5.result

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-03-18 12:12:31 UTC
  • Revision ID: james.westby@ubuntu.com-20100318121231-k6g1xe6cshbwa0f8
Tags: upstream-2010.03.1347
ImportĀ upstreamĀ versionĀ 2010.03.1347

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SELECT MD5("I love testing");
 
2
MD5("I love testing")
 
3
dc30ccbf874c4faa408ffdc500c2e29a
 
4
SELECT MD5("I love testing");
 
5
MD5("I love testing")
 
6
dc30ccbf874c4faa408ffdc500c2e29a
 
7
DROP TABLE IF EXISTS t1;
 
8
CREATE TABLE t1
 
9
(
 
10
some_text VARCHAR(100) NOT NULL
 
11
);
 
12
INSERT INTO t1 VALUES ("I love testing");
 
13
SELECT MD5("I love testing") = MD5(some_text) FROM t1;
 
14
MD5("I love testing") = MD5(some_text)
 
15
1
 
16
DROP TABLE t1;