Data update

This commit is contained in:
Ingy döt Net 2025-08-11 18:05:26 -07:00
parent 4d5544505c
commit 4924dd0264
3073 changed files with 55820 additions and 4408 deletions

View 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';

View file

@ -0,0 +1 @@
COMMENT ON MACRO TABLE <name> is <comment>;

View 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';

View 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>

View 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()

View 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)

View file

@ -1 +0,0 @@
XYZ