Skip to content

Commit c3fdb60

Browse files
authored
Delete old assets (#241)
Old asset files are images found under `/assets/images` and relate to original docs, commynity docs and PQL guide which is now with community docs.
1 parent 9e0a19e commit c3fdb60

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+25
-27
lines changed
Binary file not shown.

assets/images/com-api/ui-fields.png

-183 KB
Binary file not shown.

assets/images/com-api/ui-home.png

-250 KB
Binary file not shown.

assets/images/com-api/ui-metrics.png

-76.1 KB
Binary file not shown.
-35.5 KB
Binary file not shown.

assets/images/com-api/ui-tables.png

-120 KB
Binary file not shown.
-27.8 KB
Binary file not shown.
-143 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-37.2 KB
Binary file not shown.
Binary file not shown.
-20.6 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
-233 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
-35.4 KB
Binary file not shown.
-184 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

assets/images/welcome/localhost.png

-67.1 KB
Binary file not shown.

assets/images/welcome/sql.png

-74.1 KB
Binary file not shown.

help-on-help/regenerate-sql-svg/sql3.ebnf

+25-27
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
==========================
55
66
Document the SQL language support in FeatureBase
7-
7+
88
*)
99
1010
sql3 = statement, [ ";" ] ;
@@ -14,8 +14,8 @@ statement = show_tables
1414
| show_create_table
1515
| drop_table
1616
| create_table_stmt
17-
| create_view_stmt
18-
| kill_query_stmt
17+
| create_view_stmt
18+
| kill_query_stmt
1919
| alter_table_stmt
2020
| select_stmt
2121
| insert_stmt
@@ -101,15 +101,15 @@ kill_query_stmt = "KILL", "QUERY", string_literal;
101101
TIMEQUANTUM - 'YMD' etc.
102102
103103
*)
104-
column_constraint =
104+
column_constraint =
105105
"MIN", integer_literal
106106
| "MAX", integer_literal
107107
| "TIMEUNIT", string_literal
108108
| "TIMEQUANTUM", string_literal, [ "TTL", string_literal ];
109109
110110
table_options = "COMMENT", string_literal ;
111111
112-
type_name = "INT"
112+
type_name = "INT"
113113
| "BOOL"
114114
| "TIMESTAMP"
115115
| "DECIMAL"
@@ -178,17 +178,17 @@ Source could be an url.
178178
Pre-batching transformation of values using a values clause - to refer to the new column value from the source we can use `$value`.
179179
180180
`bulk insert into testtable (_id, i1, i2, d1) map (0, 1, 2, 3) transform ($value, $value + 2, $value, $value) from '/users/foo/bar.csv' with format csv batchsize 1000 rowslimit 10000;`
181-
181+
182182
We can support ndjson as a format - in this case the `map` clause contains jsonpath expressions.
183183
184184
`bulk insert into testtable (_id, i1, 12, d1) map ('$.foo', '$.bar', '$.baz', '$.boo') transform ($value, $value + 2, $value, $value) from '/users/foo/bar.json' with format ndjson batchsize 1000 rowslimit 10000;`
185-
185+
186186
Another variant with an inline 'stream' (multi-line string delimiter to be decided).
187187
188-
`bulk insert into testtable (_id, i1, 12, d1) map ('$.foo', '$.bar', '$.baz', '$.boo') transform ($value, $value + 2, $value, $value) from
188+
`bulk insert into testtable (_id, i1, 12, d1) map ('$.foo', '$.bar', '$.baz', '$.boo') transform ($value, $value + 2, $value, $value) from
189189
"""
190190
{"foo": 1000, "bar": 10, "baz": 20, "boo": 3}
191-
"""
191+
"""
192192
with input stream format ndjson batchsize 1000 rowslimit 10000;`
193193
194194
*)
@@ -199,13 +199,13 @@ column_list =
199199
map_list =
200200
"(", expr type_name, { ",", expr type_name }, ")" ;
201201
202-
value_list =
202+
value_list =
203203
"(", expr, { ",", expr }, ")" ;
204204
205-
bulk_insert_options =
205+
bulk_insert_options =
206206
bulk_insert_option, { bulk_insert_option } ;
207207
208-
bulk_insert_option =
208+
bulk_insert_option =
209209
"BATCHSIZE", integer_literal
210210
| "ROWSLIMIT", integer_literal
211211
| "INPUT", string_literal
@@ -234,7 +234,7 @@ delete_stmt = "DELETE" ;
234234
*)
235235
select_stmt = "SELECT", [ "DISTINCT" ], [ top_clause ], select_list, [ from_clause ], [ where_clause ], [group_by_clause], [having_clause], [order_by_clause] ;
236236
237-
top_clause = ( "TOP" | "TOPN" ), "(", expr, ")" ;
237+
top_clause = ( "TOP" | "TOPN" ), "(", expr, ")" ;
238238
239239
select_list = select_item, { ",", select_item } ;
240240
@@ -248,15 +248,15 @@ qualifier = identifier ;
248248
249249
from_clause = "FROM", table_or_subquery, { ",", table_or_subquery } ;
250250
251-
table_or_subquery =
251+
table_or_subquery =
252252
( identifier | table_valued_function ), [ [ "AS" ], table_alias ], [ table_options ]
253253
| "(", select_stmt, ")", [ [ "AS" ], table_alias ] ;
254254
255255
table_alias = identifier ;
256256
257257
table_options = "WITH", "(", table_option, { ",", table_option }, ")";
258258
259-
table_option =
259+
table_option =
260260
"SHARDS", "(", integer_literal, { ",", integer_literal }, ")"
261261
| "FLATTEN", "(", identifier, ")";
262262
@@ -277,7 +277,7 @@ order_by_expression = expr, [ "ASC" | "DESC" ] ;
277277
278278
Expressions
279279
----------------
280-
280+
281281
*)
282282
expr = integer_literal
283283
| string_literal
@@ -303,7 +303,7 @@ paren_select_stmt = "(", select_stmt, ")" ;
303303
case_expr = "CASE", [ expr ], { "WHEN", expr, "THEN", expr }, [ "ELSE", expr ], "END" ;
304304
305305
unary_op = "-"
306-
| "+"
306+
| "+"
307307
| "!" ;
308308
309309
binary_op = "="
@@ -317,10 +317,10 @@ binary_op = "="
317317
| "+"
318318
| "-"
319319
| "*"
320-
| "/"
320+
| "/"
321321
| "%"
322322
| "||" ;
323-
323+
324324
set_literal = "[", expr, { ",", expr }, "]" ;
325325
326326
tuple_literal = "{", expr, { ",", expr }, "}" ;
@@ -340,14 +340,14 @@ function_call = agg_function
340340
agg_function = ( "AVG" | "COUNT" | "MAX" | "MIN" | "SUM" ), "(", ( ( [ "DISTINCT" ], expr ) | "*" ), ")"
341341
| "PERCENTILE", "(", expr, ",", expr, ")" ;
342342
343-
non_agg_function =
344-
"SETCONTAINS" , "(", expr, ",", expr, ")"
345-
| "SETCONTAINSALL" , "(", expr, ",", expr, ")"
346-
| "SETCONTAINSANY" , "(", expr, ",", expr, ")"
343+
non_agg_function =
344+
"SETCONTAINS" , "(", expr, ",", expr, ")"
345+
| "SETCONTAINSALL" , "(", expr, ",", expr, ")"
346+
| "SETCONTAINSANY" , "(", expr, ",", expr, ")"
347347
| "DATEPART" , "(", expr, ",", expr, ")" ;
348348
349-
table_valued_function =
350-
"SUBTABLE" , "(", table_name, ".", column_name, ")";
349+
table_valued_function =
350+
"SUBTABLE" , "(", table_name, ".", column_name, ")";
351351
352352
353353
identifier = letter , { letter | digit | "_" } ;
@@ -362,5 +362,3 @@ letter = "A" | "B" | "C" | "D" | "E" | "F" | "G"
362362
| "x" | "y" | "z" ;
363363
364364
digit = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" ;
365-
366-

0 commit comments

Comments
 (0)