~ubuntu-branches/ubuntu/maverick/mysql-5.1/maverick-proposed

« back to all changes in this revision

Viewing changes to mysql-test/r/ctype_utf8.result

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-22 14:16:05 UTC
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: package-import@ubuntu.com-20120222141605-nxlu9yzc6attylc2
Tags: upstream-5.1.61
Import upstream version 5.1.61

Show diffs side-by-side

added added

removed removed

Lines of Context:
1898
1898
70000   1092
1899
1899
DROP TABLE t1;
1900
1900
End of 5.0 tests
 
1901
SELECT LENGTH(RPAD(0.0115E88, 61297, _utf8'яэюя'));
 
1902
LENGTH(RPAD(0.0115E88, 61297, _utf8'яэюя'))
 
1903
61297
 
1904
SELECT LENGTH(RPAD(0.0115E88, 61297, _utf8'йцуя'));
 
1905
LENGTH(RPAD(0.0115E88, 61297, _utf8'йцуя'))
 
1906
61297
 
1907
SELECT HEX(RPAD(0x20, 2, _utf8 0xD18F));
 
1908
HEX(RPAD(0x20, 2, _utf8 0xD18F))
 
1909
20D1
 
1910
SELECT HEX(RPAD(0x20, 4, _utf8 0xD18F));
 
1911
HEX(RPAD(0x20, 4, _utf8 0xD18F))
 
1912
20D18FD1
 
1913
SELECT HEX(LPAD(0x20, 2, _utf8 0xD18F));
 
1914
HEX(LPAD(0x20, 2, _utf8 0xD18F))
 
1915
D120
 
1916
SELECT HEX(LPAD(0x20, 4, _utf8 0xD18F));
 
1917
HEX(LPAD(0x20, 4, _utf8 0xD18F))
 
1918
D18FD120
 
1919
SELECT HEX(RPAD(_utf8 0xD18F, 3, 0x20));
 
1920
HEX(RPAD(_utf8 0xD18F, 3, 0x20))
 
1921
D18F20
 
1922
SELECT HEX(LPAD(_utf8 0xD18F, 3, 0x20));
 
1923
HEX(LPAD(_utf8 0xD18F, 3, 0x20))
 
1924
20D18F
 
1925
SELECT HEX(INSERT(_utf8 0xD18F, 2, 1, 0x20));
 
1926
HEX(INSERT(_utf8 0xD18F, 2, 1, 0x20))
 
1927
D120
 
1928
SELECT HEX(INSERT(_utf8 0xD18FD18E, 2, 1, 0x20));
 
1929
HEX(INSERT(_utf8 0xD18FD18E, 2, 1, 0x20))
 
1930
D120D18E
 
1931
End of 5.1 tests