-
-
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: ERROR 6 (HY000), The query syntax (WHERE NOT IN ) is not supported #767
Comments
davidshiz
changed the title
ERROR 6 (HY000): The query syntax (WHERE NOT IN ) is not supported
bug: ERROR 6 (HY000): The query syntax (WHERE NOT IN ) is not supported
Oct 21, 2022
davidshiz
changed the title
bug: ERROR 6 (HY000): The query syntax (WHERE NOT IN ) is not supported
bug: ERROR 6 (HY000), The query syntax (WHERE NOT IN ) is not supported
Oct 21, 2022
ACK |
in query_compile.cpp:1048, throw this exception
backtrace
|
in query.cpp:1726, return false;
|
|
davidshiz
removed
B-testing
Testing tools and infrastructure
P02
Medium-severity bugs are usability issues
labels
Oct 29, 2022
lujiashun
pushed a commit
to lujiashun/stonedb
that referenced
this issue
Nov 9, 2022
…eatom#767) [summary] 1 root cause: sub-select item is the left argument,not the right argument of item_func;
lujiashun
pushed a commit
to lujiashun/stonedb
that referenced
this issue
Nov 9, 2022
…eatom#767) [summary] 1 root cause: sub-select item is the left argument,not the right argument of item_func;
15 tasks
lujiashun
pushed a commit
to lujiashun/stonedb
that referenced
this issue
Nov 9, 2022
…eatom#767) [summary] 1 root cause: sub-select item is the left argument,not the right argument of item_func;
lujiashun
pushed a commit
to lujiashun/stonedb
that referenced
this issue
Nov 9, 2022
…eatom#767) [summary] 1 root cause: sub-select item is the left argument,not the right argument of item_func;
15 tasks
|
lujiashun
pushed a commit
to lujiashun/stonedb
that referenced
this issue
Nov 11, 2022
…eatom#767) [summary] 1 'sub_select' item is the left argument,not the right argument of 'item_func'; 2 5.7 use 'item_func_not' class to represent the meaning of the syntax "not", while 8.0 use a variable 'value_transform';
lujiashun
pushed a commit
to lujiashun/stonedb
that referenced
this issue
Nov 11, 2022
…eatom#767) [summary] 1 'sub_select' item is the left argument,not the right argument of 'item_func'; 2 5.7 use 'item_func_not' class to represent the meaning of the syntax "not", while 8.0 use a variable 'value_transform';
lujiashun
pushed a commit
to lujiashun/stonedb
that referenced
this issue
Nov 11, 2022
…eatom#767) [summary] 1 root cause: sub-select item is the left argument,not the right argument of item_func;
|
lujiashun
pushed a commit
to lujiashun/stonedb
that referenced
this issue
Nov 15, 2022
…eatom#767) [summary] 1 root cause: sub-select item is the left argument,not the right argument of item_func;
lujiashun
pushed a commit
to lujiashun/stonedb
that referenced
this issue
Nov 15, 2022
…eatom#767) [summary] 1 root cause: sub-select item is the left argument,not the right argument of item_func;
lujiashun
pushed a commit
to lujiashun/stonedb
that referenced
this issue
Nov 16, 2022
…eatom#767) [summary] 1 'sub_select' item is the left argument,not the right argument of 'item_func'; 2 5.7 use 'item_func_not' class to represent the meaning of the syntax "not", while 8.0 use a variable 'value_transform';
lujiashun
pushed a commit
to lujiashun/stonedb
that referenced
this issue
Nov 17, 2022
lujiashun
pushed a commit
to lujiashun/stonedb
that referenced
this issue
Nov 17, 2022
…eatom#767) [summary] 1 'sub_select' item is the left argument,not the right argument of 'item_func'; 2 5.7 use 'item_func_not' class to represent the meaning of the syntax "not", while 8.0 use a variable 'value_transform'; 3 porting new join code from 5.7 for this case; 4 porting ChooseJoinAlgorithm from 5.7 for this case 5 porting ResetToTemplate modification from 5.7 for this case;
lujiashun
pushed a commit
to lujiashun/stonedb
that referenced
this issue
Nov 17, 2022
…eatom#767) [summary] 1 'sub_select' item is the left argument,not the right argument of 'item_func'; 2 5.7 use 'item_func_not' class to represent the meaning of the syntax "not", while 8.0 use a variable 'value_transform'; 3 porting new join code from 5.7 for this case; 4 porting ChooseJoinAlgorithm from 5.7 for this case; 5 porting ResetToTemplate modification from 5.7 for this case;
lujiashun
pushed a commit
to lujiashun/stonedb
that referenced
this issue
Nov 30, 2022
…eatom#767) [summary] 1 'sub_select' item is the left argument,not the right argument of 'item_func'; 2 5.7 use 'item_func_not' class to represent the meaning of the syntax "not", while 8.0 use a variable 'value_transform'; 3 porting new join code from 5.7 for this case; 3.1 solve throwing exception ”select * from t1 where val not in (select * from t2 where val2 >= 10);" 4 porting ChooseJoinAlgorithm from 5.7 for this case; 4.1 solve incorrect result set for some sql in the mtr(which one is forgotton...) 5 porting ResetToTemplate modification from 5.7 for this case; 5.1 solve incorrect result set "select * from t1 where val not in (select * from t2 where val2 > t1.val);"
lujiashun
pushed a commit
to lujiashun/stonedb
that referenced
this issue
Nov 30, 2022
…eatom#767) [summary] 1 'sub_select' item is the left argument,not the right argument of 'item_func'; 2 5.7 use 'item_func_not' class to represent the meaning of the syntax "not", while 8.0 use a variable 'value_transform'; 3 porting new join code from 5.7 for this case; 3.1 solve throwing exception ”select * from t1 where val not in (select * from t2 where val2 >= 10);" 4 porting ChooseJoinAlgorithm from 5.7 for this case; 4.1 solve incorrect result set for some sql in the mtr(which one is forgotton...) 5 porting ResetToTemplate modification from 5.7 for this case; 5.1 solve incorrect result set "select * from t1 where val not in (select * from t2 where val2 > t1.val);"
mergify bot
pushed a commit
that referenced
this issue
Nov 30, 2022
[summary] 1 'sub_select' item is the left argument,not the right argument of 'item_func'; 2 5.7 use 'item_func_not' class to represent the meaning of the syntax "not", while 8.0 use a variable 'value_transform'; 3 porting new join code from 5.7 for this case; 3.1 solve throwing exception ”select * from t1 where val not in (select * from t2 where val2 >= 10);" 4 porting ChooseJoinAlgorithm from 5.7 for this case; 4.1 solve incorrect result set for some sql in the mtr(which one is forgotton...) 5 porting ResetToTemplate modification from 5.7 for this case; 5.1 solve incorrect result set "select * from t1 where val not in (select * from t2 where val2 > t1.val);"
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
ubuntu@ubuntu:~$ cat /etc/os-release
NAME="Ubuntu"
VERSION="20.04.4 LTS (Focal Fossa)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 20.04.4 LTS"
VERSION_ID="20.04"
ubuntu@ubuntu:~$ /stonedb57/install/bin/mysqld --version
/stonedb57/install/bin/mysqld Ver 5.7.36-StoneDB for Linux on x86_64 (build-)
build information as follow:
Repository address: https://github.com/stoneatom/stonedb.git:stonedb-5.7-dev
Branch name: stonedb-5.7-dev
Last commit ID: 5d996f9
Last commit time: Date: Sat Oct 8 14:34:42 2022 +0800
Build time: Date: Fri 14 Oct 2022 12:28:00 PM UTC
Are you interested in submitting a PR to solve the problem?
The text was updated successfully, but these errors were encountered: