Hi all,
We are trying to extract JOINS from the queries (or even the query itself would be helpful).
We are using https://github.com/gabfl/bigquery_fdw, which is built on top of https://github.com/Segfault-Inc/Multicorn. Now, if we try to PG join like SELECT col_a FROM foreign_table_a LEFT JOIN foreign_table_b USING (primary_key), the translation in BigQuery is SELECT col_a FROM foreign_table_a. This makes complete sense based on the bigquery_fdw's query builder.
However, is there any way to extract the foreign table I want to join?
Hi all,
We are trying to extract JOINS from the queries (or even the query itself would be helpful).
We are using https://github.com/gabfl/bigquery_fdw, which is built on top of https://github.com/Segfault-Inc/Multicorn. Now, if we try to PG join like
SELECT col_a FROM foreign_table_a LEFT JOIN foreign_table_b USING (primary_key), the translation in BigQuery isSELECT col_a FROM foreign_table_a. This makes complete sense based on the bigquery_fdw's query builder.However, is there any way to extract the foreign table I want to join?