Module: Wal::TableName

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

Instance Method Summary collapse

Instance Method Details

#full_table_nameObject



33
34
35
36
37
38
39
40
# File 'lib/wal.rb', line 33

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