Skip to content

Commit 5e6a050

Browse files
committed
feat: update initial oid counter
1 parent 247c787 commit 5e6a050

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion-postgres/src/pg_catalog.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ impl PgCatalogSchemaProvider {
289289
pub fn new(catalog_list: Arc<dyn CatalogProviderList>) -> PgCatalogSchemaProvider {
290290
Self {
291291
catalog_list,
292-
oid_counter: Arc::new(AtomicU32::new(0)),
292+
oid_counter: Arc::new(AtomicU32::new(16384)),
293293
oid_cache: Arc::new(RwLock::new(HashMap::new())),
294294
}
295295
}

0 commit comments

Comments
 (0)