-
-
Notifications
You must be signed in to change notification settings - Fork 55
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
feat(wasm): add Calendly Wasm FDW #364
base: main
Are you sure you want to change the base?
Conversation
fdw_package_url 'https://github.com/supabase/wrappers/releases/download/wasm_calendly_fdw_v0.1.0/calendly_fdw.wasm', | ||
fdw_package_name 'supabase:calendly-fdw', | ||
fdw_package_version '0.1.0', | ||
fdw_package_checksum 'tbd', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
checksum missing
fdw_package_url 'https://github.com/supabase/wrappers/releases/download/wasm_calendly_fdw_v0.1.0/calendly_fdw.wasm', | ||
fdw_package_name 'supabase:calendly-fdw', | ||
fdw_package_version '0.1.0', | ||
fdw_package_checksum 'tbd', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
checksum missing
static mut INSTANCE: *mut CalendlyFdw = std::ptr::null_mut::<CalendlyFdw>(); | ||
static FDW_NAME: &str = "CalendlyFdw"; | ||
|
||
impl CalendlyFdw { | ||
fn init() { | ||
let instance = Self::default(); | ||
unsafe { | ||
INSTANCE = Box::leak(Box::new(instance)); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider using LazyLock<T>
instead of unsafe initialization for the INSTANCE
static.
What kind of change does this PR introduce?
This PR is to add a new Calendly Wasm foreign data wrapper.
What is the current behavior?
N/A
What is the new behavior?
N/A
Additional context
N/A