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 @@
select list_transform([1,2,3], x -> (select 1));

View file

@ -0,0 +1,2 @@
create or replace function rnv(mean, sd) as
(select (( sqrt(-2 * ln(random())) * cos(2 * pi() * random())) * sd) + mean);

View file

@ -0,0 +1 @@
select rnv(0,1) from range(0,10);

View file

@ -0,0 +1,3 @@
create function l() as [1,2];
create function pp(lst) as table (select unnest(lst));

View file

@ -0,0 +1 @@
select last(line) from read_csv('seq.txt', sep='', columns={'line': VARCHAR});

View file

@ -0,0 +1,2 @@
select last(line) from read_csv('seq.txt', header=false, sep='',
columns={'line': VARCHAR}, parallel=true);

View file

@ -0,0 +1,3 @@
(let numbers [1 2 3 4]
maximum (max numbers)) ;should be (... max numbers)
(+ maximum 5)

View file

@ -0,0 +1,2 @@
(mock + (fn a b ((unmocked +) a b 1)))
(+ 2 3)