Skip to content

Commit 2179fcd

Browse files
authored
Update 20221013-iceberg-catalog.md (#10924)
1 parent 6f9a59f commit 2179fcd

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

docs/doc/90-contributing/01-rfcs/20221013-iceberg-catalog.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,12 @@ SELECT * FROM my_iceberg.iceberg_db.iceberg_tbl;
4747
Joint query on normal table and Iceberg Table:
4848

4949
```sql
50-
SELECT normal_tbl.book_name, my_iceberg.iceberg_db.iceberg_tbl.author FROM normal_tbl, iceberg_tbl WHERE normal_tbl.isbn = my_iceberg.iceberg_db.iceberg_tbl.isbn AND iceberg_tbl.sales > 100000;
50+
SELECT normal_tbl.book_name,
51+
my_iceberg.iceberg_db.iceberg_tbl.author
52+
FROM normal_tbl,
53+
iceberg_tbl
54+
WHERE normal_tbl.isbn = my_iceberg.iceberg_db.iceberg_tbl.isbn
55+
AND iceberg_tbl.sales > 100000;
5156
```
5257

5358
On operating the table, all data remains still on the user-provided ends.

0 commit comments

Comments
 (0)