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

[CBRD-24968] An error occurs when a table alias name is used and a column name is used within a function. #4621

Merged
merged 1 commit into from
Aug 30, 2023

Conversation

beyondykk9
Copy link
Contributor

http://jira.cubrid.org/browse/CBRD-24968

-- at remote side
drop table if exists remote_t2;
drop table remote_t2;
create table remote_t2 (col1 int, col2 int);
insert into remote_t2 values (1,2);
insert into remote_t2 values (2,null);
insert into remote_t2 values (3,4);

-- at local side 
select b.col1, 
       nvl(b.col2,9999)
from  remote_t2@remote_server b;

ERROR: Class of b does not have attribute col2.

@beyondykk9 beyondykk9 added this to the fig milestone Aug 30, 2023
@beyondykk9 beyondykk9 requested a review from ctshim August 30, 2023 02:29
@beyondykk9 beyondykk9 self-assigned this Aug 30, 2023
@beyondykk9 beyondykk9 merged commit 635dbe7 into CUBRID:develop Aug 30, 2023
@beyondykk9 beyondykk9 deleted the CBRD-24968 branch August 30, 2023 03:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants