Skip to content

Commit 7804546

Browse files
DOC-4549 updated YAML example based on feedback
1 parent 56a5abf commit 7804546

File tree

1 file changed

+21
-28
lines changed

1 file changed

+21
-28
lines changed

content/integrate/redis-data-integration/reference/config-yaml-reference.md

Lines changed: 21 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -21,35 +21,28 @@ SQLServer, and PostgreSQL, you should use `<schemaName>`.`<tableName>` instead.
2121
a regular expression instead of providing the full name of the `databaseName` and `tableName`.
2222
{{< /note >}}
2323

24-
The example below shows the MySQL format specifying the desired columns and primary keys
25-
for the `chinook.customer` and `chinook.employee` tables:
24+
The example below shows the MySQL format specifying the desired columns for the
25+
`chinook.customer` and `chinook.employee` tables:
2626

27-
```yaml
28-
tables:
29-
# Sync a specific table with all its columns:
30-
chinook.customer:
31-
columns:
32-
- ID
33-
- FirstName
34-
- LastName
35-
- Company
36-
- Address
37-
- Email
38-
keys:
39-
- FirstName
40-
- LastName
41-
chinook.employee:
42-
columns:
43-
- ID
44-
- FirstName
45-
- LastName
46-
- ReportsTo
47-
- Address
48-
- City
49-
- State
50-
keys:
51-
- FirstName
52-
- LastName
27+
```yaml
28+
tables:
29+
chinook.customer:
30+
columns:
31+
- CustID
32+
- FirstName
33+
- LastName
34+
- Company
35+
- Address
36+
- Email
37+
chinook.employee:
38+
columns:
39+
- EmpID
40+
- FirstName
41+
- LastName
42+
- ReportsTo
43+
- Address
44+
- City
45+
- State
5346
```
5447
5548
## Top level objects

0 commit comments

Comments
 (0)