Project

General

Profile

1
#!/bin/bash -e
2
# **WARNING**: this datasource is not yet new-style, so most runscript commands
3
# won't work
4
# **IMPORTANT**: rename this file to `run` after switching to new-style import
5
. "$(dirname "${BASH_SOURCE[0]}")"/../../lib/runscripts/datasrc_dir.run
6

    
7
if self_not_included; then
8

    
9
refresh() # usage: .../run refresh
10
{
11
	echo_func; set_make_vars
12
	unexport data schema # these have special meaning to the invoked commands
13
	local remake=1 # run all commands below in this mode
14
	datasrc_make _MySQL/salvias_plots.{schema,data}.sql
15
		# runtime: 25 s ("0m25.331s") @starscream
16
	datasrc_make salvias_plots.{schema,data}.sql
17
		# runtime: 30 s ("0m30.974s") @starscream
18
	remake= datasrc_make reinstall # runtime: 3.5 min ("3m33.014s") @starscream
19
		#**IMPORTANT**: change this to `import` after switch to new-style import
20
}
21

    
22
fi
(5-5/11)