ChrisHegarty commented on PR #13874:
URL: https://github.com/apache/lucene/pull/13874#issuecomment-2402214908

   we need to update `dev-tools/scripts/addBackcompatIndexes.py`. 
   
   ```diff
   diff --git a/dev-tools/scripts/addBackcompatIndexes.py 
b/dev-tools/scripts/addBackcompatIndexes.py
   index 80272ec0f0c..3056c8268d4 100755
   --- a/dev-tools/scripts/addBackcompatIndexes.py
   +++ b/dev-tools/scripts/addBackcompatIndexes.py
   @@ -40,7 +40,7 @@ def create_and_add_index(source, indextype, index_version, 
current_version, temp
          'cfs': 'index',
          'nocfs': 'index',
          'sorted': 'sorted',
   -      'int8_hnsw': 'int8_hnsw',
   +      'int7_hnsw': 'int7_hnsw',
          'moreterms': 'moreterms',
          'dvupdates': 'dvupdates',
          'emptyIndex': 'empty'
   @@ -61,7 +61,7 @@ def create_and_add_index(source, indextype, index_version, 
current_version, temp
        'cfs': 'testCreateCFS',
        'nocfs': 'testCreateNoCFS',
        'sorted': 'testCreateSortedIndex',
   -    'int8_hnsw': 'testCreateInt8HNSWIndices',
   +    'int7_hnsw': 'testCreateInt7HNSWIndices',
        'moreterms': 'testCreateMoreTermsIndex',
        'dvupdates': 'testCreateIndexWithDocValuesUpdates',
        'emptyIndex': 'testCreateEmptyIndex'
   @@ -206,7 +206,7 @@ def main():
      current_version = 
scriptutil.Version.parse(scriptutil.find_current_version())
      create_and_add_index(source, 'cfs', c.version, current_version, 
c.temp_dir)
      create_and_add_index(source, 'nocfs', c.version, current_version, 
c.temp_dir)
   -  create_and_add_index(source, 'int8_hnsw', c.version, current_version, 
c.temp_dir)
   +  create_and_add_index(source, 'int7_hnsw', c.version, current_version, 
c.temp_dir)
      should_make_sorted =     current_version.is_back_compat_with(c.version) \
                           and (c.version.major > 6 or (c.version.major == 6 
and c.version.minor >= 2))
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org
For additional commands, e-mail: issues-h...@lucene.apache.org

Reply via email to