This is an automated email from the ASF dual-hosted git repository.
davidrad pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/flink-connector-http.git
The following commit(s) were added to refs/heads/main by this push:
new 21b3d9a [hotfix] Fix SELECT statement in http.md (#37)
21b3d9a is described below
commit 21b3d9a124fa8294f85c1ae0935ea9fa8bae62f7
Author: sofie204 <[email protected]>
AuthorDate: Tue Mar 31 09:46:25 2026 -0400
[hotfix] Fix SELECT statement in http.md (#37)
* [hotfix] Fix SELECT statment in http.md
* [hotfix] Fix SELECT statement in Chinese http.md
---------
Co-authored-by: Sophia Izokun <[email protected]>
---
docs/content.zh/docs/connectors/table/http.md | 2 +-
docs/content/docs/connectors/table/http.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/content.zh/docs/connectors/table/http.md
b/docs/content.zh/docs/connectors/table/http.md
index 7eddf09..9b6e0b4 100644
--- a/docs/content.zh/docs/connectors/table/http.md
+++ b/docs/content.zh/docs/connectors/table/http.md
@@ -140,7 +140,7 @@ CREATE TABLE Orders (
Then we can enrich the _Orders_ table with the _Customers_ HTTP table with the
following SQL:
```roomsql
-SELECT o.id, o.id2, c.msg, c.uuid, c.isActive, c.balance FROM Orders AS o
+SELECT o.id, o.id2, c.msg, c.uuid, c.details.isActive,
c.details.nestedDetails.balance FROM Orders AS o
JOIN Customers FOR SYSTEM_TIME AS OF o.proc_time AS c ON o.id = c.id AND o.id2
= c.id2
```
diff --git a/docs/content/docs/connectors/table/http.md
b/docs/content/docs/connectors/table/http.md
index 98572b6..45d2a86 100644
--- a/docs/content/docs/connectors/table/http.md
+++ b/docs/content/docs/connectors/table/http.md
@@ -140,7 +140,7 @@ CREATE TABLE Orders (
Then we can enrich the _Orders_ table with the _Customers_ HTTP table with the
following SQL:
```roomsql
-SELECT o.id, o.id2, c.msg, c.uuid, c.isActive, c.balance FROM Orders AS o
+SELECT o.id, o.id2, c.msg, c.uuid, c.details.isActive,
c.details.nestedDetails.balance FROM Orders AS o
JOIN Customers FOR SYSTEM_TIME AS OF o.proc_time AS c ON o.id = c.id AND o.id2
= c.id2
```