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-24478] fixed missing INVISIBLE keyword in unloaddb #4549

Merged

Conversation

ctshim
Copy link
Contributor

@ctshim ctshim commented Aug 3, 2023

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

  • In the process of unloaddb, there was a problem of missing the invisible keyword.
    It was an error when writing the dbname_indexes file, which is the result of unloaddb.

  • case

    1. create table tbl(c1 int, c2 int, c3 int, index idx1 (c1) invisible);
    2. unload
    3. in dbname_indexes file
      CREATE INDEX [idx1] ON [dba].[tbl] ([c1]) WITH DEDUPLICATE=0; --- fail
      CREATE INDEX [idx1] ON [dba].[tbl] ([c1]) WITH DEDUPLICATE=0 INVISIBLE ; -- after fix

@ctshim ctshim self-assigned this Aug 3, 2023
@ctshim ctshim removed the request for review from hyunikn August 3, 2023 06:04
@ctshim ctshim merged commit 7c5b66a into CUBRID:develop Aug 3, 2023
4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants