Skip to content

Commit

Permalink
[docs] Remove brackets on snapshot select override examples
Browse files Browse the repository at this point in the history
  • Loading branch information
Naros authored and jpechane committed Sep 27, 2024
1 parent e489a79 commit 4ad975e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion documentation/modules/ROOT/pages/connectors/db2.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2959,7 +2959,7 @@ From a `customers.orders` table that includes the soft-delete column, `delete_fl

----
"snapshot.select.statement.overrides": "customer.orders",
"snapshot.select.statement.overrides.customer.orders": "SELECT * FROM [customers].[orders] WHERE delete_flag = 0 ORDER BY id DESC"
"snapshot.select.statement.overrides.customer.orders": "SELECT * FROM customers.orders WHERE delete_flag = 0 ORDER BY id DESC"
----

In the resulting snapshot, the connector includes only the records for which `delete_flag = 0`.
Expand Down
2 changes: 1 addition & 1 deletion documentation/modules/ROOT/pages/connectors/informix.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2546,7 +2546,7 @@ From a `customers.orders` table that includes the soft-delete column, `delete_fl

----
"snapshot.select.statement.overrides": "mydatabase.customer.orders",
"snapshot.select.statement.overrides.mydatabase.customer.orders": "SELECT * FROM [customers].[orders] WHERE delete_flag = 0 ORDER BY id DESC"
"snapshot.select.statement.overrides.mydatabase.customer.orders": "SELECT * FROM customers.orders WHERE delete_flag = 0 ORDER BY id DESC"
----

In the resulting snapshot, the connector includes only the records for which `delete_flag = 0`.
Expand Down
2 changes: 1 addition & 1 deletion documentation/modules/ROOT/pages/connectors/oracle.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3550,7 +3550,7 @@ From a `customers.orders` table that includes the soft-delete column, `delete_fl
----
"snapshot.select.statement.overrides": "customer.orders",
"snapshot.select.statement.overrides.customer.orders": "SELECT * FROM [customers].[orders] WHERE delete_flag = 0 ORDER BY id DESC"
"snapshot.select.statement.overrides.customer.orders": "SELECT * FROM customers.orders WHERE delete_flag = 0 ORDER BY id DESC"
----
In the resulting snapshot, the connector includes only the records for which `delete_flag = 0`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3555,7 +3555,7 @@ From a `customers.orders` table that includes the soft-delete column, `delete_fl

----
"snapshot.select.statement.overrides": "customer.orders",
"snapshot.select.statement.overrides.customer.orders": "SELECT * FROM [customers].[orders] WHERE delete_flag = 0 ORDER BY id DESC"
"snapshot.select.statement.overrides.customer.orders": "SELECT * FROM customers.orders WHERE delete_flag = 0 ORDER BY id DESC"
----

In the resulting snapshot, the connector includes only the records for which `delete_flag = 0`.
Expand Down
2 changes: 1 addition & 1 deletion documentation/modules/ROOT/pages/connectors/sqlserver.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3132,7 +3132,7 @@ From a `customers.orders` table that includes the soft-delete column, `delete_fl

----
"snapshot.select.statement.overrides": "customer.orders",
"snapshot.select.statement.overrides.customer.orders": "SELECT * FROM [customers].[orders] WHERE delete_flag = 0 ORDER BY id DESC"
"snapshot.select.statement.overrides.customer.orders": "SELECT * FROM customers.orders WHERE delete_flag = 0 ORDER BY id DESC"
----

In the resulting snapshot, the connector includes only the records for which `delete_flag = 0`.
Expand Down

0 comments on commit 4ad975e

Please sign in to comment.