Pavel Agafonov

Results 27 issues of Pavel Agafonov

### Summary If you put a breakpoint on tokio::task::yield_now().await; in this code and hit “Step over”, the debugger will dive into Future polling. ```rust fn main() { let rt =...

debugger

All lines of code `String::from_utf8(output.stdout).unwrap()` in pgrx-pg-config cause a panic if Windows uses a non utf-8 code page, e.g. Cyrillic Windows uses 866. Possible solutions: 1. Use `from_utf8_lossy` 2. Add...

Closes #2077 Unfortunately, the rust doesn't allow using `&'static str` in const generic yet. This would allow simply moving an associative constant to a generic trait. Therefore an auxiliary trait...

This command: ```rust let mut command = Command::new(pg_config.psql_path()?); command .arg("-XqAt") .env_remove("PGUSER") .arg("-h") .arg(pg_config.host()) .arg("-p") .arg(pg_config.port()?.to_string()) .arg("template1") .arg("-c") .arg(format!( "select count(*) from pg_database where datname = '{}';", dbname.replace('\'', "''") )) .stdout(Stdio::piped())...

Code: ```rust pub type Output = TableIterator

enhancement
sql-gen
schema
pgrx-iter

## Feature or Problem It may be necessary to configure the scaler’s behavior somehow. Pull request https://github.com/wasmCloud/wasmCloud/pull/4820 needs to be accepted in order to approve this PR. ## Related Issues...

## Feature or Problem Closes #474 ## Related Issues ## Release Information ## Consumer Impact ## Testing ### Unit Test(s) ### Acceptance or Integration ### Manual Verification

Hi there! I want to link wasm components at runtime. How can I do this with version 39.0.0? ### Test Case Here is the test code: ```rust use std::{collections::HashMap, sync::Arc};...

bug
wasm-proposal:component-model-async

## Feature or Problem Allows for more flexible configuration of the paths used to invoke components. ## Related Issues ## Release Information ## Consumer Impact ## Testing ### Unit Test(s)...

type:fix
type:feature
type:docs