Class: PgExport::SqlDump
Constant Summary
Constants inherited
from Dump::Base
Dump::Base::CHUNK_SIZE
Instance Method Summary
collapse
Methods inherited from Dump::Base
#initialize, #to_s
#size_human
Instance Method Details
#ext ⇒ Object
7
8
9
|
# File 'lib/pg_export/entities/sql_dump.rb', line 7
def ext
''
end
|
#name ⇒ Object
3
4
5
|
# File 'lib/pg_export/entities/sql_dump.rb', line 3
def name
'Dump'
end
|
#read_chunk ⇒ Object
11
12
13
|
# File 'lib/pg_export/entities/sql_dump.rb', line 11
def read_chunk
read(CHUNK_SIZE)
end
|