-
Notifications
You must be signed in to change notification settings - Fork 43
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
键盘输入异常 #19
Comments
@kztao @meiq4096 @protectione055 Thanks for your feedback. The developer is working on this issue, he is try to find out the root cause. Later he will give us some feedback. |
@unique5945 @longdafeng @meiq4096 @protectione055 @kztao |
If using dynamically linked, it is likely to bring compatibility issues. How does mysql resolve this problem? @kongchengzhuge |
Is MySQL on Ubuntu installed using a method similar to apt? If so, then this method is similar to compiling on Ubuntu and there should be no issues with dependencies. @longdafeng @meiq4096 |
After checking the dependencies of the MySQL package on my local machine, I found that MySQL is dynamically linked. ldd /usr/bin/mysql |
root@MQBOOK:~# ldd /usr/bin/mysql
linux-vdso.so.1 (0x00007fff875f2000)
libedit.so.2 => /lib/x86_64-linux-gnu/libedit.so.2 (0x00007ff479667000)
libzstd.so.1 => /lib/x86_64-linux-gnu/libzstd.so.1 (0x00007ff479598000)
libssl.so.3 => /lib/x86_64-linux-gnu/libssl.so.3 (0x00007ff4794f4000)
libcrypto.so.3 => /lib/x86_64-linux-gnu/libcrypto.so.3 (0x00007ff4790b2000)
libresolv.so.2 => /lib/x86_64-linux-gnu/libresolv.so.2 (0x00007ff47909e000)
libstdc++.so.6 => /lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007ff478e74000)
libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007ff478e52000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007ff478c2a000)
/lib64/ld-linux-x86-64.so.2 (0x00007ff479d53000)
libtinfo.so.6 => /lib/x86_64-linux-gnu/libtinfo.so.6 (0x00007ff478bf8000)
libbsd.so.0 => /lib/x86_64-linux-gnu/libbsd.so.0 (0x00007ff478be0000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007ff478af9000)
libmd.so.0 => /lib/x86_64-linux-gnu/libmd.so.0 (0x00007ff478aea000)
root@MQBOOK:~#
root@MQBOOK:~# apt list --installed |grep mysql
WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
mysql-client-8.0/jammy-security,jammy-updates,now 8.0.33-0ubuntu0.22.04.2 amd64 [installed,automatic]
mysql-client-core-8.0/jammy-security,jammy-updates,now 8.0.33-0ubuntu0.22.04.2 amd64 [installed,automatic]
mysql-client/jammy-security,jammy-updates,now 8.0.33-0ubuntu0.22.04.2 all [installed]
mysql-common/jammy,now 5.8+1.0.8 all [installed,automatic]
root@MQBOOK:~# mysql --version
mysql Ver 8.0.33-0ubuntu0.22.04.2 for Linux on x86_64 ((Ubuntu)) |
@kongchengzhuge @meiq4096 @longdafeng |
在debian上构建的过程记录了一下, 我自己能成功构建出obclient并且解决了输入异常的问题 |
系统:Ubuntu 20.04.5 LTS
内核版本:5.15.0-50-generic
OceanBase版本:开源3.1.1
obclient版本:Ver Distrib 10.4.18-MariaDB, for Linux (x86_64) using readline 5.1
遇到了和 #8 类似的问题。使用
obclient -uxxx@xxx -h127.0.0.1 -P 2881 -c -Doceanbase
连接到observer后敲击功能键会输出空格。使用mysql-client测试过以后,并没有发现同样的问题。The text was updated successfully, but these errors were encountered: