mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-04 23:57:03 +00:00
10 lines
523 B
Markdown
10 lines
523 B
Markdown
#### Example Queries File
|
|
|
|
```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": []}
|
|
```
|
|
|
|
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.
|