Skip to content

Commit 52fcbfd

Browse files
committed
Adding tabs
1 parent 43f35ea commit 52fcbfd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/cosmos-db/cassandra-change-feed.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The following example shows how to get a change feed on all the rows in a Cassan
1717

1818
In each iteration, the query resumes at the last point changes were read, using paging state. We can see a continuous stream of new changes to the table in the Keyspace. We will see changes to rows that are inserted, or updated. Watching for delete operations using change feed in Cassandra API is currently not supported.
1919

20-
# [C#](#tab/c#)
20+
# [C#](#tab/csharp)
2121

2222
```C#
2323
//set initial start time for pulling the change feed
@@ -108,7 +108,7 @@ In each iteration, the query resumes at the last point changes were read, using
108108

109109
In order to get the changes to a single row by primary key, you can add the primary key in the query. The following example shows how to track changes for the row where "user_id = 1"
110110

111-
# [C#](#tab/c#)
111+
# [C#](#tab/csharp)
112112

113113
```C#
114114
//Return the latest change for all row in 'user' table where user_id = 1

0 commit comments

Comments
 (0)