KBrown / PgBinaryProtocol.rs
0 likes
0 forks
1 files
Last active
1 | if args.contains(&PostgresTypeAttribute::PgBinaryProtocol) { |
2 | // At this time, the `PostgresTypeAttribute` does not impact the way we generate |
3 | // the `recv` and `send` functions. |
4 | stream.extend(quote! { |
5 | #[doc(hidden)] |
6 | #[::pgrx::pgrx_macros::pg_extern(immutable, strict, parallel_safe)] |
7 | pub fn #funcname_recv #generics( |
8 | internal: ::pgrx::datum::Internal, |
9 | ) -> #name #generics { |
10 | let buf = unsafe { internal.get_mut::<::pgrx::pg_sys::StringInfoData>().unwrap() }; |
KBrown / postgresql-13.log
0 likes
0 forks
1 files
Last active
1 | 2025-06-27 05:21:44.757 CST [32472] DEBUG: forked new backend, pid=2691 socket=9 |
2 | 2025-06-27 05:21:44.991 CST [2691] DEBUG: enigma_type_modifier_input:: value 2 at character 60 |
3 | 2025-06-27 05:21:44.991 CST [2691] DEBUG: enigma_type_modifier_input:: value 2 |
4 | 2025-06-27 05:21:45.013 CST [2691] DEBUG: enigma_input_with_typmod: ARGUMENTS: Input: *****, OID: 42565, Typmod: 2 |
5 | 2025-06-27 05:21:45.013 CST [2691] CONTEXT: COPY testab, line 1, column b: "KEY:2 |
6 | -----BEGIN PGP MESSAGE----- |
7 | |
8 | wYwDy31dohr4uGABA/9IEG/GeMugqFB/xRN1O037U2inrmbBbf2yn47T7XFXpgDD |
9 | ..." |
10 | 2025-06-27 05:21:45.015 CST [2691] INFO: Already encrypted with key ID 2 |
KBrown / parse_coerce.diff
0 likes
0 forks
1 files
Last active
1 | diff --git a/src/backend/parser/parse_coerce.c b/src/backend/parser/parse_coerce.c |
2 | index 2051f9f11a6..d34a14aa527 100644 |
3 | --- a/src/backend/parser/parse_coerce.c |
4 | +++ b/src/backend/parser/parse_coerce.c |
5 | @@ -276,7 +276,7 @@ coerce_type(ParseState *pstate, Node *node, |
6 | * or it won't be able to obey the bizarre SQL-spec input rules. (Ugly |
7 | * as sin, but so is this part of the spec...) |
8 | */ |
9 | - if (baseTypeId == INTERVALOID) |
10 | + if (baseTypeId == INTERVALOID || baseTypeId >= 16384) |
KBrown / gist:ec663d145b6b4eb1b697704bd8d22dd9
0 likes
0 forks
1 files
Last active
1 | Error al tratar de descargar página del SAT: |
2 | |
3 | curl -vvvv 'https://cfdiau.sat.gob.mx/nidp/wsfed/ep?id=SATUPCFDiCon&sid=0&option=credential&sid=0' |
4 | * Host cfdiau.sat.gob.mx:443 was resolved. |
5 | * IPv6: (none) |
6 | * IPv4: 200.33.84.45 |
7 | * Trying 200.33.84.45:443... |
8 | * Connected to cfdiau.sat.gob.mx (200.33.84.45) port 443 |
9 | * ALPN: curl offers h2,http/1.1 |
10 | * TLSv1.3 (OUT), TLS handshake, Client hello (1): |
renich / forgejo-runner-install.bash
0 likes
0 forks
1 files
Last active
1 | #!/usr/bin/bash |
2 | set -x |
3 | |
4 | # Description: |
5 | # This script is for installing forgejo-runner. To use it, you need to execute it with a version as an argument |
6 | # |
7 | # For example: |
8 | # |
9 | # forgejo-runner-install 5.0.3 |
renich / opengist-install.bash
0 likes
0 forks
1 files
Last active
1 | #!/usr/bin/bash |
2 | |
3 | # Description: |
4 | # This script is for installing opengist. To use it, you need to execute it with a version as an argument |
5 | # |
6 | # For example: |
7 | # |
8 | # opengist-install 1.18.2 |
9 | |
10 | # functions |
Newer
Older