Open daviszhen opened 1 year ago
cn write s3 finished insert operations, we need to process with delete and the performance of unique,primary key constraints
The temporary table needs to be redesigned. Shouldn't be able to fix it that quickly
On leave of absence
Is there an existing issue for the same bug?
Environment
Actual Behavior
mysql> create temporary table t1( -> col1 tinyint, -> col2 smallint, -> col3 int, -> col4 bigint, -> col5 tinyint unsigned, -> col6 smallint unsigned, -> col7 int unsigned, -> col8 bigint unsigned -> ); Query OK, 0 rows affected (0.01 sec)
mysql> load data infile '/Users/pengzhen/Documents/GitHub/matrixone/test/distributed/resources/load_data/integer_numbers_1.csv' into table t1; ERROR 20101 (HY000): internal error: panic unknown attr: %!%mo__meta_loc: github.com/matrixorigin/matrixone/pkg/txn/storage/memorystorage.(MemHandler).rangeBatchPhysicalRows /Users/pengzhen/Documents/GitHub/matrixone/pkg/txn/storage/memorystorage/mem_handler.go:1252 github.com/matrixorigin/matrixone/pkg/txn/storage/memorystorage.(MemHandler).HandleWrite /Users/pengzhen/Documents/GitHub/matrixone/pkg/txn/storage/memorystorage/mem_handler.go:1168 github.com/matrixorigin/matrixone/pkg/txn/storage/memorystorage.(*CatalogHandl mysql>
Expected Behavior
Insert succeeds without panic
Steps to Reproduce
Additional information
No response