Vlad Kolesnikov
Vlad Kolesnikov
In remote access scenarios, the server often is not aware of the URL, IP address and port the users will be accessing it. It happens when the server is running...
The following query's lineage is visualized well, but returns empty lineage from `LineageRunner.get_column_lineage` ```sql INSERT INTO s1.t1 SELECT max(tt1.price) + min(bb1.price) AS price, 0 AS kid FROM s1.bb bb1 INNER...
https://cloud.google.com/bigquery/docs/reference/standard-sql/procedural-language * DECLARE with DEFAULT ``` DECLARE item DEFAULT (SELECT item FROM schema1.products LIMIT 1); ``` * SET ``` DECLARE target_word STRING DEFAULT 'methinks'; DECLARE corpus_count, word_count INT64; SET (corpus_count,...
* https://cloud.google.com/bigquery/docs/reference/standard-sql/data-definition-language#create_function_statement * https://cloud.google.com/bigquery/docs/reference/standard-sql/data-definition-language#create_table_function_statement
This will enhance lineage with how actually columns are calculated. Example: ```sql SELECT CONCAT(column1, column2) as columnNew FROM table1 ``` As of now, for `columnNew`, the lineage produces items for...
As observed in #7, returned Gst.Buffer object must be disposed as well. Thanks to @IvensaMDH for discovering and troubleshooting!