Settings for a new machine - some guidance sought.

2021-10-30 Thread SQL Padawan
Good afternoon everyone, I have a new laptop - running version 13.4 - simple binary from EnterpriseDB - no install! I plan to have a dual-boot machine - Windows 125 GB - have to be able to run Tableau which doesn't have a Linux desktop... Linux - the rest... Spec =

Re: Why does the OID jump by 3 when creating tables?

2021-10-30 Thread Ron
On 10/30/21 3:55 AM, Daniel Westermann (DWE) wrote: Hi all, as I could not find the reason in the source code, can someone tell me why the OID counter jumps by 3 between two create table statements? postgres=# create table t1 ( a int ); CREATE TABLE postgres=# create table t2 ( a int ); CREATE

Re: Why does the OID jump by 3 when creating tables?

2021-10-30 Thread Daniel Westermann (DWE)
>>Le sam. 30 oct. 2021 à 10:55, Daniel Westermann (DWE) >> a écrit : >>Hi all, >>as I could not find the reason in the source code, can someone tell me why >>the OID counter jumps by 3 between two create table >>statements? >>postgres=# create table t1 ( a int ); >>CREATE TABLE >>postgres=# cre

Re: Why does the OID jump by 3 when creating tables?

2021-10-30 Thread Guillaume Lelarge
Hi, Le sam. 30 oct. 2021 à 10:55, Daniel Westermann (DWE) < daniel.westerm...@dbi-services.com> a écrit : > Hi all, > > as I could not find the reason in the source code, can someone tell me why > the OID counter jumps by 3 between two create table statements? > > postgres=# create table t1 ( a i

Why does the OID jump by 3 when creating tables?

2021-10-30 Thread Daniel Westermann (DWE)
Hi all, as I could not find the reason in the source code, can someone tell me why the OID counter jumps by 3 between two create table statements? postgres=# create table t1 ( a int ); CREATE TABLE postgres=# create table t2 ( a int ); CREATE TABLE postgres=# select oid,relname from pg_class whe