Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc/README.intl.txt: unicode collation alg. sample shows rows in wrong order [DOC78] #88

Closed
firebird-automations opened this issue May 13, 2012 · 4 comments

Comments

@firebird-automations
Copy link

Submitted by: @pavel-zotov

Votes: 1

C:\1INSTALL\FIREBIRD\Data>chcp
Текущая кодовая страница: 866

C:\1INSTALL\FIREBIRD\Data>isql -q -ch dos866
SQL> create database 'testuca.fdb'; commit;
SQL> create table t (c char(1) character set utf8);
SQL> insert into t values('a');
SQL> insert into t values('A');
SQL> insert into t values('c');
SQL> insert into t values('b');
SQL> insert into t values('B');
SQL> select * from t order by c collate unicode;

C

a
A
b
B
c

But in doc/README.intl.txt letter 'c' is placed *before* 'b':

SQL\> select \* from t order by c collate unicode;

C
======
a
A
с <<<<<<<<<<<<<<<<<<<<<< ??? <<<<<<<<<<<<<<<
b
B
@firebird-automations
Copy link
Author

Commented by: @mariuz

it's not simple c it's á in the documentation , this should be closed documentation is right

SQL> insert into t values ('á');

@firebird-automations
Copy link
Author

Commented by: @paulvink

See Marius's comment. The documentation is correct.

@firebird-automations
Copy link
Author

Modified by: @paulvink

status: Open [ 1 ] => Resolved [ 5 ]

resolution: Cannot Reproduce [ 5 ]

@firebird-automations
Copy link
Author

Modified by: @paulvink

status: Resolved [ 5 ] => Closed [ 6 ]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants