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

Can't recreate RT table after altering its external file #1306

Closed
githubmanticore opened this issue Aug 1, 2023 · 1 comment
Closed

Can't recreate RT table after altering its external file #1306

githubmanticore opened this issue Aug 1, 2023 · 1 comment

Comments

@githubmanticore
Copy link
Contributor

after index created with exceptions \ wordforms \ stopwords then some of these options changed via alter (cause to save disk chunk with original settings) - drop table does not delete all index files but keeps external files from the disk chunk.
That breaks next call to create the same table .

create table test4 ( title text, tag integer ) exceptions='<this_test/>/exc.txt'; 
insert into test4 values (1, 'a b c1 c d', 11); 
alter table test4 exceptions = '<this_test/>/exc1.txt'; 
drop table test4; 
 
create table test4 ( title text, tag integer ); 
error adding table 'test4': directory is not empty: data/test4 
@githubmanticore
Copy link
Contributor Author

➤ Stan commented:

fixed RT index external files left alter of external files at 122bbf2

@sanikolaev sanikolaev changed the title can recreate RT index alter of the external files Can't recreate RT table after altering its external file Aug 1, 2023
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