- Notifications
You must be signed in to change notification settings - Fork328
Migration for 2.8.0#1152
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Migration for 2.8.0#1152
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -4,7 +4,7 @@ on: | ||
workflow_dispatch: | ||
inputs: | ||
packageVersion: | ||
default: "2.8.0" | ||
jobs: | ||
# | ||
# PostgresML extension. | ||
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "pgml" | ||
version = "2.8.0" | ||
edition = "2021" | ||
[lib] | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
-- src/api.rs:691 | ||
-- pgml::api::transform_stream | ||
CREATE OR REPLACE FUNCTION pgml."transform_stream"( | ||
"task" TEXT, /* alloc::string::String */ | ||
"args" jsonb DEFAULT '{}', /* pgrx::datum::json::JsonB */ | ||
"input" TEXT DEFAULT '', /* &str */ | ||
"cache" bool DEFAULT false /* bool */ | ||
) RETURNS SETOF TEXT /* alloc::string::String */ | ||
IMMUTABLE STRICT PARALLEL SAFE | ||
LANGUAGE c /* Rust */ | ||
AS 'MODULE_PATHNAME', 'transform_stream_string_wrapper'; | ||
-- src/api.rs:674 | ||
-- pgml::api::transform_stream | ||
CREATE OR REPLACE FUNCTION pgml."transform_stream"( | ||
"task" jsonb, /* pgrx::datum::json::JsonB */ | ||
"args" jsonb DEFAULT '{}', /* pgrx::datum::json::JsonB */ | ||
"input" TEXT DEFAULT '', /* &str */ | ||
"cache" bool DEFAULT false /* bool */ | ||
) RETURNS SETOF TEXT /* alloc::string::String */ | ||
IMMUTABLE STRICT PARALLEL SAFE | ||
LANGUAGE c /* Rust */ | ||
AS 'MODULE_PATHNAME', 'transform_stream_json_wrapper'; |
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.