Remove unused code

pull/586/head
Jack Christensen 2019-05-11 11:50:50 -05:00
parent 03abfc6452
commit c418d45f75
1 changed files with 0 additions and 16 deletions

View File

@ -16,22 +16,6 @@ type LargeObjects struct {
tx *Tx
}
const largeObjectFns = `select proname, oid from pg_catalog.pg_proc
where proname in (
'lo_open',
'lo_close',
'lo_create',
'lo_unlink',
'lo_lseek',
'lo_lseek64',
'lo_tell',
'lo_tell64',
'lo_truncate',
'lo_truncate64',
'loread',
'lowrite')
and pronamespace = (select oid from pg_catalog.pg_namespace where nspname = 'pg_catalog')`
// LargeObjects returns a LargeObjects instance for the transaction.
func (tx *Tx) LargeObjects() LargeObjects {
return LargeObjects{tx: tx}