2023-12-11 09:43:23 -05:00
|
|
|
#### Example Queries File
|
2023-12-07 11:03:37 -05:00
|
|
|
|
|
|
|
```json
|
|
|
|
{"query": "SELECT x FROM my_table", "timestamp": 1689232738.051, "user": "user_a", "downstream_tables": [], "upstream_tables": ["my_database.my_schema.my_table"]}
|
|
|
|
{"query": "INSERT INTO my_table VALUES (1, 'a')", "timestamp": 1689232737.669, "user": "user_b", "downstream_tables": ["my_database.my_schema.my_table"], "upstream_tables": []}
|
|
|
|
```
|
|
|
|
|
2023-12-11 09:43:23 -05:00
|
|
|
Note that this file does not represent a single JSON object, but instead newline-delimited JSON, in which
|
|
|
|
each line is a separate JSON object.
|