You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/docs/connectors/pipeline-connectors/postgres.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -364,11 +364,11 @@ Notice:
364
364
</tr>
365
365
<tr>
366
366
<td>INTERVAL [P]</td>
367
-
<td>STRING(when interval.handling.mode is set to string)</td>
367
+
<td>STRING(when <code>debezium.interval.handling.mode</code> is set to string)</td>
368
368
</tr>
369
369
<tr>
370
370
<td>BYTEA</td>
371
-
<td>BYTES or STRING (when binary.handling.mode is set to base64 or base64-url-safe or hex)</td>
371
+
<td>BYTES or STRING (when <code>debezium.binary.handling.mode</code> is set to base64 or base64-url-safe or hex)</td>
372
372
</tr>
373
373
<tr>
374
374
<td>
@@ -434,9 +434,9 @@ When the time.precision.mode property is set to adaptive, the default, the conne
434
434
</div>
435
435
436
436
### Decimal types Mapping
437
-
The setting of the PostgreSQL connector configuration property decimal.handling.mode determines how the connector maps decimal types.
437
+
The setting of the PostgreSQL connector configuration property <code>debezium.decimal.handling.mode</code> determines how the connector maps decimal types.
438
438
439
-
When the decimal.handling.mode property is set to precise, the connector uses the Kafka Connect org.apache.kafka.connect.data.Decimal logical type for all DECIMAL, NUMERIC and MONEY columns. This is the default mode.
439
+
When the <code>debezium.decimal.handling.mode</code> property is set to precise, the connector uses the Kafka Connect org.apache.kafka.connect.data.Decimal logical type for all DECIMAL, NUMERIC and MONEY columns. This is the default mode.
440
440
<div class="wy-table-responsive">
441
441
<table class="colwidths-auto docutils">
442
442
<thead>
@@ -475,7 +475,7 @@ When the decimal.handling.mode property is set to precise, the connector uses th
475
475
</table>
476
476
</div>
477
477
478
-
When the decimal.handling.mode property is set to double, the connector represents all DECIMAL, NUMERIC and MONEY values as Java double values and encodes them as shown in the following table.
478
+
When the <code>debezium.decimal.handling.mode</code> property is set to double, the connector represents all DECIMAL, NUMERIC and MONEY values as Java double values and encodes them as shown in the following table.
479
479
480
480
<div class="wy-table-responsive">
481
481
<table class="colwidths-auto docutils">
@@ -505,7 +505,7 @@ When the decimal.handling.mode property is set to double, the connector represen
505
505
</table>
506
506
</div>
507
507
508
-
The last possible setting for the decimal.handling.mode configuration property is string. In this case, the connector represents DECIMAL, NUMERIC and MONEY values as their formatted string representation, and encodes them as shown in the following table.
508
+
The last possible setting for the <code>debezium.decimal.handling.mode</code> configuration property is string. In this case, the connector represents DECIMAL, NUMERIC and MONEY values as their formatted string representation, and encodes them as shown in the following table.
509
509
<div class="wy-table-responsive">
510
510
<table class="colwidths-auto docutils">
511
511
<thead>
@@ -534,12 +534,12 @@ The last possible setting for the decimal.handling.mode configuration property i
534
534
</table>
535
535
</div>
536
536
537
-
PostgreSQL supports NaN (not a number) as a special value to be stored in DECIMAL/NUMERIC values when the setting of decimal.handling.mode is string or double. In this case, the connector encodes NaN as either Double.NaN or the string constant NAN.
537
+
PostgreSQL supports NaN (not a number) as a special value to be stored in DECIMAL/NUMERIC values when the setting of <code>debezium.decimal.handling.mode</code> is string or double. In this case, the connector encodes NaN as either Double.NaN or the string constant NAN.
538
538
539
539
### HSTORE type Mapping
540
-
The setting of the PostgreSQL connector configuration property hstore.handling.mode determines how the connector maps HSTORE values.
540
+
The setting of the PostgreSQL connector configuration property <code>debezium.hstore.handling.mode</code> determines how the connector maps HSTORE values.
541
541
542
-
When the hstore.handling.mode property is set to json (the default), the connector represents HSTORE values as string representations of JSON values and encodes them as shown in the following table. When the hstore.handling.mode property is set to map, the connector uses the MAP schema type for HSTORE values.
542
+
When the <code>debezium.hstore.handling.mode</code> property is set to json (the default), the connector represents HSTORE values as string representations of JSON values and encodes them as shown in the following table. When the <code>debezium.hstore.handling.mode</code> property is set to map, the connector uses the MAP schema type for HSTORE values.
543
543
<div class="wy-table-responsive">
544
544
<table class="colwidths-auto docutils">
545
545
<thead>
@@ -552,12 +552,12 @@ When the hstore.handling.mode property is set to json (the default), the connect
0 commit comments