@@ -23,7 +23,7 @@ impl ProtonClient {
2323 /// let client = ProtonClient::new("http://localhost:8123");
2424 ///
2525 /// let mut cursor = client
26- /// .fetch::<MyRow<'_>>("SELECT ?fields from table(some ) WHERE no BETWEEN 500 AND 504")
26+ /// .fetch::<MyRow<'_>>("SELECT ?fields from table(test_stream ) WHERE no BETWEEN 500 AND 504")
2727 /// .await
2828 /// .expect("[main/fetch]: Failed to fetch data");
2929 ///
@@ -64,7 +64,7 @@ impl ProtonClient {
6464 ///
6565 /// let client = ProtonClient::new("http://localhost:8123");
6666 ///
67- /// let query = "SELECT ?fields FROM some WHERE no BETWEEN 0 AND 1";
67+ /// let query = "SELECT ?fields FROM test_stream WHERE no BETWEEN 0 AND 1";
6868 /// let data = client.fetch_all::<MyRow>(query).await.unwrap();
6969 ///
7070 /// println!("Received {} records", data.len());
@@ -100,7 +100,7 @@ impl ProtonClient {
100100 /// async fn example() -> Result<()> {
101101 ///
102102 /// let client = ProtonClient::new("http://localhost:8123");
103- /// let query = "select count() from table(table_name )";
103+ /// let query = "select count() from table(test_stream )";
104104 /// let item = client.fetch_one::<u64>(query).await.unwrap();
105105 ///
106106 /// println!("Single result: {:#?}", item);
@@ -143,7 +143,7 @@ impl ProtonClient {
143143 ///
144144 /// let client = ProtonClient::new("http://localhost:8123");
145145 /// let item_id = 42;
146- /// let query = "SELECT ?fields FROM some WHERE no = 42";
146+ /// let query = "SELECT ?fields FROM test_stream WHERE no = 42";
147147 /// let item = client.fetch_optional::<MyRow>(query).await.unwrap();
148148 ///
149149 /// match item {
0 commit comments