Merge pull request #15694 from taosdata/enh/crash_gen

Adding 0x2662 as an alternative acceptable error for table-not-found condition
This commit is contained in:
wade zhang 2022-08-05 13:28:14 +08:00 committed by GitHub
commit e99782f489
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -1339,8 +1339,9 @@ class Task():
0x03A1, # STable [does] not exist
0x03AA, # Tag already exists
0x0603, # Table already exists
0x2603, # Table does not exist
0x2603, # Table does not exist, replaced by 2662 below
0x260d, # Tags number not matched
0x2662, # Table does not exist #TODO: what about 2603 above?