root/trunk/lib/runscripts/file.pg.sql.run @ 12884
1 |
#!/bin/bash -e
|
---|---|
2 |
. "$(dirname "${BASH_SOURCE[0]}")"/import.run |
3 |
.rel in_datasrc_dir.run |
4 |
|
5 |
# syncs a SQL script with the DB
|
6 |
|
7 |
if self_not_included; then |
8 |
|
9 |
export_() # usage: rm=1 .../file.run export_ |
10 |
{
|
11 |
begin_target; deferred_check_target_exists
|
12 |
create_schema= to_top_file pg_dump_local \ |
13 |
--exclude-table='*.*\y"Source"\y*' "$@" |
14 |
}
|
15 |
|
16 |
fi
|