[MDEV-14924] Over 180 million records that we could not get a number data. Created: 2018-01-11 Updated: 2018-02-05 |
|
| Status: | Open |
| Project: | MariaDB Server |
| Component/s: | Data Definition - Alter Table |
| Affects Version/s: | 5.5.55-galera, 10.2.12 |
| Fix Version/s: | None |
| Type: | Bug | Priority: | Major |
| Reporter: | Yutaka Kubota | Assignee: | Unassigned |
| Resolution: | Unresolved | Votes: | 1 |
| Labels: | None | ||
| Environment: |
CentOS7, Fedora27, |
||
| Description |
|
Table I made table that inserted over 180 million(180,096,936) records. And I executed follow SQL language. select C, A from table order by C, A ASC; I confirmed Aria, MyISAM, InnoDB, The problem was happened. It not seem to relation database format. I guess just bug of the MariaDB. If you need test data. I send CSV file contain over 180 million lines. Please let me know. |
| Comments |
| Comment by Elena Stepanova [ 2018-01-13 ] | ||||
|
Please,
| ||||
| Comment by Yutaka Kubota [ 2018-01-16 ] | ||||
|
Thank you for replying. And Sorry for late reply. I had caught a cold and not to confirm your message during a few days.
I put mysqldump data on my server. Please get it from my server. "word" table is over 180M records.
| ||||
| Comment by Elena Stepanova [ 2018-01-24 ] | ||||
|
Thanks. So, I assume the table is `word`, but which column in your example is `C` and which is `A`? Another thing hints at that – this cannot be right (or cannot be success):
The result is not ordered by A here as it should. | ||||
| Comment by Yutaka Kubota [ 2018-01-30 ] | ||||
|
sorry, I ought to write real value name, And sorry for late reply. select subword_num, word_num from word order by subword_num, word_num ASC; FALSE |