[Mapbender-commits] r8026 - branches/2.7/resources/db
svn_mapbender at osgeo.org
svn_mapbender at osgeo.org
Thu Jul 28 10:17:42 EDT 2011
Author: astrid_emde
Date: 2011-07-28 07:17:42 -0700 (Thu, 28 Jul 2011)
New Revision: 8026
Modified:
branches/2.7/resources/db/install.bat
branches/2.7/resources/db/install.sh
branches/2.7/resources/db/update.bat
branches/2.7/resources/db/update.sh
Log:
sql for 2.7.3 added
Modified: branches/2.7/resources/db/install.bat
===================================================================
--- branches/2.7/resources/db/install.bat 2011-07-28 14:12:02 UTC (rev 8025)
+++ branches/2.7/resources/db/install.bat 2011-07-28 14:17:42 UTC (rev 8026)
@@ -139,6 +139,8 @@
psql -U %DBUSER% -h %DBHOST% -p %DBPORT% -f pgsql/%USEDBENC%/update/update_2.7rc1_to_2.7rc2_pgsql_%USEDBENC%.sql %DBNAME% 1>> log_update.txt 2>> err_update.txt
echo update to 2.7.2
psql -U %DBUSER% -h %DBHOST% -p %DBPORT% -f pgsql/%USEDBENC%/update/update_2.7.1_to_2.7.2_pgsql_%USEDBENC%.sql %DBNAME% 1>> log_update.txt 2>> err_update.txt
+echo update to 2.7.3
+psql -U %DBUSER% -h %DBHOST% -p %DBPORT% -f pgsql/%USEDBENC%/update/update_2.7.2_to_2.7.3_pgsql_%USEDBENC%.sql %DBNAME% 1>> log_update.txt 2>> err_update.txt
echo update sequences
psql -U %DBUSER% -h %DBHOST% -p %DBPORT% -f pgsql/pgsql_serial_set_sequences_2.7.sql %DBNAME% 1>> log_sequences.txt 2>> err_sequences.txt
Modified: branches/2.7/resources/db/install.sh
===================================================================
--- branches/2.7/resources/db/install.sh 2011-07-28 14:12:02 UTC (rev 8025)
+++ branches/2.7/resources/db/install.sh 2011-07-28 14:17:42 UTC (rev 8026)
@@ -139,6 +139,7 @@
pgsql/$DBENCODING/update/update_2.6.2_to_2.7rc1_pgsql_$DBENCODING.sql \
pgsql/$DBENCODING/update/update_2.7rc1_to_2.7rc2_pgsql_$DBENCODING.sql \
pgsql/$DBENCODING/update/update_2.7.1_to_2.7.2_pgsql_$DBENCODING.sql \
+ pgsql/$DBENCODING/update/update_2.7.2_to_2.7.3_pgsql_$DBENCODING.sql \
pgsql/pgsql_serial_set_sequences_2.7.sql \
> _install.sql
echo "inserting data (this might take a while longer)"
Modified: branches/2.7/resources/db/update.bat
===================================================================
--- branches/2.7/resources/db/update.bat 2011-07-28 14:12:02 UTC (rev 8025)
+++ branches/2.7/resources/db/update.bat 2011-07-28 14:17:42 UTC (rev 8026)
@@ -112,6 +112,8 @@
psql -U %DBUSER% -h %DBHOST% -p %DBPORT% -f pgsql/%USEDBENC%/update/update_2.7rc1_to_2.7rc2_pgsql_%USEDBENC%.sql %DBNAME% 1>> log_update.txt 2>> err_update.txt
echo update to 2.7.2
psql -U %DBUSER% -h %DBHOST% -p %DBPORT% -f pgsql/%USEDBENC%/update/update_2.7.1_to_2.7.2_pgsql_%USEDBENC%.sql %DBNAME% 1>> log_update.txt 2>> err_update.txt
+echo update to 2.7.3
+psql -U %DBUSER% -h %DBHOST% -p %DBPORT% -f pgsql/%USEDBENC%/update/update_2.7.2_to_2.7.3_pgsql_%USEDBENC%.sql %DBNAME% 1>> log_update.txt 2>> err_update.txt
echo update sequences
psql -U %DBUSER% -h %DBHOST% -p %DBPORT% -f pgsql/pgsql_serial_set_sequences_2.7.sql %DBNAME% 1>> log_update.txt 2>> err_update.txt
Modified: branches/2.7/resources/db/update.sh
===================================================================
--- branches/2.7/resources/db/update.sh 2011-07-28 14:12:02 UTC (rev 8025)
+++ branches/2.7/resources/db/update.sh 2011-07-28 14:17:42 UTC (rev 8026)
@@ -103,6 +103,8 @@
psql -U $DBUSER -h $DBHOST -p $DBPORT -f pgsql/$DBENCODING/update/update_2.7rc1_to_2.7rc2_pgsql_$DBENCODING.sql $DBNAME >> log_update.txt 2>> err_update.txt
echo "update to 2.7.2"
psql -U $DBUSER -h $DBHOST -p $DBPORT -f pgsql/$DBENCODING/update/update_2.7.1_to_2.7.2_pgsql_$DBENCODING.sql $DBNAME >> log_update.txt 2>> err_update.txt
+ echo "update to 2.7.3"
+ psql -U $DBUSER -h $DBHOST -p $DBPORT -f pgsql/$DBENCODING/update/update_2.7.2_to_2.7.3_pgsql_$DBENCODING.sql $DBNAME >> log_update.txt 2>> err_update.txt
echo "update sequences"
psql -U $DBUSER -h $DBHOST -p $DBPORT -f pgsql/pgsql_serial_set_sequences_2.7.sql $DBNAME >> log_update.txt 2>> err_update.txt
More information about the Mapbender_commits
mailing list