Skip to content

Commit cb01853

Browse files
committed
Merge branch 'severedsea/psql-casesensitive-tablename' into dev
2 parents acdc08b + e534492 commit cb01853

File tree

1 file changed

+1
-1
lines changed
  • drivers/sqlboiler-psql/driver

1 file changed

+1
-1
lines changed

drivers/sqlboiler-psql/driver/psql.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ func (p *PostgresDriver) Columns(schema, tableName string, whitelist, blacklist
207207
c.domain_name,
208208
c.column_default,
209209
210-
COALESCE(col_description((c.table_schema||'.'||c.table_name)::regclass::oid, ordinal_position), '') as column_comment,
210+
COALESCE(col_description(('"'||c.table_schema||'"."'||c.table_name||'"')::regclass::oid, ordinal_position), '') as column_comment,
211211
212212
c.is_nullable = 'YES' as is_nullable,
213213
(case

0 commit comments

Comments
 (0)