We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Index not getting updated on running an UPDATE SQL query to set a field that was not originally present on the record being updated.
UPDATE
Existing record 1: {'col1': 1, 'col2': 1} 2: {'col1': 2, 'col3': 2}
{'col1': 1, 'col2': 1}
{'col1': 2, 'col3': 2}
Run SQL Update UPDATE test.test SET col3 = 1 WHERE col1 = 1
UPDATE test.test SET col3 = 1 WHERE col1 = 1
Updated Records 1: {'col1': 1, 'col2': 1, 'col3': 1} 2: {'col1': 2, 'col3': 2}
{'col1': 1, 'col2': 1, 'col3': 1}
However the index entry for col3 for record #1 does not update. The entire column has to be reindexed after this operation.
col3
record #1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Index not getting updated on running an
UPDATE
SQL query to set a field that was not originally present on the record being updated.Existing record
1:
{'col1': 1, 'col2': 1}
2:
{'col1': 2, 'col3': 2}
Run SQL Update
UPDATE test.test SET col3 = 1 WHERE col1 = 1
Updated Records
1:
{'col1': 1, 'col2': 1, 'col3': 1}
2:
{'col1': 2, 'col3': 2}
However the index entry for
col3
forrecord #1
does not update. The entire column has to be reindexed after this operation.The text was updated successfully, but these errors were encountered: