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

[CUBRID-24687] query result is strange, when there is hidden columns in the select list. #4934

Merged
merged 3 commits into from
Feb 7, 2024

Commits on Feb 5, 2024

  1. [CUBRID-24687] query result is strange, when there is hidden columns …

    …in the select list
    
    http://jira.cubrid.org/browse/CBRD-24687
    
    **Description**
    The query result is strange, when there is hidden columns in ther select list.
    This is the case when sp is used in the order by clause, as in the following query.
    (ex : SELECT col1, col2) FROM tbl1 ORDER BY intTest(col1))
    
    **Resolution**
    - fix to replace q_result->num_column instead of db_query_column_count() at cur_tuple().
    - fix to use query_type instead of col_cnt at db_query_column_count().
    mhoh3963 committed Feb 5, 2024
    Configuration menu
    Copy the full SHA
    21ce824 View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2024

  1. - apply reviewer's opinion

    - Fix the column count could not be gotten, when executing call and evaluate statements.
    mhoh3963 committed Feb 7, 2024
    Configuration menu
    Copy the full SHA
    a3c4a9d View commit details
    Browse the repository at this point in the history
  2. - remove bracket

    mhoh3963 committed Feb 7, 2024
    Configuration menu
    Copy the full SHA
    fc1b964 View commit details
    Browse the repository at this point in the history