@@ -441,24 +441,25 @@ int ObLogMinerRecord::build_dml_stmt_(ICDCRecord &cdc_rec)
441
441
binlogBuf *new_cols = cdc_rec.newCols (new_col_cnt);
442
442
binlogBuf *old_cols = cdc_rec.oldCols (old_col_cnt);
443
443
ITableMeta *tbl_meta = cdc_rec.getTableMeta ();
444
- // When updating or deleting records with lob type,
445
- // the null value of the lob type column may be incorrect
446
- // due to the limitations of obcdc.
447
- bool has_lob_null = false ;
448
- // xmltype and sdo_geometry type don't support compare operation.
444
+ // When updating or deleting records with value null,
445
+ // the null value of the column may be incorrect
446
+ // due to the limitations of obcdc and the minimal mode.
447
+ // Currently, it only indicates that obcdc has mistakenly identified a NULL value.
448
+ bool has_unreliable_null = false ;
449
+ // xmltype and sdo_geometry type don't support compare operation.
449
450
bool has_unsupport_type_compare = false ;
450
451
if (OB_SUCC (ret)) {
451
452
switch (record_type_) {
452
- // Insert records with lob type is accurate. obcdc will output all value of lob type .
453
+ // Insert records with null value is accurate. obcdc will output all value accurately .
453
454
case EINSERT: {
454
455
if (OB_FAIL (build_insert_stmt_ (redo_stmt_, new_cols, new_col_cnt, tbl_meta))) {
455
456
LOG_ERROR (" build insert redo stmt failed" , KPC (this ));
456
457
} else {
457
458
if (OB_FAIL (build_delete_stmt_ (undo_stmt_, new_cols, new_col_cnt,
458
- tbl_meta, has_lob_null , has_unsupport_type_compare))) {
459
+ tbl_meta, has_unreliable_null , has_unsupport_type_compare))) {
459
460
LOG_ERROR (" build insert undo stmt failed" , KPC (this ));
460
461
} else {
461
- // ignore has_lob_null
462
+ // ignore has_unreliable_null
462
463
if (has_unsupport_type_compare) {
463
464
APPEND_STMT (undo_stmt_, " /* POTENTIALLY INACCURATE */" );
464
465
}
@@ -467,51 +468,51 @@ int ObLogMinerRecord::build_dml_stmt_(ICDCRecord &cdc_rec)
467
468
break ;
468
469
}
469
470
470
- // Update records with lob type maybe inaccurate,
471
+ // Update records with null value maybe inaccurate,
471
472
// if NULL value appears in the pre/post mirror, the NULL may be incorrect.
472
473
case EUPDATE: {
473
474
if (OB_FAIL (build_update_stmt_ (redo_stmt_, new_cols, new_col_cnt, old_cols,
474
- old_col_cnt, tbl_meta, has_lob_null , has_unsupport_type_compare))) {
475
+ old_col_cnt, tbl_meta, has_unreliable_null , has_unsupport_type_compare))) {
475
476
LOG_ERROR (" build update redo stmt failed" , KPC (this ));
476
477
} else {
477
- if (has_lob_null || has_unsupport_type_compare) {
478
+ if (has_unreliable_null || has_unsupport_type_compare) {
478
479
APPEND_STMT (redo_stmt_, " /* POTENTIALLY INACCURATE */" );
479
- has_lob_null = false ;
480
+ has_unreliable_null = false ;
480
481
has_unsupport_type_compare = false ;
481
482
}
482
483
}
483
484
if (OB_SUCC (ret)) {
484
485
if (OB_FAIL (build_update_stmt_ (undo_stmt_, old_cols, old_col_cnt, new_cols,
485
- new_col_cnt, tbl_meta, has_lob_null , has_unsupport_type_compare))) {
486
+ new_col_cnt, tbl_meta, has_unreliable_null , has_unsupport_type_compare))) {
486
487
LOG_ERROR (" build update undo stmt failed" , KPC (this ));
487
488
} else {
488
- if (has_lob_null || has_unsupport_type_compare) {
489
+ if (has_unreliable_null || has_unsupport_type_compare) {
489
490
APPEND_STMT (undo_stmt_, " /* POTENTIALLY INACCURATE */" );
490
491
}
491
492
}
492
493
}
493
494
break ;
494
495
}
495
496
496
- // Delete records with lob type maybe inaccurate,
497
+ // Delete records with null value maybe inaccurate,
497
498
// if NULL value appears in the pre mirror, the NULL may be incorrect.
498
499
case EDELETE: {
499
500
if (OB_FAIL (build_delete_stmt_ (redo_stmt_, old_cols, old_col_cnt,
500
- tbl_meta, has_lob_null , has_unsupport_type_compare))) {
501
+ tbl_meta, has_unreliable_null , has_unsupport_type_compare))) {
501
502
LOG_ERROR (" build delete redo stmt failed" , KPC (this ));
502
503
} else {
503
- if (has_lob_null || has_unsupport_type_compare) {
504
+ if (has_unreliable_null || has_unsupport_type_compare) {
504
505
APPEND_STMT (redo_stmt_, " /* POTENTIALLY INACCURATE */" );
505
- has_lob_null = false ;
506
+ has_unreliable_null = false ;
506
507
has_unsupport_type_compare = false ;
507
508
}
508
509
}
509
510
if (OB_SUCC (ret)) {
510
511
if (OB_FAIL (build_insert_stmt_ (undo_stmt_, old_cols,
511
- old_col_cnt, tbl_meta, has_lob_null ))) {
512
+ old_col_cnt, tbl_meta, has_unreliable_null ))) {
512
513
LOG_ERROR (" build delete undo stmt failed" , KPC (this ));
513
514
} else {
514
- if (has_lob_null ) {
515
+ if (has_unreliable_null ) {
515
516
APPEND_STMT (undo_stmt_, " /* POTENTIALLY INACCURATE */" );
516
517
}
517
518
}
@@ -536,9 +537,9 @@ int ObLogMinerRecord::build_insert_stmt_(ObStringBuffer &stmt,
536
537
ITableMeta *tbl_meta)
537
538
{
538
539
int ret = OB_SUCCESS;
539
- // ignore has_lob_null
540
- bool has_lob_null = false ;
541
- if (OB_FAIL (build_insert_stmt_ (stmt, new_cols, new_col_cnt, tbl_meta, has_lob_null ))) {
540
+ // ignore has_unreliable_null
541
+ bool has_unreliable_null = false ;
542
+ if (OB_FAIL (build_insert_stmt_ (stmt, new_cols, new_col_cnt, tbl_meta, has_unreliable_null ))) {
542
543
LOG_ERROR (" build insert stmt failed" , KPC (this ));
543
544
}
544
545
return ret;
@@ -547,7 +548,7 @@ int ObLogMinerRecord::build_insert_stmt_(ObStringBuffer &stmt,
547
548
binlogBuf *new_cols,
548
549
const unsigned int new_col_cnt,
549
550
ITableMeta *tbl_meta,
550
- bool &has_lob_null )
551
+ bool &has_unreliable_null )
551
552
{
552
553
int ret = OB_SUCCESS;
553
554
if (IS_NOT_INIT) {
@@ -594,8 +595,8 @@ int ObLogMinerRecord::build_insert_stmt_(ObStringBuffer &stmt,
594
595
" col_idx" , i);
595
596
}
596
597
if (OB_SUCC (ret)) {
597
- if (is_lob_type_ (col_meta) && nullptr == new_cols[i].buf ) {
598
- has_lob_null = true ;
598
+ if (nullptr == new_cols[i].buf && new_cols[i]. m_origin == VALUE_ORIGIN::PADDING ) {
599
+ has_unreliable_null = true ;
599
600
}
600
601
}
601
602
}
@@ -615,8 +616,8 @@ int ObLogMinerRecord::build_update_stmt_(ObStringBuffer &stmt,
615
616
binlogBuf *old_cols,
616
617
const unsigned int old_col_cnt,
617
618
ITableMeta *tbl_meta,
618
- bool &has_lob_null ,
619
- bool &has_unsupport_type_compare)
619
+ bool &has_unreliable_null ,
620
+ bool &has_unsupport_type_compare)
620
621
{
621
622
int ret = OB_SUCCESS;
622
623
if (IS_NOT_INIT) {
@@ -653,15 +654,16 @@ int ObLogMinerRecord::build_update_stmt_(ObStringBuffer &stmt,
653
654
" col_idx" , i);
654
655
}
655
656
if (OB_SUCC (ret)) {
656
- if (is_lob_type_ (col_meta) && nullptr == new_cols[i].buf ) {
657
- has_lob_null = true ;
657
+ if ((nullptr == new_cols[i].buf && new_cols[i].m_origin == VALUE_ORIGIN::PADDING)
658
+ || (nullptr != old_cols[i].buf && old_cols[i].m_origin == VALUE_ORIGIN::PADDING)) {
659
+ has_unreliable_null = true ;
658
660
}
659
661
}
660
662
}
661
663
APPEND_STMT (stmt, " WHERE " );
662
664
663
665
if (OB_SUCC (ret) && OB_FAIL (build_where_conds_ (stmt, old_cols, old_col_cnt,
664
- tbl_meta, has_lob_null , has_unsupport_type_compare))) {
666
+ tbl_meta, has_unreliable_null , has_unsupport_type_compare))) {
665
667
LOG_ERROR (" build where conds failed" ,);
666
668
}
667
669
if (lib::Worker::CompatMode::MYSQL == compat_mode_) {
@@ -686,8 +688,8 @@ int ObLogMinerRecord::build_delete_stmt_(ObStringBuffer &stmt,
686
688
binlogBuf *old_cols,
687
689
const unsigned int old_col_cnt,
688
690
ITableMeta *tbl_meta,
689
- bool &has_lob_null ,
690
- bool &has_unsupport_type_compare)
691
+ bool &has_unreliable_null ,
692
+ bool &has_unsupport_type_compare)
691
693
{
692
694
int ret = OB_SUCCESS;
693
695
if (IS_NOT_INIT) {
@@ -705,7 +707,7 @@ int ObLogMinerRecord::build_delete_stmt_(ObStringBuffer &stmt,
705
707
APPEND_STMT (stmt, " WHERE " );
706
708
707
709
if (OB_SUCC (ret) && OB_FAIL (build_where_conds_ (stmt, old_cols, old_col_cnt,
708
- tbl_meta, has_lob_null , has_unsupport_type_compare))) {
710
+ tbl_meta, has_unreliable_null , has_unsupport_type_compare))) {
709
711
LOG_ERROR (" build where conds failed" ,);
710
712
}
711
713
if (lib::Worker::CompatMode::MYSQL == compat_mode_) {
@@ -861,21 +863,21 @@ int ObLogMinerRecord::build_column_value_(ObStringBuffer &stmt,
861
863
}
862
864
863
865
int ObLogMinerRecord::build_where_conds_ (ObStringBuffer &stmt,
864
- binlogBuf *cols,
865
- const unsigned int col_cnt,
866
- ITableMeta *tbl_meta,
867
- bool &has_lob_null ,
868
- bool &has_unsupport_type_compare)
866
+ binlogBuf *cols,
867
+ const unsigned int col_cnt,
868
+ ITableMeta *tbl_meta,
869
+ bool &has_unreliable_null ,
870
+ bool &has_unsupport_type_compare)
869
871
{
870
872
int ret = OB_SUCCESS;
871
873
if (!unique_keys_.empty ()) {
872
874
if (OB_FAIL (build_key_conds_ (stmt, cols, col_cnt, tbl_meta,
873
- unique_keys_, has_lob_null , has_unsupport_type_compare))) {
875
+ unique_keys_, has_unreliable_null , has_unsupport_type_compare))) {
874
876
LOG_ERROR (" build unique keys failed" , K (stmt), K (unique_keys_));
875
877
}
876
878
} else if (!primary_keys_.empty ()) {
877
879
if (OB_FAIL (build_key_conds_ (stmt, cols, col_cnt, tbl_meta,
878
- primary_keys_, has_lob_null , has_unsupport_type_compare))) {
880
+ primary_keys_, has_unreliable_null , has_unsupport_type_compare))) {
879
881
LOG_ERROR (" build primary keys failed" , K (stmt), K (primary_keys_));
880
882
}
881
883
} else {
@@ -885,7 +887,7 @@ int ObLogMinerRecord::build_where_conds_(ObStringBuffer &stmt,
885
887
APPEND_STMT (stmt, " AND " );
886
888
}
887
889
if (OB_SUCC (ret)) {
888
- if (OB_FAIL (build_cond_ (stmt, cols, i, tbl_meta, col_meta, has_lob_null , has_unsupport_type_compare))) {
890
+ if (OB_FAIL (build_cond_ (stmt, cols, i, tbl_meta, col_meta, has_unreliable_null , has_unsupport_type_compare))) {
889
891
LOG_ERROR (" build cond failed" , " table_name" , tbl_meta->getName ());
890
892
}
891
893
}
@@ -895,12 +897,12 @@ int ObLogMinerRecord::build_where_conds_(ObStringBuffer &stmt,
895
897
}
896
898
897
899
int ObLogMinerRecord::build_key_conds_ (ObStringBuffer &stmt,
898
- binlogBuf *cols,
899
- const unsigned int col_cnt,
900
- ITableMeta *tbl_meta,
901
- const KeyArray &key,
902
- bool &has_lob_null ,
903
- bool &has_unsupport_type_compare)
900
+ binlogBuf *cols,
901
+ const unsigned int col_cnt,
902
+ ITableMeta *tbl_meta,
903
+ const KeyArray &key,
904
+ bool &has_unreliable_null ,
905
+ bool &has_unsupport_type_compare)
904
906
{
905
907
int ret = OB_SUCCESS;
906
908
for (int i = 0 ; OB_SUCC (ret) && i < key.count (); i++) {
@@ -915,7 +917,7 @@ int ObLogMinerRecord::build_key_conds_(ObStringBuffer &stmt,
915
917
}
916
918
if (OB_SUCC (ret)) {
917
919
if (OB_FAIL (build_cond_ (stmt, cols, col_idx, tbl_meta, col_meta,
918
- has_lob_null , has_unsupport_type_compare))) {
920
+ has_unreliable_null , has_unsupport_type_compare))) {
919
921
LOG_ERROR (" build cond failed" , " table_name" , tbl_meta->getName ());
920
922
}
921
923
}
@@ -925,12 +927,12 @@ int ObLogMinerRecord::build_key_conds_(ObStringBuffer &stmt,
925
927
}
926
928
927
929
int ObLogMinerRecord::build_cond_ (ObStringBuffer &stmt,
928
- binlogBuf *cols,
929
- const unsigned int col_idx,
930
- ITableMeta *tbl_meta,
931
- IColMeta *col_meta,
932
- bool &has_lob_null ,
933
- bool &has_unsupport_type_compare)
930
+ binlogBuf *cols,
931
+ const unsigned int col_idx,
932
+ ITableMeta *tbl_meta,
933
+ IColMeta *col_meta,
934
+ bool &has_unreliable_null ,
935
+ bool &has_unsupport_type_compare)
934
936
{
935
937
int ret = OB_SUCCESS;
936
938
if (OB_ISNULL (col_meta)) {
@@ -940,7 +942,7 @@ int ObLogMinerRecord::build_cond_(ObStringBuffer &stmt,
940
942
if (is_lob_type_ (col_meta) && nullptr != cols[col_idx].buf ) {
941
943
// build lob type compare condition, excluding null value condition
942
944
if (OB_FAIL (build_lob_cond_ (stmt, cols, col_idx, tbl_meta,
943
- col_meta, has_lob_null , has_unsupport_type_compare))) {
945
+ col_meta, has_unreliable_null , has_unsupport_type_compare))) {
944
946
LOG_ERROR (" build lob condition failed" , " table_name" , tbl_meta->getName ());
945
947
}
946
948
} else {
@@ -949,21 +951,21 @@ int ObLogMinerRecord::build_cond_(ObStringBuffer &stmt,
949
951
}
950
952
}
951
953
if (OB_SUCC (ret)) {
952
- if (is_lob_type_ (col_meta) && nullptr == cols[col_idx].buf ) {
953
- has_lob_null = true ;
954
+ if (nullptr == cols[col_idx].buf && cols[col_idx]. m_origin == VALUE_ORIGIN::PADDING ) {
955
+ has_unreliable_null = true ;
954
956
}
955
957
}
956
958
}
957
959
return ret;
958
960
}
959
961
960
962
int ObLogMinerRecord::build_lob_cond_ (ObStringBuffer &stmt,
961
- binlogBuf *cols,
962
- const unsigned int col_idx,
963
- ITableMeta *tbl_meta,
964
- IColMeta *col_meta,
965
- bool &has_lob_null ,
966
- bool &has_unsupport_type_compare)
963
+ binlogBuf *cols,
964
+ const unsigned int col_idx,
965
+ ITableMeta *tbl_meta,
966
+ IColMeta *col_meta,
967
+ bool &has_unreliable_null ,
968
+ bool &has_unsupport_type_compare)
967
969
{
968
970
int ret = OB_SUCCESS;
969
971
if (OB_UNLIKELY (!is_lob_type_ (col_meta) || nullptr == cols[col_idx].buf )) {
@@ -1020,10 +1022,10 @@ int ObLogMinerRecord::build_lob_cond_(ObStringBuffer &stmt,
1020
1022
}
1021
1023
1022
1024
int ObLogMinerRecord::build_func_cond_ (ObStringBuffer &stmt,
1023
- binlogBuf *cols,
1024
- const unsigned int col_idx,
1025
+ binlogBuf *cols,
1026
+ const unsigned int col_idx,
1025
1027
ITableMeta *tbl_meta,
1026
- IColMeta *col_meta,
1028
+ IColMeta *col_meta,
1027
1029
const char *func_name)
1028
1030
{
1029
1031
int ret = OB_SUCCESS;
@@ -1042,10 +1044,10 @@ int ObLogMinerRecord::build_func_cond_(ObStringBuffer &stmt,
1042
1044
}
1043
1045
1044
1046
int ObLogMinerRecord::build_normal_cond_ (ObStringBuffer &stmt,
1045
- binlogBuf *cols,
1046
- const unsigned int col_idx,
1047
- ITableMeta *tbl_meta,
1048
- IColMeta *col_meta)
1047
+ binlogBuf *cols,
1048
+ const unsigned int col_idx,
1049
+ ITableMeta *tbl_meta,
1050
+ IColMeta *col_meta)
1049
1051
{
1050
1052
int ret = OB_SUCCESS;
1051
1053
APPEND_ESCAPE_CHAR (stmt);
0 commit comments