Skip to content

[AV-93521] Capella UDFs Support #341

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

Open
wants to merge 16 commits into
base: capella
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
8a9db9e
[AV-93521] Exposing UDF files to builds in prep for rewriting.
sarahlwelton Jan 30, 2025
8880881
[AV-93521] Starting first draft of JavaScript UDFs in Capella. Uncomm…
sarahlwelton Feb 21, 2025
fa70e4f
[AV-93521] Small update to UI procedure.
sarahlwelton Mar 21, 2025
01c129f
[AV-93521] Working commit to avoid losing work. Updating calling, cre…
sarahlwelton Mar 27, 2025
0d0ad7b
[AV-93521] Continuing to update UDFs docs. Removing code callouts fro…
sarahlwelton Mar 28, 2025
c073f2c
[AV-93521] Working commit, continuing to update related documentation…
sarahlwelton Apr 2, 2025
0a7c061
[AV-93521] Final tweaks for first draft of UDFs documentation.
sarahlwelton Apr 3, 2025
a3fc597
[AV-93521] Fix broken links
sarahlwelton Apr 16, 2025
decb9e1
[AV-93521] One more broken link
sarahlwelton Apr 16, 2025
fd90264
Update modules/javascript-udfs/pages/handling-errors-javascript-udf.adoc
sarahlwelton Jun 17, 2025
d15c40e
Update modules/javascript-udfs/pages/handling-errors-javascript-udf.adoc
sarahlwelton Jun 17, 2025
e7c3a3d
Update modules/guides/pages/call-user-defined-function.adoc
sarahlwelton Jun 17, 2025
d7dc380
Update modules/guides/pages/call-user-defined-function.adoc
sarahlwelton Jun 17, 2025
2e4366b
Update modules/javascript-udfs/pages/calling-n1ql-from-javascript.adoc
sarahlwelton Jun 17, 2025
202ae5c
[AV-93521] Cluster -> Operational Cluster, for consistency
sarahlwelton Jun 17, 2025
400dfcb
[AV-93521] Add clarification on name + scoping behavior for functions
sarahlwelton Jun 19, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1 +1 @@
EXECUTE FUNCTION GetBusinessDays("02/14/2022", "04/16/2022");
EXECUTE FUNCTION GetBusinessDays("02/14/2025", "04/16/2025");
Original file line number Diff line number Diff line change
@@ -1 +1 @@
EXECUTE FUNCTION default:`travel-sample`.`inventory`.GetBusinessDays("03/10/2022", "05/10.2022");
EXECUTE FUNCTION default:`travel-sample`.`inventory`.GetBusinessDays("03/10/2025", "05/10/2025");
Original file line number Diff line number Diff line change
@@ -1 +1 @@
SELECT GetBusinessDays("02/14/2022", "04/16/2022");
SELECT GetBusinessDays("02/14/2025", "04/16/2025");
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
cbq> SELECT CASE
WHEN GetBusinessDays('02/14/2025', '4/16/2025') > 44 THEN "true"
ELSE "false"
END
AS response;
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
SELECT CASE
WHEN GetBusinessDays('02/14/2022', '4/16/2022') > 44 THEN "true"
WHEN GetBusinessDays('02/14/2025', '4/16/2025') > 44 THEN "true"
ELSE "false"
END
AS response;
84 changes: 0 additions & 84 deletions modules/guides/pages/.call-user-defined-function.adoc

This file was deleted.

100 changes: 0 additions & 100 deletions modules/guides/pages/.create-javascript-library.adoc

This file was deleted.

87 changes: 0 additions & 87 deletions modules/guides/pages/.create-user-defined-function.adoc

This file was deleted.

45 changes: 0 additions & 45 deletions modules/guides/pages/.javascript-udfs.adoc

This file was deleted.

Loading