Navigation Menu

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

like doesn't work for computed values (at least in a view) [CORE1033] #1450

Closed
firebird-automations opened this issue Nov 30, 2006 · 11 comments

Comments

@firebird-automations
Copy link
Collaborator

Submitted by: Rudolf Bartel (rudi.bartel)

Is related to QA131

There is a view and a table defined as
create table TABLE_X (
id numeric(10,0) not null,
desc varchar(50) not null
);

create view X_VW (id, description)
select
id
x.desc||' ('||x.id||')'
from TABLE_X as x;

The select: select * from X_VW where description like 'xyz'
does work (its finding entries if there is a string in the column desc), but doesn't find any entries if the '%' sign is used inside of criteria string:
select * from X_VW where description like 'xy%' -> no match

Commits: d24d14f

@firebird-automations
Copy link
Collaborator Author

Commented by: @asfernandes

Confirmed in V2.
HEAD don't have this problem.

@firebird-automations
Copy link
Collaborator Author

Modified by: @asfernandes

Fix Version: 2.0.1 [ 10090 ]

assignee: Adriano dos Santos Fernandes [ asfernandes ]

@firebird-automations
Copy link
Collaborator Author

Modified by: @asfernandes

status: Open [ 1 ] => Resolved [ 5 ]

resolution: Fixed [ 1 ]

@firebird-automations
Copy link
Collaborator Author

Commented by: @dyemanov

Does v1.5 also have this bug? Looking at the patch, I'd say it should.

@firebird-automations
Copy link
Collaborator Author

Commented by: @asfernandes

Seems to not.

@firebird-automations
Copy link
Collaborator Author

Commented by: @pcisar

Fix confirmed for 2.0.1. Test added.

@firebird-automations
Copy link
Collaborator Author

Modified by: @pcisar

status: Resolved [ 5 ] => Closed [ 6 ]

@firebird-automations
Copy link
Collaborator Author

Modified by: @pcisar

Link: This issue is related to QA131 [ QA131 ]

@firebird-automations
Copy link
Collaborator Author

Modified by: @pcisar

Workflow: jira [ 11367 ] => Firebird [ 15141 ]

@firebird-automations
Copy link
Collaborator Author

Modified by: @pavel-zotov

QA Status: No test

@firebird-automations
Copy link
Collaborator Author

Modified by: @pavel-zotov

QA Status: No test => Done successfully

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants