|
18 | 18 | package org.apache.flink.cdc.connectors.starrocks.sink;
|
19 | 19 |
|
20 | 20 | import org.apache.flink.cdc.common.types.CharType;
|
| 21 | +import org.apache.flink.cdc.common.types.DecimalType; |
21 | 22 | import org.apache.flink.cdc.common.types.VarCharType;
|
22 | 23 |
|
23 | 24 | import com.starrocks.connector.flink.catalog.StarRocksColumn;
|
@@ -75,6 +76,68 @@ public void testCharTypeForPrimaryKey() {
|
75 | 76 | assertTrue(smallLengthColumn.isNullable());
|
76 | 77 | }
|
77 | 78 |
|
| 79 | + @Test |
| 80 | + public void testDecimalForPrimaryKey() { |
| 81 | + // map to Int of StarRocks if primary key column with precision < 10 and scale = 0 |
| 82 | + StarRocksColumn.Builder intLengthBuilder = |
| 83 | + new StarRocksColumn.Builder().setColumnName("primary_key").setOrdinalPosition(0); |
| 84 | + new DecimalType(9, 0) |
| 85 | + .accept(new StarRocksUtils.CdcDataTypeTransformer(true, intLengthBuilder)); |
| 86 | + StarRocksColumn intLengthColumn = intLengthBuilder.build(); |
| 87 | + assertEquals("primary_key", intLengthColumn.getColumnName()); |
| 88 | + assertEquals(0, intLengthColumn.getOrdinalPosition()); |
| 89 | + assertEquals(StarRocksUtils.INT, intLengthColumn.getDataType()); |
| 90 | + assertTrue(intLengthColumn.isNullable()); |
| 91 | + |
| 92 | + // map to BigInt of StarRocks if primary key column with precision < 19 and scale = 0 |
| 93 | + StarRocksColumn.Builder bigIntLengthBuilder = |
| 94 | + new StarRocksColumn.Builder().setColumnName("primary_key").setOrdinalPosition(0); |
| 95 | + new DecimalType(10, 0) |
| 96 | + .accept(new StarRocksUtils.CdcDataTypeTransformer(true, bigIntLengthBuilder)); |
| 97 | + StarRocksColumn bigIntLengthColumn = bigIntLengthBuilder.build(); |
| 98 | + assertEquals("primary_key", bigIntLengthColumn.getColumnName()); |
| 99 | + assertEquals(0, bigIntLengthColumn.getOrdinalPosition()); |
| 100 | + assertEquals(StarRocksUtils.BIGINT, bigIntLengthColumn.getDataType()); |
| 101 | + assertTrue(bigIntLengthColumn.isNullable()); |
| 102 | + |
| 103 | + // map to LARGEINT of StarRocks if primary key column with precision < 18 and scale = 0 |
| 104 | + StarRocksColumn.Builder unsignedBigIntLengthBuilder = |
| 105 | + new StarRocksColumn.Builder().setColumnName("primary_key").setOrdinalPosition(0); |
| 106 | + new DecimalType(20, 0) |
| 107 | + .accept( |
| 108 | + new StarRocksUtils.CdcDataTypeTransformer( |
| 109 | + true, unsignedBigIntLengthBuilder)); |
| 110 | + StarRocksColumn unsignedBigIntLengthColumn = unsignedBigIntLengthBuilder.build(); |
| 111 | + assertEquals("primary_key", unsignedBigIntLengthColumn.getColumnName()); |
| 112 | + assertEquals(0, unsignedBigIntLengthColumn.getOrdinalPosition()); |
| 113 | + assertEquals(StarRocksUtils.LARGEINT, unsignedBigIntLengthColumn.getDataType()); |
| 114 | + assertTrue(unsignedBigIntLengthColumn.isNullable()); |
| 115 | + |
| 116 | + // map to Varchar of StarRocks if primary key column with precision >= 38 and scale = 0 |
| 117 | + StarRocksColumn.Builder outOfBoundLengthBuilder = |
| 118 | + new StarRocksColumn.Builder().setColumnName("primary_key").setOrdinalPosition(0); |
| 119 | + new DecimalType(38, 0) |
| 120 | + .accept(new StarRocksUtils.CdcDataTypeTransformer(true, outOfBoundLengthBuilder)); |
| 121 | + StarRocksColumn outOfBoundColumn = outOfBoundLengthBuilder.build(); |
| 122 | + assertEquals("primary_key", outOfBoundColumn.getColumnName()); |
| 123 | + assertEquals(0, outOfBoundColumn.getOrdinalPosition()); |
| 124 | + assertEquals(StarRocksUtils.VARCHAR, outOfBoundColumn.getDataType()); |
| 125 | + assertEquals(Integer.valueOf(38), outOfBoundColumn.getColumnSize().orElse(null)); |
| 126 | + assertTrue(unsignedBigIntLengthColumn.isNullable()); |
| 127 | + |
| 128 | + // map to Varchar of StarRocks if primary key column with scale > 0 |
| 129 | + StarRocksColumn.Builder scaleBuilder = |
| 130 | + new StarRocksColumn.Builder().setColumnName("primary_key").setOrdinalPosition(0); |
| 131 | + new DecimalType(12, 1) |
| 132 | + .accept(new StarRocksUtils.CdcDataTypeTransformer(true, scaleBuilder)); |
| 133 | + StarRocksColumn scaleBoundColumn = scaleBuilder.build(); |
| 134 | + assertEquals("primary_key", scaleBoundColumn.getColumnName()); |
| 135 | + assertEquals(0, scaleBoundColumn.getOrdinalPosition()); |
| 136 | + assertEquals(StarRocksUtils.VARCHAR, scaleBoundColumn.getDataType()); |
| 137 | + assertEquals(Integer.valueOf(12), scaleBoundColumn.getColumnSize().orElse(null)); |
| 138 | + assertTrue(unsignedBigIntLengthColumn.isNullable()); |
| 139 | + } |
| 140 | + |
78 | 141 | @Test
|
79 | 142 | public void testVarCharType() {
|
80 | 143 | // the length fo StarRocks should be 3 times as that of CDC if CDC length * 3 <=
|
|
0 commit comments