Data update
This commit is contained in:
parent
4d5544505c
commit
4924dd0264
3073 changed files with 55820 additions and 4408 deletions
4
Task/Documentation/DuckDB/documentation-1.duckdb
Normal file
4
Task/Documentation/DuckDB/documentation-1.duckdb
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
CREATE TABLE t AS (SELECT unnest([]));
|
||||
COMMENT ON TABLE t IS /* this is just an example */ 'foo bar'; -- ignore me
|
||||
|
||||
select comment from duckdb_tables where table_name = 't';
|
||||
1
Task/Documentation/DuckDB/documentation-2.duckdb
Normal file
1
Task/Documentation/DuckDB/documentation-2.duckdb
Normal file
|
|
@ -0,0 +1 @@
|
|||
COMMENT ON MACRO TABLE <name> is <comment>;
|
||||
3
Task/Documentation/DuckDB/documentation-3.duckdb
Normal file
3
Task/Documentation/DuckDB/documentation-3.duckdb
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
COMMENT ON TABLE main.test_table IS 'very nice table';
|
||||
|
||||
COMMENT ON COLUMN test_table.test_table_column IS 'very nice column';
|
||||
26
Task/Documentation/Unicon/documentation-1.unicon
Normal file
26
Task/Documentation/Unicon/documentation-1.unicon
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# <p>
|
||||
# Process a <b>properly formatted</b> CSV file.
|
||||
# You can change the separator from the default <tt>,</tt>
|
||||
# to any set of characters using the <tt>--separator=CSET</tt>
|
||||
# argument.
|
||||
# </p>
|
||||
# <p>
|
||||
# Each separator denotes a field separation (e.g. "a,,,b,"
|
||||
# contains five fields) unless you give the <tt>--span</tt> argument.
|
||||
# If you give the <tt>--span</tt> argument, then the fields
|
||||
# as considered to be separated by <i>one or more</i> spans
|
||||
# of the separator instead of exactly one and the above input
|
||||
# contains three fields instead of five (in both cases, the last
|
||||
# field is the empty string).
|
||||
# </p>
|
||||
# <p>
|
||||
# Assumes that:<br><br>
|
||||
# a. Fields containing the separator are enclosed in double
|
||||
# quotes.<br>
|
||||
# b. Fields containing double quotes have those quotes
|
||||
# duplicated with the entire field inclosed in double
|
||||
# quotes.<br>
|
||||
# c. Leading and trailing whitespace (blanks and tabs) are
|
||||
# to be removed unless used as separators.<br>
|
||||
# d. Double quotes and newlines are <i>never</i> separators.<br>
|
||||
#</p>
|
||||
6
Task/Documentation/Unicon/documentation-2.unicon
Normal file
6
Task/Documentation/Unicon/documentation-2.unicon
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#<p>
|
||||
# Check to see if any candidate has a clear majority.
|
||||
#<[succeeds if a candidate has a clear majority]>
|
||||
#<[fails if no candidate has a clear majority yet]>
|
||||
#</p>
|
||||
procedure majority()
|
||||
7
Task/Documentation/Unicon/documentation-3.unicon
Normal file
7
Task/Documentation/Unicon/documentation-3.unicon
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
#<p>
|
||||
# Compute the percent of first-place votes a candidate has in the current
|
||||
# round.
|
||||
# <[param candidate - a candidate as a list [name,number of votes for first]>.
|
||||
# <[returns percent of total votes that the candidate has]>
|
||||
#</p>
|
||||
procedure percentVote(candidate)
|
||||
|
|
@ -1 +0,0 @@
|
|||
XYZ
|
||||
Loading…
Add table
Add a link
Reference in a new issue