summaryrefslogtreecommitdiffstats
path: root/include/db.c
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2001-09-23 15:31:11 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2001-09-23 15:31:11 +0000
commit419fb9970aecbdfe99e4131d437046858326018b (patch)
tree0e3d6fd14a55a6930f11501f0f26cfc40fea1c66 /include/db.c
parent84ef2d972ab484757d91fe78f1fe6c1fdda34f9a (diff)
downloadzabbix-419fb9970aecbdfe99e4131d437046858326018b.tar.gz
zabbix-419fb9970aecbdfe99e4131d437046858326018b.tar.xz
zabbix-419fb9970aecbdfe99e4131d437046858326018b.zip
- no full list of triggers and items will be shown
- deleted column triggers.lastcheck - fixed PostgreSQL upgrade patch to 1.0alpha10 - if item.history==0, not values will be added to table history for this item - added directory upgrades/dbpatches/1.0alpha10_to_1.0alpha11/ git-svn-id: svn://svn.zabbix.com/trunk@211 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'include/db.c')
-rw-r--r--include/db.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/db.c b/include/db.c
index 5ac7ae64..d6d8a125 100644
--- a/include/db.c
+++ b/include/db.c
@@ -54,6 +54,7 @@ int DBexecute(char *query)
#ifdef HAVE_MYSQL
syslog( LOG_DEBUG, "Executing query:%s\n",query);
+// syslog( LOG_WARNING, "Executing query:%s\n",query);
if( mysql_query(&mysql,query) != 0 )
{
@@ -94,6 +95,7 @@ DB_RESULT *DBselect(char *query)
{
#ifdef HAVE_MYSQL
syslog( LOG_DEBUG, "Executing query:%s\n",query);
+// syslog( LOG_WARNING, "Executing query:%s\n",query);
if( mysql_query(&mysql,query) != 0 )
{