Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: auto update docs #2573

Merged
merged 1 commit into from
Mar 25, 2024
Merged

Conversation

duckdblabs-bot
Copy link
Collaborator

Base PullRequest

default branch (https://github.com/duckdb/duckdb-web/tree/main)

Command results

Details:
add path
/home/runner/work/_actions/technote-space/create-pr-action/v2/node_modules/npm-check-updates/build/src/bin
./scripts/generate_all_docs.sh duckdb
Generating docs using duckdb source in duckdb
Open/Connect
docs/api/c/connect.md
Query Execution
docs/api/c/query.md
Configuration
docs/api/c/config.md
Result Functions
docs/api/c/types.md
Helpers
None
Date/Time/Timestamp Helpers
docs/api/c/types.md
Hugeint Helpers
docs/api/c/types.md
Decimal Helpers
docs/api/c/types.md
Value Interface
docs/api/c/value.md
Logical Type Interface
docs/api/c/types.md
Data Chunk Interface
docs/api/c/data_chunk.md
Vector Interface
docs/api/c/data_chunk.md
Validity Mask Functions
docs/api/c/data_chunk.md
Table Functions
docs/api/c/table_functions.md
Table Function Bind
docs/api/c/table_functions.md
Table Function Init
docs/api/c/table_functions.md
Table Function
docs/api/c/table_functions.md
Replacement Scans
docs/api/c/replacement_scans.md
Prepared Statements
docs/api/c/prepared.md
Appender
docs/api/c/appender.md
Arrow Interface
None
generating against duckdb version 0.10.1 and pandas version 2.2.1
�[01mRunning Sphinx v7.2.6�[39;49;00m
loading intersphinx inventory from https://pandas.pydata.org/pandas-docs/version/1.5.1/objects.inv...
loading intersphinx inventory from https://arrow.apache.org/docs/9.0/objects.inv...
loading intersphinx inventory from https://filesystem-spec.readthedocs.io/en/latest/objects.inv...
�[01mbuilding [mo]: �[39;49;00mall of 0 po files
�[01mwriting output... �[39;49;00m
�[01mbuilding [jekyll]: �[39;49;00mall source files
�[01mupdating environment: �[39;49;00m[new config] 1 added, 0 changed, 0 removed
�[2K�[01mreading sources... �[39;49;00m[100%] �[35mindex�[39;49;00m
�[01mlooking for now-outdated files... �[39;49;00mnone found
�[01mpickling environment... �[39;49;00mdone
�[01mchecking consistency... �[39;49;00mdone
�[01mpreparing documents... �[39;49;00mdone
�[01mcopying assets... �[39;49;00m�[01mcopying extra files... �[39;49;00mdone
done
�[2K�[01mwriting output... �[39;49;00m[100%] �[32mindex�[39;49;00m
�[01mgenerating indices... �[39;49;00mpy-modindex done
�[01mwriting additional pages... �[39;49;00msearch done
�[01mdumping search index in English (code: en)... �[39;49;00mdone
�[01mdumping object inventory... �[39;49;00mdone
�[01mbuild succeeded, 14 warnings.�[39;49;00m

The jekyll files are in docs/api/python/reference.
union_extract(s, 'k') Binder Error: Referenced column "s" not found in FROM clause!
LINE 1: SELECT union_extract(s, 'k') AS result
                             ^

list_slice(l, 2, 4) Binder Error: Referenced column "l" not found in FROM clause!
LINE 1: SELECT list_slice(l, 2, 4) AS result
                          ^

vector_type(col) Binder Error: Referenced column "col" not found in FROM clause!
LINE 1: SELECT vector_type(col) AS result
                           ^

enum_first(NULL::mood) Catalog Error: Type with name mood does not exist!
Did you mean "oid"?

enum_last(NULL::mood) Catalog Error: Type with name mood does not exist!
Did you mean "oid"?

enum_code('happy'::mood) Catalog Error: Type with name mood does not exist!
Did you mean "oid"?

enum_range(NULL::mood) Catalog Error: Type with name mood does not exist!
Did you mean "oid"?

enum_range_boundary(NULL, 'happy'::mood) Catalog Error: Type with name mood does not exist!
Did you mean "oid"?

bitstring('1010'::BIT, 7) Binder Error: No function matches the given name and argument types 'bitstring(BIT, INTEGER_LITERAL)'. You might need to add explicit type casts.
	Candidate functions:
	bitstring(VARCHAR, INTEGER) -> BIT

LINE 1: SELECT bitstring('1010'::BIT, 7) AS result
               ^

julian(timestamp '2006-01-01 12:00') Conversion Error: timestamp field value out of range: "2006-01-01 12:00", expected format is (YYYY-MM-DD HH:MM:SS[.US][±HH:MM| ZONE])

array_cosine_similarity([1, 2, 3], [1, 2, 3]) Binder Error: No function matches the given name and argument types 'array_cosine_similarity(INTEGER[], INTEGER[])'. You might need to add explicit type casts.
	Candidate functions:
	array_cosine_similarity(FLOAT[ANY], FLOAT[ANY]) -> FLOAT
	array_cosine_similarity(DOUBLE[ANY], DOUBLE[ANY]) -> DOUBLE

LINE 1: SELECT array_cosine_similarity([1, 2, 3], [1, ...
               ^

array_distance([1, 2, 3], [1, 2, 3]) Binder Error: No function matches the given name and argument types 'array_distance(INTEGER[], INTEGER[])'. You might need to add explicit type casts.
	Candidate functions:
	array_distance(FLOAT[ANY], FLOAT[ANY]) -> FLOAT
	array_distance(DOUBLE[ANY], DOUBLE[ANY]) -> DOUBLE

LINE 1: SELECT array_distance([1, 2, 3], [1, 2, 3]) AS...
               ^

array_inner_product([1, 2, 3], [1, 2, 3]) Binder Error: No function matches the given name and argument types 'array_inner_product(INTEGER[], INTEGER[])'. You might need to add explicit type casts.
	Candidate functions:
	array_inner_product(FLOAT[ANY], FLOAT[ANY]) -> FLOAT
	array_inner_product(DOUBLE[ANY], DOUBLE[ANY]) -> DOUBLE

LINE 1: SELECT array_inner_product([1, 2, 3], [1, 2, 3...
               ^

create_sort_key('A', 'DESC') Binder Error: create_sort_key modifier must end with either NULLS FIRST or NULLS LAST

error('access_mode') Invalid Input Error: access_mode

SUM(x) / COUNT(*) Binder Error: Referenced column "x" not found in FROM clause!
LINE 1: SELECT SUM(x) / COUNT(*) AS result
                   ^

COVAR_POP(y, x) / (STDDEV_POP(x) * STDDEV_POP(y)) Binder Error: Referenced column "y" not found in FROM clause!
LINE 1: SELECT COVAR_POP(y, x) / (STDDEV_POP(x) * STDDEV_POP(y))...
                         ^

(SUM(x*y) - SUM(x) * SUM(y) / COUNT(*)) / COUNT(*) Binder Error: Referenced column "x" not found in FROM clause!
LINE 1: SELECT (SUM(x*y) - SUM(x) * SUM(y) / COUNT(*)) / CO...
                    ^

(SUM(x*y) - SUM(x) * SUM(y) / COUNT(*)) / (COUNT(*) - 1) Binder Error: Referenced column "x" not found in FROM clause!
LINE 1: SELECT (SUM(x*y) - SUM(x) * SUM(y) / COUNT(*)) / (C...
                    ^

favg(A) Binder Error: Referenced column "A" not found in FROM clause!
LINE 1: SELECT favg(A) AS result
                    ^

sqrt(var_pop(x)) Binder Error: Referenced column "x" not found in FROM clause!
LINE 1: SELECT sqrt(var_pop(x)) AS result
                            ^

sqrt(var_samp(x)) Binder Error: Referenced column "x" not found in FROM clause!
LINE 1: SELECT sqrt(var_samp(x)) AS result
                             ^

(SUM(x^2) - SUM(x)^2 / COUNT(x)) / (COUNT(x) - 1) Binder Error: Referenced column "x" not found in FROM clause!
LINE 1: SELECT (SUM(x^2) - SUM(x)^2 / COUNT(x)) / (COUNT(x)...
                    ^

(SUM(x*y) - SUM(x) * SUM(y) / COUNT(*)) / COUNT(*) Binder Error: Referenced column "x" not found in FROM clause!
LINE 1: SELECT (SUM(x*y) - SUM(x) * SUM(y) / COUNT(*)) / CO...
                    ^

AVG(y)-REGR_SLOPE(y,x)*AVG(x) Binder Error: Referenced column "y" not found in FROM clause!
LINE 1: SELECT AVG(y)-REGR_SLOPE(y,x)*AVG(x) AS result
                   ^

COVAR_POP(x,y) / VAR_POP(x) Binder Error: Referenced column "x" not found in FROM clause!
LINE 1: SELECT COVAR_POP(x,y) / VAR_POP(x) AS result
                         ^

REGR_COUNT(y, x) * VAR_POP(x) Binder Error: Referenced column "y" not found in FROM clause!
LINE 1: SELECT REGR_COUNT(y, x) * VAR_POP(x) AS result
                          ^

REGR_COUNT(y, x) * COVAR_POP(y, x) Binder Error: Referenced column "y" not found in FROM clause!
LINE 1: SELECT REGR_COUNT(y, x) * COVAR_POP(y, x) AS result
                          ^

REGR_COUNT(y, x) * VAR_POP(y) Binder Error: Referenced column "y" not found in FROM clause!
LINE 1: SELECT REGR_COUNT(y, x) * VAR_POP(y) AS result
                          ^

histogram(A) Binder Error: Referenced column "A" not found in FROM clause!
LINE 1: SELECT histogram(A) AS result
                         ^

list(A) Binder Error: Referenced column "A" not found in FROM clause!
LINE 1: SELECT list(A) AS result
                    ^

approx_quantile(A,0.5) Binder Error: Referenced column "A" not found in FROM clause!
LINE 1: SELECT approx_quantile(A,0.5) AS result
                               ^

MEDIAN(ABS(x-MEDIAN(x))) Binder Error: Referenced column "x" not found in FROM clause!
LINE 1: SELECT MEDIAN(ABS(x-MEDIAN(x))) AS result
                          ^

QUANTILE_CONT(x, 0.5) Binder Error: Referenced column "x" not found in FROM clause!
LINE 1: SELECT QUANTILE_CONT(x, 0.5) AS result
                             ^

reservoir_quantile(A,0.5,1024) Binder Error: Referenced column "A" not found in FROM clause!
LINE 1: SELECT reservoir_quantile(A,0.5,1024) AS result
                                  ^

approx_count_distinct(A) Binder Error: Referenced column "A" not found in FROM clause!
LINE 1: SELECT approx_count_distinct(A) AS result
                                     ^

arg_min(A,B) Binder Error: Referenced column "A" not found in FROM clause!
LINE 1: SELECT arg_min(A,B) AS result
                       ^

arg_min_null(A,B) Binder Error: Referenced column "A" not found in FROM clause!
LINE 1: SELECT arg_min_null(A,B) AS result
                            ^

arg_max(A,B) Binder Error: Referenced column "A" not found in FROM clause!
LINE 1: SELECT arg_max(A,B) AS result
                       ^

arg_max_null(A,B) Binder Error: Referenced column "A" not found in FROM clause!
LINE 1: SELECT arg_max_null(A,B) AS result
                            ^

bit_and(A) Binder Error: Referenced column "A" not found in FROM clause!
LINE 1: SELECT bit_and(A) AS result
                       ^

bit_or(A) Binder Error: Referenced column "A" not found in FROM clause!
LINE 1: SELECT bit_or(A) AS result
                      ^

bit_xor(A) Binder Error: Referenced column "A" not found in FROM clause!
LINE 1: SELECT bit_xor(A) AS result
                       ^

bitstring_agg(A) Binder Error: Referenced column "A" not found in FROM clause!
LINE 1: SELECT bitstring_agg(A) AS result
                             ^

bool_and(A) Binder Error: Referenced column "A" not found in FROM clause!
LINE 1: SELECT bool_and(A) AS result
                        ^

bool_or(A) Binder Error: Referenced column "A" not found in FROM clause!
LINE 1: SELECT bool_or(A) AS result
                       ^

kahan_sum(A) Binder Error: Referenced column "A" not found in FROM clause!
LINE 1: SELECT kahan_sum(A) AS result
                         ^

min(A) Binder Error: Referenced column "A" not found in FROM clause!
LINE 1: SELECT min(A) AS result
                   ^

max(A) Binder Error: Referenced column "A" not found in FROM clause!
LINE 1: SELECT max(A) AS result
                   ^

product(A) Binder Error: Referenced column "A" not found in FROM clause!
LINE 1: SELECT product(A) AS result
                       ^

skewness(A) Binder Error: Referenced column "A" not found in FROM clause!
LINE 1: SELECT skewness(A) AS result
                        ^

string_agg(A, '-') Binder Error: Referenced column "A" not found in FROM clause!
LINE 1: SELECT string_agg(A, '-') AS result
                          ^

sum(A) Binder Error: Referenced column "A" not found in FROM clause!
LINE 1: SELECT sum(A) AS result
                   ^

sum_no_overflow(A) Binder Error: Referenced column "A" not found in FROM clause!
LINE 1: SELECT sum_no_overflow(A) AS result
                               ^

stderr:

+ '[' duckdb = '' ']'
+ DUCKDB=duckdb
+ echo 'Generating docs using duckdb source in duckdb'
+ python3 ./scripts/generate_config_docs.py duckdb/build/release/duckdb
+ python3 ./scripts/generate_docs.py duckdb
+ python3 ./scripts/generate_python_docs.py
�[91mdocstring of duckdb.duckdb.PyCapsule.from_parquet:3: WARNING: Inline emphasis start-string without end-string.�[39;49;00m
�[91mdocstring of duckdb.duckdb.PyCapsule.from_parquet:7: WARNING: Inline emphasis start-string without end-string.�[39;49;00m
�[91mdocstring of duckdb.duckdb.PyCapsule.read_parquet:3: WARNING: Inline emphasis start-string without end-string.�[39;49;00m
�[91mdocstring of duckdb.duckdb.PyCapsule.read_parquet:7: WARNING: Inline emphasis start-string without end-string.�[39;49;00m
�[91m/opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/site-packages/duckdb/__init__.py:docstring of duckdb.duckdb.PyCapsule.StarExpression:3: WARNING: Inline emphasis start-string without end-string.�[39;49;00m
�[91m/opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/site-packages/duckdb/__init__.py:docstring of duckdb.duckdb.PyCapsule.df:3: WARNING: Inline emphasis start-string without end-string.�[39;49;00m
�[91m/opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/site-packages/duckdb/__init__.py:docstring of duckdb.duckdb.PyCapsule.from_parquet:3: WARNING: Inline emphasis start-string without end-string.�[39;49;00m
�[91m/opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/site-packages/duckdb/__init__.py:docstring of duckdb.duckdb.PyCapsule.from_parquet:7: WARNING: Inline emphasis start-string without end-string.�[39;49;00m
�[91m/opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/site-packages/duckdb/__init__.py:docstring of duckdb.duckdb.PyCapsule.get_substrait:3: WARNING: Inline emphasis start-string without end-string.�[39;49;00m
�[91m/opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/site-packages/duckdb/__init__.py:docstring of duckdb.duckdb.PyCapsule.get_substrait:7: WARNING: Inline emphasis start-string without end-string.�[39;49;00m
�[91m/opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/site-packages/duckdb/__init__.py:docstring of duckdb.duckdb.PyCapsule.get_substrait_json:3: WARNING: Inline emphasis start-string without end-string.�[39;49;00m
�[91m/opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/site-packages/duckdb/__init__.py:docstring of duckdb.duckdb.PyCapsule.get_substrait_json:7: WARNING: Inline emphasis start-string without end-string.�[39;49;00m
�[91m/opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/site-packages/duckdb/__init__.py:docstring of duckdb.duckdb.PyCapsule.read_parquet:3: WARNING: Inline emphasis start-string without end-string.�[39;49;00m
�[91m/opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/site-packages/duckdb/__init__.py:docstring of duckdb.duckdb.PyCapsule.read_parquet:7: WARNING: Inline emphasis start-string without end-string.�[39;49;00m
+ node ./scripts/generate_nodejs_docs.js duckdb/../duckdb-node
+ python3 ./scripts/generate_function_json.py --source duckdb --binary duckdb/build/release/duckdb
# remove things we don't want commited
rm *.zip
rm -rf duckdb duckdb-node

Changed files

Changed 3 files:
  • docs/api/python/reference/index.md
  • docs/configuration/overview.md
  • docs/functions.json

:octocat: Repo | 📝 Issues | 🏬 Marketplace

@szarnyasg szarnyasg merged commit 1352a8d into main Mar 25, 2024
2 checks passed
@szarnyasg szarnyasg deleted the create-pr-action/chore-update-docs-0 branch March 25, 2024 09:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants