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

Dolt SQL vs MySQL client: MySQL client right justifies number columns #655

Closed
timsehn opened this issue May 5, 2020 · 0 comments
Closed

Comments

@timsehn
Copy link
Sponsor Contributor

timsehn commented May 5, 2020

classified-iris-measurements $ dsqls "select class, is_test, count(*) from classified_measurements group by class,is_test order by class, is_test" && dolt sql -q "select class, is_test, count(*) from classified_measurements group by class,is_test order by class, is_test"
[1] 63861
Starting server with Config HP="127.0.0.1:2165"|U="root"|P=""|T="30000"|R="false"|L="error"
+-----------------+---------+----------+
| class           | is_test | COUNT(*) |
+-----------------+---------+----------+
| Iris-setosa     |       0 |       43 |
| Iris-setosa     |       1 |        7 |
| Iris-versicolor |       0 |       42 |
| Iris-versicolor |       1 |        8 |
| Iris-virginica  |       0 |       40 |
| Iris-virginica  |       1 |       11 |
+-----------------+---------+----------+
[1]+  Terminated: 15          dolt sql-server --config .cliconfig.yaml
+-----------------+---------+----------+
| class           | is_test | COUNT(*) |
+-----------------+---------+----------+
| Iris-setosa     | 0       | 43       |
| Iris-setosa     | 1       | 7        |
| Iris-versicolor | 0       | 42       |
| Iris-versicolor | 1       | 8        |
| Iris-virginica  | 0       | 40       |
| Iris-virginica  | 1       | 11       |
+-----------------+---------+----------+
@timsehn timsehn added the feature label May 5, 2020
@timsehn timsehn closed this as not planned Won't fix, can't repro, duplicate, stale Aug 30, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant