foo> - Search results in mailing lists
Mailing lists >> pgsql-general >> Thread
2025-04-30 14:14:29 | alter system appending to a value (Luca Ferrari)
foo'; Rationale: I'm using ansible to configure, thru different steps, PostgreSQL instances and I would
Mailing lists >> pgsql-general >> Thread
2025-04-23 14:52:42 | segmentation fault (Zechman, Derek S)
foo(); CREATE FUNCTION pg_temp.foo() RETURNS integer LANGUAGE 'plpgsql' AS $BODY$ DECLARE bar integer
Mailing lists >> pgsql-general >> Thread
2025-04-22 04:22:50 | pg_get_serial_sequence not working for manually set seq (Marcelo Fernandes)
foo CASCADE; CREATE TABLE foo (id INT GENERATED ALWAYS AS IDENTITY); SELECT pg_get_serial
Mailing lists >> pgsql-general >> Thread
2025-03-24 06:42:19 | Best way to check if a table is empty (Marcelo Fernandes)
foo LIMIT 1); Pros: 1. Works with any table. 2. Relatively fast (if the table
Mailing lists >> pgsql-general >> Thread
2025-03-21 00:56:05 | Re: After upgrading libpq, the same function(PQftype) call returns a different OID (Tom Lane)
foo_d.h files, I think it'd be sufficient to do something like 0001 attached
Mailing lists >> pgsql-general >> Thread >> Search in thread (2)
2025-03-13 18:56:21 | Re: Duplicate Key Values (mark bradley)
foo" statement. Are you creating the tables via PgAdmin point-and-click? On Thu, Mar 13, 2025 at 10:56 AM mark
Mailing lists >> pgsql-general >> Thread >> Search in thread (2)
2025-02-24 15:07:06 | Re: COLLATION update in 13.1 (Matthias Apitz)
foo | UTF8 | de_DE.UTF-8 | de_DE.UTF-8 | | libc | customers | sisis | UTF8 | de_DE.UTF-8 | de_DE.UTF-8 | | libc
Mailing lists >> pgsql-general >> Thread >> Search in thread (3)
2025-02-24 10:56:16 | Default Value Retention After Dropping Default (Marcelo Fernandes)
foo CASCADE; CREATE TABLE foo (id SERIAL PRIMARY KEY); INSERT INTO foo (id) SELECT generate
Mailing lists >> pgsql-general >> Thread
2025-02-18 23:56:27 | How to select avg(select max(something) from ...) (dfgpostgres)
foo' and It doesn't like that reference to "d.dvm_id) in that subquery
Mailing lists >> pgsql-general >> Thread
2025-02-17 23:32:47 | Loading the latest N rows into the cache seems way too fast. (Ron Johnson)
foo bar -Xc "DO \$\$ BEGIN PERFORM * FROM mytbl ORDER BY id DESC LIMIT 200000 ; END \$\$;" DO real
Mailing lists >> pgsql-general >> Thread
2025-02-17 19:51:48 | Calling set-returning functions in a non-set-expecting context (Jan Behrens)
foo() RETURNS INTEGER RETURN generate_series(1, 10); is it then guaranteed, that foo() always
Mailing lists >> pgsql-general >> Thread
2025-02-10 19:00:57 | Re: PG-15.6: timeout parameters erroring out (Tom Lane)
foo = 15min; ERROR: trailing junk after numeric literal at or near "15min" LINE 1: set foo = 15min
Mailing lists >> pgsql-general >> Thread >> Search in thread (2)
2025-02-04 19:34:17 | Re: Index usage with differing string types (Tom Lane)
foo'::bpchar) (2 rows) # explain select * from test where id = 'foo'::text; QUERY PLAN ------------------------------------------------------- Seq Scan
Mailing lists >> pgsql-general >> Thread >> Search in thread (3)
2025-01-28 00:34:57 | Re: Content of pg_publication using a local connection versus network connection? (Shaheed Haque)
foo=> \conninfo You are connected to database "foo" as user "dbcorexyz" on host " live-paiyroll
Mailing lists >> pgsql-general >> Thread
2025-01-27 21:08:53 | Parallel workers via functions? (Jim Vanns)
foo select * from func_a(); // Will func_a still execute parallel workers to fetch the data