feat: abstract postgres base adapter (#7732)

Abstracts Postgres base adapter in order to allow future postgres-based
adapters.
This commit is contained in:
Elliot DeNolf
2024-08-16 18:51:39 -04:00
committed by GitHub
parent 4808e31276
commit 2835e1d709
26 changed files with 338 additions and 224 deletions

View File

@@ -0,0 +1,3 @@
export const formatJSONPathSegment = (segment: string) => {
return Number.isNaN(parseInt(segment)) ? `'${segment}'` : segment
}