Module: Wal::TableName

Included in:
DeleteEvent, InsertEvent, UpdateEvent
Defined in:
lib/wal.rb

Instance Method Summary collapse

Instance Method Details

#full_table_nameObject



60
61
62
63
64
65
66
67
# File 'lib/wal.rb', line 60

def full_table_name
  case schema
  in "public"
    table
  else
    "#{schema}.#{table}"
  end
end