-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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
Abount Exception [Can not find owner from table.] #4810
Comments
Can not support subquery now. I just set the issue as pending. |
I run many subquery wiht new version from master and it works well. |
SQL parse throws NullPointerException SELECT
) ACT_INST_ID_
|
同样问题的案例 代码地址: |
I met the current problem, the impact of this problem is huge, I hope to fix it soon! |
版本4.1.1也碰到这个问题 |
我只用了读写分离功能出现。没用分库分表功能。 |
请问这个问题该如何解决 |
@418545106 You can try the master branch code, it has been fixed by PR #10363. |
The |
Version
5.0.0-RC1-SNAPSHOT from master branch
Question
sorry, ref #4806 was closed timely
may be no user can see new message in it , so I open a new issue.
My
HintManager.clear();
HintManager hintManager = HintManager.getInstance();
hintManager.setDatabaseShardingValue(user.getTenantId());
it means
databaseShardingOnly = true;
if every table must be config,if not config then exception。
but my temp table name Alias will be not config in xml file.
like RES
it can be exception with 【Can not find owner from table.】
org.apache.shardingsphere.sql.parser.binder.segment.select.projection.engine.ProjectionsContextEngine
is this the same question with #4806 question ?
SELECT DISTINCT
RES.*
FROM
(
SELECT
SELF.*,
DEF.NAME_,
DEF.VERSION_
FROM
ACT_HI_PROCINST SELF
LEFT JOIN ACT_RE_PROCDEF DEF ON SELF.PROC_DEF_ID_ = DEF.ID_
WHERE
( 1 = 1 AND SELF.PROC_INST_ID_ = ? )
) RES
ORDER BY
RES.ID_ ASC
LIMIT ? OFFSET ?
The text was updated successfully, but these errors were encountered: