Skip to content

Commit 1db2acd

Browse files
committed
update README for show references
1 parent 7ef3a5c commit 1db2acd

File tree

4 files changed

+22
-4
lines changed

4 files changed

+22
-4
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,11 @@ snippets keywords:
6363

6464
![](docs/images/find-all-references.gif)
6565

66-
### 1.6 Code Format
66+
### 1.5 Show References
67+
68+
![](docs/images/show_references.gif)
69+
70+
### 1.7 Code Format
6771

6872
![](docs/images/format.gif)
6973

docs/images/show_references.gif

985 KB
Loading

docs/performance/psss/complexed_1.fql

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
CREATE TABLE source_table (
2+
application_id STRING,
3+
main_id STRING,
4+
province STRING,
5+
s_id STRING,
6+
areacode STRING,
7+
proctime AS PROCTIME()
8+
) WITH (
9+
'connector' = 'filesystem',
10+
'path' = '/path/to/example.csv',
11+
'format' = 'csv'
12+
);
13+
14+
115
CREATE TEMPORARY VIEW temp_view AS
216
select
317
e.application_id as id,
@@ -36,7 +50,7 @@ select
3650
) as pv,
3751
HOP_END(e.proctime, INTERVAL '10' SECOND, INTERVAL '10' MINUTE) as dt
3852
from
39-
filter_uv e
53+
source_table e
4054
left join lookup_ip_info FOR SYSTEM_TIME AS OF e.proctime as r on e.ip = r.ip
4155
left join lookup_international_location FOR SYSTEM_TIME AS OF e.proctime as m on m.code = r.areacode
4256
where

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)