-
-
Notifications
You must be signed in to change notification settings - Fork 141
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
bug: SELECT...WHERE column_2 like '%_a\\\%', returns incorrect result set #1162
Labels
Milestone
Comments
similar problem tianmu: mysql> select * from st2 where column_2 like '%?_a?\%' escape '?';
Empty set (0.00 sec)
innodb: mysql> select * from st2 where column_2 like '%?_a?\%' escape '?';
+------+----------+----------+
| id | column_2 | column_3 |
+------+----------+----------+
| 1 | _a\\ | 111111 |
| 4 | _a\ | _12% |
+------+----------+----------+
2 rows in set (0.00 sec) |
ACK |
konghaiya
added a commit
to konghaiya/stonedb
that referenced
this issue
Dec 29, 2022
…neatom#1157) 1. Handle the result set error caused by character transfer(stoneatom#1157)(stoneatom#1162) 2. Handle the result set problem caused by ESCAPE keyword(stoneatom#1162)
14 tasks
konghaiya
added a commit
to konghaiya/stonedb
that referenced
this issue
Dec 30, 2022
…neatom#1157) 1. Handle the result set error caused by character transfer(stoneatom#1157)(stoneatom#1162) 2. Handle the result set problem caused by ESCAPE keyword(stoneatom#1162)
konghaiya
added a commit
to konghaiya/stonedb
that referenced
this issue
Dec 30, 2022
…neatom#1157) 1. Handle the result set error caused by character transfer(stoneatom#1157)(stoneatom#1162) 2. Handle the result set problem caused by ESCAPE keyword(stoneatom#1162)
github-project-automation
bot
moved this from In Progress
to Done
in StoneDB for MySQL 5.7
Jan 3, 2023
konghaiya
added a commit
to konghaiya/stonedb
that referenced
this issue
Mar 7, 2023
…neatom#1157) 1. Handle the result set error caused by character transfer(stoneatom#1157)(stoneatom#1162) 2. Handle the result set problem caused by ESCAPE keyword(stoneatom#1162)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Have you read the Contributing Guidelines on issues?
Please confirm if bug report does NOT exists already ?
Describe the problem
Expected behavior
How To Reproduce
Environment
Are you interested in submitting a PR to solve the problem?
The text was updated successfully, but these errors were encountered: