From 5f27af0eef5eb46a43e714aaed8bc7807f6d5ca7 Mon Sep 17 00:00:00 2001 From: Stefan Majewsky Date: Fri, 10 Apr 2026 20:59:46 +0200 Subject: generate INSERT/UPDATE/DELETE queries during BuildPlan --- dialect.go | 1 + 1 file changed, 1 insertion(+) (limited to 'dialect.go') diff --git a/dialect.go b/dialect.go index 7a3acff..acbb160 100644 --- a/dialect.go +++ b/dialect.go @@ -16,6 +16,7 @@ import "go.xyrillian.de/oblast/internal" type Dialect interface { // Placeholder returns the placeholder for the i-th query argument. // Most dialects use "?", but e.g. PostgreSQL uses "$1", "$2" and so on. + // The argument numbers from 0 like a slice index. Placeholder(i int) string // QuoteIdentifier wraps the name of a column or table in quotes, -- cgit v1.2.3