CDbException

CDbCommand falló al ejecutar la sentencia SQL: SQLSTATE[42704]: Undefined object: 7 ERROR: type "string" does not exist
LINE 3: "participant_id" string(50),
^. The SQL statement executed was: CREATE TABLE "lime_tokens_723869" (
"tid" serial NOT NULL PRIMARY KEY,
"participant_id" string(50),
"firstname" string(40),
"lastname" string(40),
"email" text,
"emailstatus" text,
"token" string(35),
"language" string(25),
"blacklisted" string(17),
"sent" string(17) DEFAULT 'N',
"remindersent" string(17) DEFAULT 'N',
"remindercount" integer DEFAULT 0,
"completed" string(17) DEFAULT 'N',
"usesleft" integer DEFAULT 1,
"validfrom" timestamp,
"validuntil" timestamp,
"mpid" integer
)

/usr/share/nginx/html/limesurvey/framework/db/CDbCommand.php(358)

346         {
347             if($this->_connection->enableProfiling)
348                 Yii::endProfile('system.db.CDbCommand.execute('.$this->getText().$par.')','system.db.CDbCommand.execute');
349 
350             $errorInfo=$e instanceof PDOException ? $e->errorInfo : null;
351             $message=$e->getMessage();
352             Yii::log(Yii::t('yii','CDbCommand::execute() failed: {error}. The SQL statement executed was: {sql}.',
353                 array('{error}'=>$message, '{sql}'=>$this->getText().$par)),CLogger::LEVEL_ERROR,'system.db.CDbCommand');
354 
355             if(YII_DEBUG)
356                 $message.='. The SQL statement executed was: '.$this->getText().$par;
357 
358             throw new CDbException(Yii::t('yii','CDbCommand failed to execute the SQL statement: {error}',
359                 array('{error}'=>$message)),(int)$e->getCode(),$errorInfo);
360         }
361     }
362 
363     /**
364      * Executes the SQL statement and returns query result.
365      * This method is for executing an SQL query that returns result set.
366      * @param array $params input parameters (name=>value) for the SQL execution. This is an alternative
367      * to {@link bindParam} and {@link bindValue}. If you have multiple input parameters, passing
368      * them in this way can improve the performance. Note that if you pass parameters in this way,
369      * you cannot bind parameters or values using {@link bindParam} or {@link bindValue}, and vice versa.
370      * Please also note that all values are treated as strings in this case, if you need them to be handled as

Stack Trace

#1
+
 /usr/share/nginx/html/limesurvey/application/models/Token.php(116): CDbCommand->createTable("{{tokens_723869}}", array("tid" => "pk", "participant_id" => "string(50)", "firstname" => "string(40)", "lastname" => "string(40)", ...))
111             }
112             
113             $db = \Yii::app()->db;
114             $sTableName="{{tokens_".intval($surveyId)."}}";
115             
116             $db->createCommand()->createTable($sTableName, $fields);
117             /**
118              * @todo Check if this random component in the index name is needed.
119              * As far as I (sam) know index names need only be unique per table.
120              */
121             $db->createCommand()->createIndex("idx_token_token_{$surveyId}_".rand(1,50000),  $sTableName,'token');
#2
+
 /usr/share/nginx/html/limesurvey/application/controllers/admin/tokens.php(2479): Token::createTable("723869")
2474         }
2475         // The user have rigth to create token, then don't test right after
2476         Yii::import('application.helpers.admin.token_helper', true);
2477         if (Yii::app()->request->getQuery('createtable') == "Y")
2478         {
2479             Token::createTable($iSurveyId);
2480             LimeExpressionManager::SetDirtyFlag();  // LimeExpressionManager needs to know about the new token table
2481             $this->_renderWrappedTemplate('token', array('message' =>array(
2482             'title' => gT("Token control"),
2483             'message' => gT("A token table has been created for this survey.") . " (\"" . Yii::app()->db->tablePrefix . "tokens_$iSurveyId\")<br /><br />\n"
2484             . "<input type='submit' value='"
#3
+
 /usr/share/nginx/html/limesurvey/application/controllers/admin/tokens.php(49): tokens->_newtokentable("723869")
44 
45         // CHECK TO SEE IF A TOKEN TABLE EXISTS FOR THIS SURVEY
46         $bTokenExists = tableExists('{{tokens_' . $iSurveyId . '}}');
47         if (!$bTokenExists) //If no tokens table exists
48         {
49             self::_newtokentable($iSurveyId);
50         }
51         else
52         {
53             $aData['thissurvey'] = $thissurvey;
54             $aData['surveyid'] = $iSurveyId;
2015-01-29 00:44:02 nginx/1.4.6 Yii Framework/1.1.15
Application Log
Timestamp Level Category Message
00:44:02.593431 trace system.CModule
Loading "log" application component
00:44:02.594410 trace system.CModule
Loading "request" application component
00:44:02.598886 trace system.CModule
Loading "assetManager" application component
00:44:02.599883 trace system.CModule
Loading "urlManager" application component
00:44:02.600158 trace system.CModule
Loading "cache" application component
00:44:02.604702 trace system.CModule
Loading "session" application component
00:44:02.606291 trace system.CModule
Loading "db" application component
00:44:02.606683 trace system.db.CDbConnection
Opening DB connection
00:44:02.627299 trace system.db.CDbCommand
Querying SQL: SELECT a.attname, LOWER(format_type(a.atttypid, a.atttypmod))
AS type, d.adsrc, a.attnotnull, a.atthasdef,
	pg_catalog.col_description(a.attrelid, a.attnum) AS comment
FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND
a.attnum = d.adnum
WHERE a.attnum > 0 AND NOT a.attisdropped
	AND a.attrelid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
		AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace WHERE nspname
= :schema))
ORDER BY a.attnum. Bound with :table='lime_settings_global',
:schema='public'
00:44:02.627465 profile system.db.CDbCommand.query
begin:system.db.CDbCommand.query(SELECT a.attname,
LOWER(format_type(a.atttypid, a.atttypmod)) AS type, d.adsrc, a.attnotnull,
a.atthasdef,
	pg_catalog.col_description(a.attrelid, a.attnum) AS comment
FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND
a.attnum = d.adnum
WHERE a.attnum > 0 AND NOT a.attisdropped
	AND a.attrelid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
		AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace WHERE nspname
= :schema))
ORDER BY a.attnum. Bound with :table='lime_settings_global',
:schema='public')
00:44:02.636219 profile system.db.CDbCommand.query
end:system.db.CDbCommand.query(SELECT a.attname,
LOWER(format_type(a.atttypid, a.atttypmod)) AS type, d.adsrc, a.attnotnull,
a.atthasdef,
	pg_catalog.col_description(a.attrelid, a.attnum) AS comment
FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND
a.attnum = d.adnum
WHERE a.attnum > 0 AND NOT a.attisdropped
	AND a.attrelid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
		AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace WHERE nspname
= :schema))
ORDER BY a.attnum. Bound with :table='lime_settings_global',
:schema='public')
00:44:02.639116 trace system.db.CDbCommand
Querying SQL: SELECT conname, consrc, contype, indkey FROM (
	SELECT
		conname,
		CASE WHEN contype='f' THEN
			pg_catalog.pg_get_constraintdef(oid)
		ELSE
			'CHECK (' || consrc || ')'
		END AS consrc,
		contype,
		conrelid AS relid,
		NULL AS indkey
	FROM
		pg_catalog.pg_constraint
	WHERE
		contype IN ('f', 'c')
	UNION ALL
	SELECT
		pc.relname,
		NULL,
		CASE WHEN indisprimary THEN
				'p'
		ELSE
				'u'
		END,
		pi.indrelid,
		indkey
	FROM
		pg_catalog.pg_class pc,
		pg_catalog.pg_index pi
	WHERE
		pc.oid=pi.indexrelid
		AND EXISTS (
			SELECT 1 FROM pg_catalog.pg_depend d JOIN pg_catalog.pg_constraint c
			ON (d.refclassid = c.tableoid AND d.refobjid = c.oid)
			WHERE d.classid = pc.tableoid AND d.objid = pc.oid AND d.deptype = 'i'
AND c.contype IN ('u', 'p')
	)
) AS sub
WHERE relid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
	AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace
	WHERE nspname=:schema)). Bound with :table='lime_settings_global',
:schema='public'
00:44:02.639363 profile system.db.CDbCommand.query
begin:system.db.CDbCommand.query(SELECT conname, consrc, contype, indkey
FROM (
	SELECT
		conname,
		CASE WHEN contype='f' THEN
			pg_catalog.pg_get_constraintdef(oid)
		ELSE
			'CHECK (' || consrc || ')'
		END AS consrc,
		contype,
		conrelid AS relid,
		NULL AS indkey
	FROM
		pg_catalog.pg_constraint
	WHERE
		contype IN ('f', 'c')
	UNION ALL
	SELECT
		pc.relname,
		NULL,
		CASE WHEN indisprimary THEN
				'p'
		ELSE
				'u'
		END,
		pi.indrelid,
		indkey
	FROM
		pg_catalog.pg_class pc,
		pg_catalog.pg_index pi
	WHERE
		pc.oid=pi.indexrelid
		AND EXISTS (
			SELECT 1 FROM pg_catalog.pg_depend d JOIN pg_catalog.pg_constraint c
			ON (d.refclassid = c.tableoid AND d.refobjid = c.oid)
			WHERE d.classid = pc.tableoid AND d.objid = pc.oid AND d.deptype = 'i'
AND c.contype IN ('u', 'p')
	)
) AS sub
WHERE relid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
	AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace
	WHERE nspname=:schema)). Bound with :table='lime_settings_global',
:schema='public')
00:44:02.644632 profile system.db.CDbCommand.query
end:system.db.CDbCommand.query(SELECT conname, consrc, contype, indkey FROM
(
	SELECT
		conname,
		CASE WHEN contype='f' THEN
			pg_catalog.pg_get_constraintdef(oid)
		ELSE
			'CHECK (' || consrc || ')'
		END AS consrc,
		contype,
		conrelid AS relid,
		NULL AS indkey
	FROM
		pg_catalog.pg_constraint
	WHERE
		contype IN ('f', 'c')
	UNION ALL
	SELECT
		pc.relname,
		NULL,
		CASE WHEN indisprimary THEN
				'p'
		ELSE
				'u'
		END,
		pi.indrelid,
		indkey
	FROM
		pg_catalog.pg_class pc,
		pg_catalog.pg_index pi
	WHERE
		pc.oid=pi.indexrelid
		AND EXISTS (
			SELECT 1 FROM pg_catalog.pg_depend d JOIN pg_catalog.pg_constraint c
			ON (d.refclassid = c.tableoid AND d.refobjid = c.oid)
			WHERE d.classid = pc.tableoid AND d.objid = pc.oid AND d.deptype = 'i'
AND c.contype IN ('u', 'p')
	)
) AS sub
WHERE relid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
	AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace
	WHERE nspname=:schema)). Bound with :table='lime_settings_global',
:schema='public')
00:44:02.645668 trace system.db.CDbCommand
Querying SQL: SELECT attnum, attname FROM pg_catalog.pg_attribute WHERE
	attrelid=(
		SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND
relnamespace=(
			SELECT oid FROM pg_catalog.pg_namespace WHERE nspname=:schema
		)
	)
	AND attnum IN (1). Bound with :table='lime_settings_global',
:schema='public'
00:44:02.645781 profile system.db.CDbCommand.query
begin:system.db.CDbCommand.query(SELECT attnum, attname FROM
pg_catalog.pg_attribute WHERE
	attrelid=(
		SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND
relnamespace=(
			SELECT oid FROM pg_catalog.pg_namespace WHERE nspname=:schema
		)
	)
	AND attnum IN (1). Bound with :table='lime_settings_global',
:schema='public')
00:44:02.646856 profile system.db.CDbCommand.query
end:system.db.CDbCommand.query(SELECT attnum, attname FROM
pg_catalog.pg_attribute WHERE
	attrelid=(
		SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND
relnamespace=(
			SELECT oid FROM pg_catalog.pg_namespace WHERE nspname=:schema
		)
	)
	AND attnum IN (1). Bound with :table='lime_settings_global',
:schema='public')
00:44:02.650451 trace system.db.ar.CActiveRecord
SettingGlobal.findAll()
00:44:02.651935 trace system.db.CDbCommand
Querying SQL: SELECT * FROM "lime_settings_global" "t"
00:44:02.652019 profile system.db.CDbCommand.query
begin:system.db.CDbCommand.query(SELECT * FROM "lime_settings_global" "t")
00:44:02.653036 profile system.db.CDbCommand.query
end:system.db.CDbCommand.query(SELECT * FROM "lime_settings_global" "t")
00:44:02.739295 trace system.CModule
Loading "bootstrap" application component
00:44:02.739801 trace system.CModule
Loading "clientScript" application component
00:44:02.741532 trace system.CModule
Loading "messages" application component
00:44:02.741991 trace system.CModule
Loading "user" application component
00:44:02.746423 trace system.db.CDbCommand
Querying SQL: SELECT a.attname, LOWER(format_type(a.atttypid, a.atttypmod))
AS type, d.adsrc, a.attnotnull, a.atthasdef,
	pg_catalog.col_description(a.attrelid, a.attnum) AS comment
FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND
a.attnum = d.adnum
WHERE a.attnum > 0 AND NOT a.attisdropped
	AND a.attrelid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
		AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace WHERE nspname
= :schema))
ORDER BY a.attnum. Bound with :table='lime_surveys', :schema='public'
00:44:02.746470 profile system.db.CDbCommand.query
begin:system.db.CDbCommand.query(SELECT a.attname,
LOWER(format_type(a.atttypid, a.atttypmod)) AS type, d.adsrc, a.attnotnull,
a.atthasdef,
	pg_catalog.col_description(a.attrelid, a.attnum) AS comment
FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND
a.attnum = d.adnum
WHERE a.attnum > 0 AND NOT a.attisdropped
	AND a.attrelid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
		AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace WHERE nspname
= :schema))
ORDER BY a.attnum. Bound with :table='lime_surveys', :schema='public')
00:44:02.748637 profile system.db.CDbCommand.query
end:system.db.CDbCommand.query(SELECT a.attname,
LOWER(format_type(a.atttypid, a.atttypmod)) AS type, d.adsrc, a.attnotnull,
a.atthasdef,
	pg_catalog.col_description(a.attrelid, a.attnum) AS comment
FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND
a.attnum = d.adnum
WHERE a.attnum > 0 AND NOT a.attisdropped
	AND a.attrelid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
		AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace WHERE nspname
= :schema))
ORDER BY a.attnum. Bound with :table='lime_surveys', :schema='public')
00:44:02.758568 trace system.db.CDbCommand
Querying SQL: SELECT conname, consrc, contype, indkey FROM (
	SELECT
		conname,
		CASE WHEN contype='f' THEN
			pg_catalog.pg_get_constraintdef(oid)
		ELSE
			'CHECK (' || consrc || ')'
		END AS consrc,
		contype,
		conrelid AS relid,
		NULL AS indkey
	FROM
		pg_catalog.pg_constraint
	WHERE
		contype IN ('f', 'c')
	UNION ALL
	SELECT
		pc.relname,
		NULL,
		CASE WHEN indisprimary THEN
				'p'
		ELSE
				'u'
		END,
		pi.indrelid,
		indkey
	FROM
		pg_catalog.pg_class pc,
		pg_catalog.pg_index pi
	WHERE
		pc.oid=pi.indexrelid
		AND EXISTS (
			SELECT 1 FROM pg_catalog.pg_depend d JOIN pg_catalog.pg_constraint c
			ON (d.refclassid = c.tableoid AND d.refobjid = c.oid)
			WHERE d.classid = pc.tableoid AND d.objid = pc.oid AND d.deptype = 'i'
AND c.contype IN ('u', 'p')
	)
) AS sub
WHERE relid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
	AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace
	WHERE nspname=:schema)). Bound with :table='lime_surveys',
:schema='public'
00:44:02.758627 profile system.db.CDbCommand.query
begin:system.db.CDbCommand.query(SELECT conname, consrc, contype, indkey
FROM (
	SELECT
		conname,
		CASE WHEN contype='f' THEN
			pg_catalog.pg_get_constraintdef(oid)
		ELSE
			'CHECK (' || consrc || ')'
		END AS consrc,
		contype,
		conrelid AS relid,
		NULL AS indkey
	FROM
		pg_catalog.pg_constraint
	WHERE
		contype IN ('f', 'c')
	UNION ALL
	SELECT
		pc.relname,
		NULL,
		CASE WHEN indisprimary THEN
				'p'
		ELSE
				'u'
		END,
		pi.indrelid,
		indkey
	FROM
		pg_catalog.pg_class pc,
		pg_catalog.pg_index pi
	WHERE
		pc.oid=pi.indexrelid
		AND EXISTS (
			SELECT 1 FROM pg_catalog.pg_depend d JOIN pg_catalog.pg_constraint c
			ON (d.refclassid = c.tableoid AND d.refobjid = c.oid)
			WHERE d.classid = pc.tableoid AND d.objid = pc.oid AND d.deptype = 'i'
AND c.contype IN ('u', 'p')
	)
) AS sub
WHERE relid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
	AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace
	WHERE nspname=:schema)). Bound with :table='lime_surveys',
:schema='public')
00:44:02.763137 profile system.db.CDbCommand.query
end:system.db.CDbCommand.query(SELECT conname, consrc, contype, indkey FROM
(
	SELECT
		conname,
		CASE WHEN contype='f' THEN
			pg_catalog.pg_get_constraintdef(oid)
		ELSE
			'CHECK (' || consrc || ')'
		END AS consrc,
		contype,
		conrelid AS relid,
		NULL AS indkey
	FROM
		pg_catalog.pg_constraint
	WHERE
		contype IN ('f', 'c')
	UNION ALL
	SELECT
		pc.relname,
		NULL,
		CASE WHEN indisprimary THEN
				'p'
		ELSE
				'u'
		END,
		pi.indrelid,
		indkey
	FROM
		pg_catalog.pg_class pc,
		pg_catalog.pg_index pi
	WHERE
		pc.oid=pi.indexrelid
		AND EXISTS (
			SELECT 1 FROM pg_catalog.pg_depend d JOIN pg_catalog.pg_constraint c
			ON (d.refclassid = c.tableoid AND d.refobjid = c.oid)
			WHERE d.classid = pc.tableoid AND d.objid = pc.oid AND d.deptype = 'i'
AND c.contype IN ('u', 'p')
	)
) AS sub
WHERE relid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
	AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace
	WHERE nspname=:schema)). Bound with :table='lime_surveys',
:schema='public')
00:44:02.763571 trace system.db.CDbCommand
Querying SQL: SELECT attnum, attname FROM pg_catalog.pg_attribute WHERE
	attrelid=(
		SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND
relnamespace=(
			SELECT oid FROM pg_catalog.pg_namespace WHERE nspname=:schema
		)
	)
	AND attnum IN (1). Bound with :table='lime_surveys', :schema='public'
00:44:02.763623 profile system.db.CDbCommand.query
begin:system.db.CDbCommand.query(SELECT attnum, attname FROM
pg_catalog.pg_attribute WHERE
	attrelid=(
		SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND
relnamespace=(
			SELECT oid FROM pg_catalog.pg_namespace WHERE nspname=:schema
		)
	)
	AND attnum IN (1). Bound with :table='lime_surveys', :schema='public')
00:44:02.765064 profile system.db.CDbCommand.query
end:system.db.CDbCommand.query(SELECT attnum, attname FROM
pg_catalog.pg_attribute WHERE
	attrelid=(
		SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND
relnamespace=(
			SELECT oid FROM pg_catalog.pg_namespace WHERE nspname=:schema
		)
	)
	AND attnum IN (1). Bound with :table='lime_surveys', :schema='public')
00:44:02.770792 trace system.db.ar.CActiveRecord
Survey.findByPk()
00:44:02.772180 trace system.db.CDbCommand
Querying SQL: SELECT * FROM "lime_surveys" "t" WHERE "t"."sid"=723869 LIMIT
1
00:44:02.772260 profile system.db.CDbCommand.query
begin:system.db.CDbCommand.query(SELECT * FROM "lime_surveys" "t" WHERE
"t"."sid"=723869 LIMIT 1)
00:44:02.774995 profile system.db.CDbCommand.query
end:system.db.CDbCommand.query(SELECT * FROM "lime_surveys" "t" WHERE
"t"."sid"=723869 LIMIT 1)
00:44:02.777462 trace system.db.CDbCommand
Querying SQL: SELECT a.attname, LOWER(format_type(a.atttypid, a.atttypmod))
AS type, d.adsrc, a.attnotnull, a.atthasdef,
	pg_catalog.col_description(a.attrelid, a.attnum) AS comment
FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND
a.attnum = d.adnum
WHERE a.attnum > 0 AND NOT a.attisdropped
	AND a.attrelid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
		AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace WHERE nspname
= :schema))
ORDER BY a.attnum. Bound with :table='lime_permissions', :schema='public'
00:44:02.777549 profile system.db.CDbCommand.query
begin:system.db.CDbCommand.query(SELECT a.attname,
LOWER(format_type(a.atttypid, a.atttypmod)) AS type, d.adsrc, a.attnotnull,
a.atthasdef,
	pg_catalog.col_description(a.attrelid, a.attnum) AS comment
FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND
a.attnum = d.adnum
WHERE a.attnum > 0 AND NOT a.attisdropped
	AND a.attrelid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
		AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace WHERE nspname
= :schema))
ORDER BY a.attnum. Bound with :table='lime_permissions', :schema='public')
00:44:02.780368 profile system.db.CDbCommand.query
end:system.db.CDbCommand.query(SELECT a.attname,
LOWER(format_type(a.atttypid, a.atttypmod)) AS type, d.adsrc, a.attnotnull,
a.atthasdef,
	pg_catalog.col_description(a.attrelid, a.attnum) AS comment
FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND
a.attnum = d.adnum
WHERE a.attnum > 0 AND NOT a.attisdropped
	AND a.attrelid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
		AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace WHERE nspname
= :schema))
ORDER BY a.attnum. Bound with :table='lime_permissions', :schema='public')
00:44:02.785614 trace system.db.CDbCommand
Querying SQL: SELECT conname, consrc, contype, indkey FROM (
	SELECT
		conname,
		CASE WHEN contype='f' THEN
			pg_catalog.pg_get_constraintdef(oid)
		ELSE
			'CHECK (' || consrc || ')'
		END AS consrc,
		contype,
		conrelid AS relid,
		NULL AS indkey
	FROM
		pg_catalog.pg_constraint
	WHERE
		contype IN ('f', 'c')
	UNION ALL
	SELECT
		pc.relname,
		NULL,
		CASE WHEN indisprimary THEN
				'p'
		ELSE
				'u'
		END,
		pi.indrelid,
		indkey
	FROM
		pg_catalog.pg_class pc,
		pg_catalog.pg_index pi
	WHERE
		pc.oid=pi.indexrelid
		AND EXISTS (
			SELECT 1 FROM pg_catalog.pg_depend d JOIN pg_catalog.pg_constraint c
			ON (d.refclassid = c.tableoid AND d.refobjid = c.oid)
			WHERE d.classid = pc.tableoid AND d.objid = pc.oid AND d.deptype = 'i'
AND c.contype IN ('u', 'p')
	)
) AS sub
WHERE relid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
	AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace
	WHERE nspname=:schema)). Bound with :table='lime_permissions',
:schema='public'
00:44:02.785700 profile system.db.CDbCommand.query
begin:system.db.CDbCommand.query(SELECT conname, consrc, contype, indkey
FROM (
	SELECT
		conname,
		CASE WHEN contype='f' THEN
			pg_catalog.pg_get_constraintdef(oid)
		ELSE
			'CHECK (' || consrc || ')'
		END AS consrc,
		contype,
		conrelid AS relid,
		NULL AS indkey
	FROM
		pg_catalog.pg_constraint
	WHERE
		contype IN ('f', 'c')
	UNION ALL
	SELECT
		pc.relname,
		NULL,
		CASE WHEN indisprimary THEN
				'p'
		ELSE
				'u'
		END,
		pi.indrelid,
		indkey
	FROM
		pg_catalog.pg_class pc,
		pg_catalog.pg_index pi
	WHERE
		pc.oid=pi.indexrelid
		AND EXISTS (
			SELECT 1 FROM pg_catalog.pg_depend d JOIN pg_catalog.pg_constraint c
			ON (d.refclassid = c.tableoid AND d.refobjid = c.oid)
			WHERE d.classid = pc.tableoid AND d.objid = pc.oid AND d.deptype = 'i'
AND c.contype IN ('u', 'p')
	)
) AS sub
WHERE relid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
	AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace
	WHERE nspname=:schema)). Bound with :table='lime_permissions',
:schema='public')
00:44:02.789104 profile system.db.CDbCommand.query
end:system.db.CDbCommand.query(SELECT conname, consrc, contype, indkey FROM
(
	SELECT
		conname,
		CASE WHEN contype='f' THEN
			pg_catalog.pg_get_constraintdef(oid)
		ELSE
			'CHECK (' || consrc || ')'
		END AS consrc,
		contype,
		conrelid AS relid,
		NULL AS indkey
	FROM
		pg_catalog.pg_constraint
	WHERE
		contype IN ('f', 'c')
	UNION ALL
	SELECT
		pc.relname,
		NULL,
		CASE WHEN indisprimary THEN
				'p'
		ELSE
				'u'
		END,
		pi.indrelid,
		indkey
	FROM
		pg_catalog.pg_class pc,
		pg_catalog.pg_index pi
	WHERE
		pc.oid=pi.indexrelid
		AND EXISTS (
			SELECT 1 FROM pg_catalog.pg_depend d JOIN pg_catalog.pg_constraint c
			ON (d.refclassid = c.tableoid AND d.refobjid = c.oid)
			WHERE d.classid = pc.tableoid AND d.objid = pc.oid AND d.deptype = 'i'
AND c.contype IN ('u', 'p')
	)
) AS sub
WHERE relid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
	AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace
	WHERE nspname=:schema)). Bound with :table='lime_permissions',
:schema='public')
00:44:02.789690 trace system.db.CDbCommand
Querying SQL: SELECT attnum, attname FROM pg_catalog.pg_attribute WHERE
	attrelid=(
		SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND
relnamespace=(
			SELECT oid FROM pg_catalog.pg_namespace WHERE nspname=:schema
		)
	)
	AND attnum IN (1). Bound with :table='lime_permissions', :schema='public'
00:44:02.789776 profile system.db.CDbCommand.query
begin:system.db.CDbCommand.query(SELECT attnum, attname FROM
pg_catalog.pg_attribute WHERE
	attrelid=(
		SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND
relnamespace=(
			SELECT oid FROM pg_catalog.pg_namespace WHERE nspname=:schema
		)
	)
	AND attnum IN (1). Bound with :table='lime_permissions', :schema='public')
00:44:02.790751 profile system.db.CDbCommand.query
end:system.db.CDbCommand.query(SELECT attnum, attname FROM
pg_catalog.pg_attribute WHERE
	attrelid=(
		SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND
relnamespace=(
			SELECT oid FROM pg_catalog.pg_namespace WHERE nspname=:schema
		)
	)
	AND attnum IN (1). Bound with :table='lime_permissions', :schema='public')
00:44:02.794354 trace system.CModule
Loading "pluginManager" application component
00:44:02.796482 trace system.db.ar.CActiveRecord
Plugin.findAllByAttributes()
00:44:02.797816 trace system.db.CDbCommand
Querying SQL: SELECT a.attname, LOWER(format_type(a.atttypid, a.atttypmod))
AS type, d.adsrc, a.attnotnull, a.atthasdef,
	pg_catalog.col_description(a.attrelid, a.attnum) AS comment
FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND
a.attnum = d.adnum
WHERE a.attnum > 0 AND NOT a.attisdropped
	AND a.attrelid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
		AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace WHERE nspname
= :schema))
ORDER BY a.attnum. Bound with :table='lime_plugins', :schema='public'
00:44:02.797945 profile system.db.CDbCommand.query
begin:system.db.CDbCommand.query(SELECT a.attname,
LOWER(format_type(a.atttypid, a.atttypmod)) AS type, d.adsrc, a.attnotnull,
a.atthasdef,
	pg_catalog.col_description(a.attrelid, a.attnum) AS comment
FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND
a.attnum = d.adnum
WHERE a.attnum > 0 AND NOT a.attisdropped
	AND a.attrelid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
		AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace WHERE nspname
= :schema))
ORDER BY a.attnum. Bound with :table='lime_plugins', :schema='public')
00:44:02.801394 profile system.db.CDbCommand.query
end:system.db.CDbCommand.query(SELECT a.attname,
LOWER(format_type(a.atttypid, a.atttypmod)) AS type, d.adsrc, a.attnotnull,
a.atthasdef,
	pg_catalog.col_description(a.attrelid, a.attnum) AS comment
FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND
a.attnum = d.adnum
WHERE a.attnum > 0 AND NOT a.attisdropped
	AND a.attrelid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
		AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace WHERE nspname
= :schema))
ORDER BY a.attnum. Bound with :table='lime_plugins', :schema='public')
00:44:02.803036 trace system.db.CDbCommand
Querying SQL: SELECT conname, consrc, contype, indkey FROM (
	SELECT
		conname,
		CASE WHEN contype='f' THEN
			pg_catalog.pg_get_constraintdef(oid)
		ELSE
			'CHECK (' || consrc || ')'
		END AS consrc,
		contype,
		conrelid AS relid,
		NULL AS indkey
	FROM
		pg_catalog.pg_constraint
	WHERE
		contype IN ('f', 'c')
	UNION ALL
	SELECT
		pc.relname,
		NULL,
		CASE WHEN indisprimary THEN
				'p'
		ELSE
				'u'
		END,
		pi.indrelid,
		indkey
	FROM
		pg_catalog.pg_class pc,
		pg_catalog.pg_index pi
	WHERE
		pc.oid=pi.indexrelid
		AND EXISTS (
			SELECT 1 FROM pg_catalog.pg_depend d JOIN pg_catalog.pg_constraint c
			ON (d.refclassid = c.tableoid AND d.refobjid = c.oid)
			WHERE d.classid = pc.tableoid AND d.objid = pc.oid AND d.deptype = 'i'
AND c.contype IN ('u', 'p')
	)
) AS sub
WHERE relid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
	AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace
	WHERE nspname=:schema)). Bound with :table='lime_plugins',
:schema='public'
00:44:02.803128 profile system.db.CDbCommand.query
begin:system.db.CDbCommand.query(SELECT conname, consrc, contype, indkey
FROM (
	SELECT
		conname,
		CASE WHEN contype='f' THEN
			pg_catalog.pg_get_constraintdef(oid)
		ELSE
			'CHECK (' || consrc || ')'
		END AS consrc,
		contype,
		conrelid AS relid,
		NULL AS indkey
	FROM
		pg_catalog.pg_constraint
	WHERE
		contype IN ('f', 'c')
	UNION ALL
	SELECT
		pc.relname,
		NULL,
		CASE WHEN indisprimary THEN
				'p'
		ELSE
				'u'
		END,
		pi.indrelid,
		indkey
	FROM
		pg_catalog.pg_class pc,
		pg_catalog.pg_index pi
	WHERE
		pc.oid=pi.indexrelid
		AND EXISTS (
			SELECT 1 FROM pg_catalog.pg_depend d JOIN pg_catalog.pg_constraint c
			ON (d.refclassid = c.tableoid AND d.refobjid = c.oid)
			WHERE d.classid = pc.tableoid AND d.objid = pc.oid AND d.deptype = 'i'
AND c.contype IN ('u', 'p')
	)
) AS sub
WHERE relid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
	AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace
	WHERE nspname=:schema)). Bound with :table='lime_plugins',
:schema='public')
00:44:02.807118 profile system.db.CDbCommand.query
end:system.db.CDbCommand.query(SELECT conname, consrc, contype, indkey FROM
(
	SELECT
		conname,
		CASE WHEN contype='f' THEN
			pg_catalog.pg_get_constraintdef(oid)
		ELSE
			'CHECK (' || consrc || ')'
		END AS consrc,
		contype,
		conrelid AS relid,
		NULL AS indkey
	FROM
		pg_catalog.pg_constraint
	WHERE
		contype IN ('f', 'c')
	UNION ALL
	SELECT
		pc.relname,
		NULL,
		CASE WHEN indisprimary THEN
				'p'
		ELSE
				'u'
		END,
		pi.indrelid,
		indkey
	FROM
		pg_catalog.pg_class pc,
		pg_catalog.pg_index pi
	WHERE
		pc.oid=pi.indexrelid
		AND EXISTS (
			SELECT 1 FROM pg_catalog.pg_depend d JOIN pg_catalog.pg_constraint c
			ON (d.refclassid = c.tableoid AND d.refobjid = c.oid)
			WHERE d.classid = pc.tableoid AND d.objid = pc.oid AND d.deptype = 'i'
AND c.contype IN ('u', 'p')
	)
) AS sub
WHERE relid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
	AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace
	WHERE nspname=:schema)). Bound with :table='lime_plugins',
:schema='public')
00:44:02.807698 trace system.db.CDbCommand
Querying SQL: SELECT attnum, attname FROM pg_catalog.pg_attribute WHERE
	attrelid=(
		SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND
relnamespace=(
			SELECT oid FROM pg_catalog.pg_namespace WHERE nspname=:schema
		)
	)
	AND attnum IN (1). Bound with :table='lime_plugins', :schema='public'
00:44:02.807765 profile system.db.CDbCommand.query
begin:system.db.CDbCommand.query(SELECT attnum, attname FROM
pg_catalog.pg_attribute WHERE
	attrelid=(
		SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND
relnamespace=(
			SELECT oid FROM pg_catalog.pg_namespace WHERE nspname=:schema
		)
	)
	AND attnum IN (1). Bound with :table='lime_plugins', :schema='public')
00:44:02.809303 profile system.db.CDbCommand.query
end:system.db.CDbCommand.query(SELECT attnum, attname FROM
pg_catalog.pg_attribute WHERE
	attrelid=(
		SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND
relnamespace=(
			SELECT oid FROM pg_catalog.pg_namespace WHERE nspname=:schema
		)
	)
	AND attnum IN (1). Bound with :table='lime_plugins', :schema='public')
00:44:02.810360 trace system.db.CDbCommand
Querying SQL: SELECT * FROM "lime_plugins" "t" WHERE "t"."active"=:yp0.
Bound with :yp0=1
00:44:02.810425 profile system.db.CDbCommand.query
begin:system.db.CDbCommand.query(SELECT * FROM "lime_plugins" "t" WHERE
"t"."active"=:yp0. Bound with :yp0=1)
00:44:02.811742 profile system.db.CDbCommand.query
end:system.db.CDbCommand.query(SELECT * FROM "lime_plugins" "t" WHERE
"t"."active"=:yp0. Bound with :yp0=1)
00:44:02.814613 trace system.db.ar.CActiveRecord
Permission.findByAttributes()
00:44:02.816524 trace system.db.CDbCommand
Querying SQL: SELECT * FROM "lime_permissions" "t" WHERE
"t"."entity_id"=:yp0 AND "t"."entity"=:yp1 AND "t"."uid"=:yp2 AND
"t"."permission"=:yp3 LIMIT 1. Bound with :yp0=0, :yp1='global', :yp2=1,
:yp3='superadmin'
00:44:02.816618 profile system.db.CDbCommand.query
begin:system.db.CDbCommand.query(SELECT * FROM "lime_permissions" "t" WHERE
"t"."entity_id"=:yp0 AND "t"."entity"=:yp1 AND "t"."uid"=:yp2 AND
"t"."permission"=:yp3 LIMIT 1. Bound with :yp0=0, :yp1='global', :yp2=1,
:yp3='superadmin')
00:44:02.818188 profile system.db.CDbCommand.query
end:system.db.CDbCommand.query(SELECT * FROM "lime_permissions" "t" WHERE
"t"."entity_id"=:yp0 AND "t"."entity"=:yp1 AND "t"."uid"=:yp2 AND
"t"."permission"=:yp3 LIMIT 1. Bound with :yp0=0, :yp1='global', :yp2=1,
:yp3='superadmin')
00:44:02.830271 trace system.db.CDbCommand
Querying SQL: SELECT a.attname, LOWER(format_type(a.atttypid, a.atttypmod))
AS type, d.adsrc, a.attnotnull, a.atthasdef,
	pg_catalog.col_description(a.attrelid, a.attnum) AS comment
FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND
a.attnum = d.adnum
WHERE a.attnum > 0 AND NOT a.attisdropped
	AND a.attrelid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
		AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace WHERE nspname
= :schema))
ORDER BY a.attnum. Bound with :table='lime_surveys_languagesettings',
:schema='public'
00:44:02.830352 profile system.db.CDbCommand.query
begin:system.db.CDbCommand.query(SELECT a.attname,
LOWER(format_type(a.atttypid, a.atttypmod)) AS type, d.adsrc, a.attnotnull,
a.atthasdef,
	pg_catalog.col_description(a.attrelid, a.attnum) AS comment
FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND
a.attnum = d.adnum
WHERE a.attnum > 0 AND NOT a.attisdropped
	AND a.attrelid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
		AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace WHERE nspname
= :schema))
ORDER BY a.attnum. Bound with :table='lime_surveys_languagesettings',
:schema='public')
00:44:02.834156 profile system.db.CDbCommand.query
end:system.db.CDbCommand.query(SELECT a.attname,
LOWER(format_type(a.atttypid, a.atttypmod)) AS type, d.adsrc, a.attnotnull,
a.atthasdef,
	pg_catalog.col_description(a.attrelid, a.attnum) AS comment
FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND
a.attnum = d.adnum
WHERE a.attnum > 0 AND NOT a.attisdropped
	AND a.attrelid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
		AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace WHERE nspname
= :schema))
ORDER BY a.attnum. Bound with :table='lime_surveys_languagesettings',
:schema='public')
00:44:02.837959 trace system.db.CDbCommand
Querying SQL: SELECT conname, consrc, contype, indkey FROM (
	SELECT
		conname,
		CASE WHEN contype='f' THEN
			pg_catalog.pg_get_constraintdef(oid)
		ELSE
			'CHECK (' || consrc || ')'
		END AS consrc,
		contype,
		conrelid AS relid,
		NULL AS indkey
	FROM
		pg_catalog.pg_constraint
	WHERE
		contype IN ('f', 'c')
	UNION ALL
	SELECT
		pc.relname,
		NULL,
		CASE WHEN indisprimary THEN
				'p'
		ELSE
				'u'
		END,
		pi.indrelid,
		indkey
	FROM
		pg_catalog.pg_class pc,
		pg_catalog.pg_index pi
	WHERE
		pc.oid=pi.indexrelid
		AND EXISTS (
			SELECT 1 FROM pg_catalog.pg_depend d JOIN pg_catalog.pg_constraint c
			ON (d.refclassid = c.tableoid AND d.refobjid = c.oid)
			WHERE d.classid = pc.tableoid AND d.objid = pc.oid AND d.deptype = 'i'
AND c.contype IN ('u', 'p')
	)
) AS sub
WHERE relid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
	AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace
	WHERE nspname=:schema)). Bound with
:table='lime_surveys_languagesettings', :schema='public'
00:44:02.838013 profile system.db.CDbCommand.query
begin:system.db.CDbCommand.query(SELECT conname, consrc, contype, indkey
FROM (
	SELECT
		conname,
		CASE WHEN contype='f' THEN
			pg_catalog.pg_get_constraintdef(oid)
		ELSE
			'CHECK (' || consrc || ')'
		END AS consrc,
		contype,
		conrelid AS relid,
		NULL AS indkey
	FROM
		pg_catalog.pg_constraint
	WHERE
		contype IN ('f', 'c')
	UNION ALL
	SELECT
		pc.relname,
		NULL,
		CASE WHEN indisprimary THEN
				'p'
		ELSE
				'u'
		END,
		pi.indrelid,
		indkey
	FROM
		pg_catalog.pg_class pc,
		pg_catalog.pg_index pi
	WHERE
		pc.oid=pi.indexrelid
		AND EXISTS (
			SELECT 1 FROM pg_catalog.pg_depend d JOIN pg_catalog.pg_constraint c
			ON (d.refclassid = c.tableoid AND d.refobjid = c.oid)
			WHERE d.classid = pc.tableoid AND d.objid = pc.oid AND d.deptype = 'i'
AND c.contype IN ('u', 'p')
	)
) AS sub
WHERE relid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
	AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace
	WHERE nspname=:schema)). Bound with
:table='lime_surveys_languagesettings', :schema='public')
00:44:02.841629 profile system.db.CDbCommand.query
end:system.db.CDbCommand.query(SELECT conname, consrc, contype, indkey FROM
(
	SELECT
		conname,
		CASE WHEN contype='f' THEN
			pg_catalog.pg_get_constraintdef(oid)
		ELSE
			'CHECK (' || consrc || ')'
		END AS consrc,
		contype,
		conrelid AS relid,
		NULL AS indkey
	FROM
		pg_catalog.pg_constraint
	WHERE
		contype IN ('f', 'c')
	UNION ALL
	SELECT
		pc.relname,
		NULL,
		CASE WHEN indisprimary THEN
				'p'
		ELSE
				'u'
		END,
		pi.indrelid,
		indkey
	FROM
		pg_catalog.pg_class pc,
		pg_catalog.pg_index pi
	WHERE
		pc.oid=pi.indexrelid
		AND EXISTS (
			SELECT 1 FROM pg_catalog.pg_depend d JOIN pg_catalog.pg_constraint c
			ON (d.refclassid = c.tableoid AND d.refobjid = c.oid)
			WHERE d.classid = pc.tableoid AND d.objid = pc.oid AND d.deptype = 'i'
AND c.contype IN ('u', 'p')
	)
) AS sub
WHERE relid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table
	AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace
	WHERE nspname=:schema)). Bound with
:table='lime_surveys_languagesettings', :schema='public')
00:44:02.842067 trace system.db.CDbCommand
Querying SQL: SELECT attnum, attname FROM pg_catalog.pg_attribute WHERE
	attrelid=(
		SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND
relnamespace=(
			SELECT oid FROM pg_catalog.pg_namespace WHERE nspname=:schema
		)
	)
	AND attnum IN (1, 2). Bound with :table='lime_surveys_languagesettings',
:schema='public'
00:44:02.842120 profile system.db.CDbCommand.query
begin:system.db.CDbCommand.query(SELECT attnum, attname FROM
pg_catalog.pg_attribute WHERE
	attrelid=(
		SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND
relnamespace=(
			SELECT oid FROM pg_catalog.pg_namespace WHERE nspname=:schema
		)
	)
	AND attnum IN (1, 2). Bound with :table='lime_surveys_languagesettings',
:schema='public')
00:44:02.843415 profile system.db.CDbCommand.query
end:system.db.CDbCommand.query(SELECT attnum, attname FROM
pg_catalog.pg_attribute WHERE
	attrelid=(
		SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND
relnamespace=(
			SELECT oid FROM pg_catalog.pg_namespace WHERE nspname=:schema
		)
	)
	AND attnum IN (1, 2). Bound with :table='lime_surveys_languagesettings',
:schema='public')
00:44:02.846338 trace system.db.ar.CActiveRecord
SurveyLanguageSetting.findByPk()
00:44:02.856262 trace system.db.CDbCommand
Querying SQL: SELECT "t"."surveyls_survey_id" AS "t0_c0",
"t"."surveyls_language" AS "t0_c1", "t"."surveyls_title" AS "t0_c2",
"t"."surveyls_description" AS "t0_c3", "t"."surveyls_welcometext" AS
"t0_c4", "t"."surveyls_endtext" AS "t0_c5", "t"."surveyls_url" AS "t0_c6",
"t"."surveyls_urldescription" AS "t0_c7", "t"."surveyls_email_invite_subj"
AS "t0_c8", "t"."surveyls_email_invite" AS "t0_c9",
"t"."surveyls_email_remind_subj" AS "t0_c10", "t"."surveyls_email_remind"
AS "t0_c11", "t"."surveyls_email_register_subj" AS "t0_c12",
"t"."surveyls_email_register" AS "t0_c13",
"t"."surveyls_email_confirm_subj" AS "t0_c14", "t"."surveyls_email_confirm"
AS "t0_c15", "t"."surveyls_dateformat" AS "t0_c16",
"t"."surveyls_attributecaptions" AS "t0_c17",
"t"."email_admin_notification_subj" AS "t0_c18",
"t"."email_admin_notification" AS "t0_c19",
"t"."email_admin_responses_subj" AS "t0_c20", "t"."email_admin_responses"
AS "t0_c21", "t"."surveyls_numberformat" AS "t0_c22", "t"."attachments" AS
"t0_c23", "survey"."sid" AS "t1_c0", "survey"."owner_id" AS "t1_c1",
"survey"."admin" AS "t1_c2", "survey"."active" AS "t1_c3",
"survey"."expires" AS "t1_c4", "survey"."startdate" AS "t1_c5",
"survey"."adminemail" AS "t1_c6", "survey"."anonymized" AS "t1_c7",
"survey"."faxto" AS "t1_c8", "survey"."format" AS "t1_c9",
"survey"."savetimings" AS "t1_c10", "survey"."template" AS "t1_c11",
"survey"."language" AS "t1_c12", "survey"."additional_languages" AS
"t1_c13", "survey"."datestamp" AS "t1_c14", "survey"."usecookie" AS
"t1_c15", "survey"."allowregister" AS "t1_c16", "survey"."allowsave" AS
"t1_c17", "survey"."autonumber_start" AS "t1_c18", "survey"."autoredirect"
AS "t1_c19", "survey"."allowprev" AS "t1_c20", "survey"."printanswers" AS
"t1_c21", "survey"."ipaddr" AS "t1_c22", "survey"."refurl" AS "t1_c23",
"survey"."datecreated" AS "t1_c24", "survey"."publicstatistics" AS
"t1_c25", "survey"."publicgraphs" AS "t1_c26", "survey"."listpublic" AS
"t1_c27", "survey"."htmlemail" AS "t1_c28", "survey"."sendconfirmation" AS
"t1_c29", "survey"."tokenanswerspersistence" AS "t1_c30",
"survey"."assessments" AS "t1_c31", "survey"."usecaptcha" AS "t1_c32",
"survey"."usetokens" AS "t1_c33", "survey"."bounce_email" AS "t1_c34",
"survey"."attributedescriptions" AS "t1_c35", "survey"."emailresponseto" AS
"t1_c36", "survey"."emailnotificationto" AS "t1_c37",
"survey"."tokenlength" AS "t1_c38", "survey"."showxquestions" AS "t1_c39",
"survey"."showgroupinfo" AS "t1_c40", "survey"."shownoanswer" AS "t1_c41",
"survey"."showqnumcode" AS "t1_c42", "survey"."bouncetime" AS "t1_c43",
"survey"."bounceprocessing" AS "t1_c44", "survey"."bounceaccounttype" AS
"t1_c45", "survey"."bounceaccounthost" AS "t1_c46",
"survey"."bounceaccountpass" AS "t1_c47",
"survey"."bounceaccountencryption" AS "t1_c48",
"survey"."bounceaccountuser" AS "t1_c49", "survey"."showwelcome" AS
"t1_c50", "survey"."showprogress" AS "t1_c51", "survey"."questionindex" AS
"t1_c52", "survey"."navigationdelay" AS "t1_c53", "survey"."nokeyboard" AS
"t1_c54", "survey"."alloweditaftercompletion" AS "t1_c55",
"survey"."googleanalyticsstyle" AS "t1_c56",
"survey"."googleanalyticsapikey" AS "t1_c57" FROM
"lime_surveys_languagesettings" "t"  LEFT OUTER JOIN "lime_surveys"
"survey" ON (t.surveyls_survey_id = survey.sid)  WHERE
("t"."surveyls_survey_id"=723869 AND "t"."surveyls_language"='es')
00:44:02.856316 profile system.db.CDbCommand.query
begin:system.db.CDbCommand.query(SELECT "t"."surveyls_survey_id" AS
"t0_c0", "t"."surveyls_language" AS "t0_c1", "t"."surveyls_title" AS
"t0_c2", "t"."surveyls_description" AS "t0_c3", "t"."surveyls_welcometext"
AS "t0_c4", "t"."surveyls_endtext" AS "t0_c5", "t"."surveyls_url" AS
"t0_c6", "t"."surveyls_urldescription" AS "t0_c7",
"t"."surveyls_email_invite_subj" AS "t0_c8", "t"."surveyls_email_invite" AS
"t0_c9", "t"."surveyls_email_remind_subj" AS "t0_c10",
"t"."surveyls_email_remind" AS "t0_c11", "t"."surveyls_email_register_subj"
AS "t0_c12", "t"."surveyls_email_register" AS "t0_c13",
"t"."surveyls_email_confirm_subj" AS "t0_c14", "t"."surveyls_email_confirm"
AS "t0_c15", "t"."surveyls_dateformat" AS "t0_c16",
"t"."surveyls_attributecaptions" AS "t0_c17",
"t"."email_admin_notification_subj" AS "t0_c18",
"t"."email_admin_notification" AS "t0_c19",
"t"."email_admin_responses_subj" AS "t0_c20", "t"."email_admin_responses"
AS "t0_c21", "t"."surveyls_numberformat" AS "t0_c22", "t"."attachments" AS
"t0_c23", "survey"."sid" AS "t1_c0", "survey"."owner_id" AS "t1_c1",
"survey"."admin" AS "t1_c2", "survey"."active" AS "t1_c3",
"survey"."expires" AS "t1_c4", "survey"."startdate" AS "t1_c5",
"survey"."adminemail" AS "t1_c6", "survey"."anonymized" AS "t1_c7",
"survey"."faxto" AS "t1_c8", "survey"."format" AS "t1_c9",
"survey"."savetimings" AS "t1_c10", "survey"."template" AS "t1_c11",
"survey"."language" AS "t1_c12", "survey"."additional_languages" AS
"t1_c13", "survey"."datestamp" AS "t1_c14", "survey"."usecookie" AS
"t1_c15", "survey"."allowregister" AS "t1_c16", "survey"."allowsave" AS
"t1_c17", "survey"."autonumber_start" AS "t1_c18", "survey"."autoredirect"
AS "t1_c19", "survey"."allowprev" AS "t1_c20", "survey"."printanswers" AS
"t1_c21", "survey"."ipaddr" AS "t1_c22", "survey"."refurl" AS "t1_c23",
"survey"."datecreated" AS "t1_c24", "survey"."publicstatistics" AS
"t1_c25", "survey"."publicgraphs" AS "t1_c26", "survey"."listpublic" AS
"t1_c27", "survey"."htmlemail" AS "t1_c28", "survey"."sendconfirmation" AS
"t1_c29", "survey"."tokenanswerspersistence" AS "t1_c30",
"survey"."assessments" AS "t1_c31", "survey"."usecaptcha" AS "t1_c32",
"survey"."usetokens" AS "t1_c33", "survey"."bounce_email" AS "t1_c34",
"survey"."attributedescriptions" AS "t1_c35", "survey"."emailresponseto" AS
"t1_c36", "survey"."emailnotificationto" AS "t1_c37",
"survey"."tokenlength" AS "t1_c38", "survey"."showxquestions" AS "t1_c39",
"survey"."showgroupinfo" AS "t1_c40", "survey"."shownoanswer" AS "t1_c41",
"survey"."showqnumcode" AS "t1_c42", "survey"."bouncetime" AS "t1_c43",
"survey"."bounceprocessing" AS "t1_c44", "survey"."bounceaccounttype" AS
"t1_c45", "survey"."bounceaccounthost" AS "t1_c46",
"survey"."bounceaccountpass" AS "t1_c47",
"survey"."bounceaccountencryption" AS "t1_c48",
"survey"."bounceaccountuser" AS "t1_c49", "survey"."showwelcome" AS
"t1_c50", "survey"."showprogress" AS "t1_c51", "survey"."questionindex" AS
"t1_c52", "survey"."navigationdelay" AS "t1_c53", "survey"."nokeyboard" AS
"t1_c54", "survey"."alloweditaftercompletion" AS "t1_c55",
"survey"."googleanalyticsstyle" AS "t1_c56",
"survey"."googleanalyticsapikey" AS "t1_c57" FROM
"lime_surveys_languagesettings" "t"  LEFT OUTER JOIN "lime_surveys"
"survey" ON (t.surveyls_survey_id = survey.sid)  WHERE
("t"."surveyls_survey_id"=723869 AND "t"."surveyls_language"='es'))
00:44:02.859265 profile system.db.CDbCommand.query
end:system.db.CDbCommand.query(SELECT "t"."surveyls_survey_id" AS "t0_c0",
"t"."surveyls_language" AS "t0_c1", "t"."surveyls_title" AS "t0_c2",
"t"."surveyls_description" AS "t0_c3", "t"."surveyls_welcometext" AS
"t0_c4", "t"."surveyls_endtext" AS "t0_c5", "t"."surveyls_url" AS "t0_c6",
"t"."surveyls_urldescription" AS "t0_c7", "t"."surveyls_email_invite_subj"
AS "t0_c8", "t"."surveyls_email_invite" AS "t0_c9",
"t"."surveyls_email_remind_subj" AS "t0_c10", "t"."surveyls_email_remind"
AS "t0_c11", "t"."surveyls_email_register_subj" AS "t0_c12",
"t"."surveyls_email_register" AS "t0_c13",
"t"."surveyls_email_confirm_subj" AS "t0_c14", "t"."surveyls_email_confirm"
AS "t0_c15", "t"."surveyls_dateformat" AS "t0_c16",
"t"."surveyls_attributecaptions" AS "t0_c17",
"t"."email_admin_notification_subj" AS "t0_c18",
"t"."email_admin_notification" AS "t0_c19",
"t"."email_admin_responses_subj" AS "t0_c20", "t"."email_admin_responses"
AS "t0_c21", "t"."surveyls_numberformat" AS "t0_c22", "t"."attachments" AS
"t0_c23", "survey"."sid" AS "t1_c0", "survey"."owner_id" AS "t1_c1",
"survey"."admin" AS "t1_c2", "survey"."active" AS "t1_c3",
"survey"."expires" AS "t1_c4", "survey"."startdate" AS "t1_c5",
"survey"."adminemail" AS "t1_c6", "survey"."anonymized" AS "t1_c7",
"survey"."faxto" AS "t1_c8", "survey"."format" AS "t1_c9",
"survey"."savetimings" AS "t1_c10", "survey"."template" AS "t1_c11",
"survey"."language" AS "t1_c12", "survey"."additional_languages" AS
"t1_c13", "survey"."datestamp" AS "t1_c14", "survey"."usecookie" AS
"t1_c15", "survey"."allowregister" AS "t1_c16", "survey"."allowsave" AS
"t1_c17", "survey"."autonumber_start" AS "t1_c18", "survey"."autoredirect"
AS "t1_c19", "survey"."allowprev" AS "t1_c20", "survey"."printanswers" AS
"t1_c21", "survey"."ipaddr" AS "t1_c22", "survey"."refurl" AS "t1_c23",
"survey"."datecreated" AS "t1_c24", "survey"."publicstatistics" AS
"t1_c25", "survey"."publicgraphs" AS "t1_c26", "survey"."listpublic" AS
"t1_c27", "survey"."htmlemail" AS "t1_c28", "survey"."sendconfirmation" AS
"t1_c29", "survey"."tokenanswerspersistence" AS "t1_c30",
"survey"."assessments" AS "t1_c31", "survey"."usecaptcha" AS "t1_c32",
"survey"."usetokens" AS "t1_c33", "survey"."bounce_email" AS "t1_c34",
"survey"."attributedescriptions" AS "t1_c35", "survey"."emailresponseto" AS
"t1_c36", "survey"."emailnotificationto" AS "t1_c37",
"survey"."tokenlength" AS "t1_c38", "survey"."showxquestions" AS "t1_c39",
"survey"."showgroupinfo" AS "t1_c40", "survey"."shownoanswer" AS "t1_c41",
"survey"."showqnumcode" AS "t1_c42", "survey"."bouncetime" AS "t1_c43",
"survey"."bounceprocessing" AS "t1_c44", "survey"."bounceaccounttype" AS
"t1_c45", "survey"."bounceaccounthost" AS "t1_c46",
"survey"."bounceaccountpass" AS "t1_c47",
"survey"."bounceaccountencryption" AS "t1_c48",
"survey"."bounceaccountuser" AS "t1_c49", "survey"."showwelcome" AS
"t1_c50", "survey"."showprogress" AS "t1_c51", "survey"."questionindex" AS
"t1_c52", "survey"."navigationdelay" AS "t1_c53", "survey"."nokeyboard" AS
"t1_c54", "survey"."alloweditaftercompletion" AS "t1_c55",
"survey"."googleanalyticsstyle" AS "t1_c56",
"survey"."googleanalyticsapikey" AS "t1_c57" FROM
"lime_surveys_languagesettings" "t"  LEFT OUTER JOIN "lime_surveys"
"survey" ON (t.surveyls_survey_id = survey.sid)  WHERE
("t"."surveyls_survey_id"=723869 AND "t"."surveyls_language"='es'))
00:44:02.878184 trace system.db.CDbCommand
Querying SQL: SELECT table_name, table_schema FROM
information_schema.tables
WHERE table_schema=:schema AND table_type='BASE TABLE'. Bound with
:schema='public'
00:44:02.878238 profile system.db.CDbCommand.query
begin:system.db.CDbCommand.query(SELECT table_name, table_schema FROM
information_schema.tables
WHERE table_schema=:schema AND table_type='BASE TABLE'. Bound with
:schema='public')
00:44:02.887732 profile system.db.CDbCommand.query
end:system.db.CDbCommand.query(SELECT table_name, table_schema FROM
information_schema.tables
WHERE table_schema=:schema AND table_type='BASE TABLE'. Bound with
:schema='public')
00:44:02.909128 trace system.db.CDbCommand
Executing SQL: CREATE TABLE "lime_tokens_723869" (
	"tid" serial NOT NULL PRIMARY KEY,
	"participant_id" string(50),
	"firstname" string(40),
	"lastname" string(40),
	"email" text,
	"emailstatus" text,
	"token" string(35),
	"language" string(25),
	"blacklisted" string(17),
	"sent" string(17) DEFAULT 'N',
	"remindersent" string(17) DEFAULT 'N',
	"remindercount" integer DEFAULT 0,
	"completed" string(17) DEFAULT 'N',
	"usesleft" integer DEFAULT 1,
	"validfrom" timestamp,
	"validuntil" timestamp,
	"mpid" integer
)
00:44:02.909208 profile system.db.CDbCommand.execute
begin:system.db.CDbCommand.execute(CREATE TABLE "lime_tokens_723869" (
	"tid" serial NOT NULL PRIMARY KEY,
	"participant_id" string(50),
	"firstname" string(40),
	"lastname" string(40),
	"email" text,
	"emailstatus" text,
	"token" string(35),
	"language" string(25),
	"blacklisted" string(17),
	"sent" string(17) DEFAULT 'N',
	"remindersent" string(17) DEFAULT 'N',
	"remindercount" integer DEFAULT 0,
	"completed" string(17) DEFAULT 'N',
	"usesleft" integer DEFAULT 1,
	"validfrom" timestamp,
	"validuntil" timestamp,
	"mpid" integer
))
00:44:02.926537 profile system.db.CDbCommand.execute
end:system.db.CDbCommand.execute(CREATE TABLE "lime_tokens_723869" (
	"tid" serial NOT NULL PRIMARY KEY,
	"participant_id" string(50),
	"firstname" string(40),
	"lastname" string(40),
	"email" text,
	"emailstatus" text,
	"token" string(35),
	"language" string(25),
	"blacklisted" string(17),
	"sent" string(17) DEFAULT 'N',
	"remindersent" string(17) DEFAULT 'N',
	"remindercount" integer DEFAULT 0,
	"completed" string(17) DEFAULT 'N',
	"usesleft" integer DEFAULT 1,
	"validfrom" timestamp,
	"validuntil" timestamp,
	"mpid" integer
))
00:44:02.926640 trace system.CModule
Loading "coreMessages" application component
00:44:02.974591 error system.db.CDbCommand
CDbCommand::execute() falló: SQLSTATE[42704]: Undefined object: 7 ERROR: 
type "string" does not exist
LINE 3:  "participant_id" string(50),
                          ^. La sentencia SQL ejecutada fue: CREATE TABLE
"lime_tokens_723869" (
	"tid" serial NOT NULL PRIMARY KEY,
	"participant_id" string(50),
	"firstname" string(40),
	"lastname" string(40),
	"email" text,
	"emailstatus" text,
	"token" string(35),
	"language" string(25),
	"blacklisted" string(17),
	"sent" string(17) DEFAULT 'N',
	"remindersent" string(17) DEFAULT 'N',
	"remindercount" integer DEFAULT 0,
	"completed" string(17) DEFAULT 'N',
	"usesleft" integer DEFAULT 1,
	"validfrom" timestamp,
	"validuntil" timestamp,
	"mpid" integer
).
00:44:02.990736 error exception.CDbException
exception 'CDbException' with message 'CDbCommand falló al ejecutar la
sentencia SQL: SQLSTATE[42704]: Undefined object: 7 ERROR:  type "string"
does not exist
LINE 3:  "participant_id" string(50),
                          ^. The SQL statement executed was: CREATE TABLE
"lime_tokens_723869" (
	"tid" serial NOT NULL PRIMARY KEY,
	"participant_id" string(50),
	"firstname" string(40),
	"lastname" string(40),
	"email" text,
	"emailstatus" text,
	"token" string(35),
	"language" string(25),
	"blacklisted" string(17),
	"sent" string(17) DEFAULT 'N',
	"remindersent" string(17) DEFAULT 'N',
	"remindercount" integer DEFAULT 0,
	"completed" string(17) DEFAULT 'N',
	"usesleft" integer DEFAULT 1,
	"validfrom" timestamp,
	"validuntil" timestamp,
	"mpid" integer
)' in /usr/share/nginx/html/limesurvey/framework/db/CDbCommand.php:358
Stack trace:
#0 /usr/share/nginx/html/limesurvey/framework/db/CDbCommand.php(1324):
CDbCommand->execute()
#1 /usr/share/nginx/html/limesurvey/application/models/Token.php(116):
CDbCommand->createTable('{{tokens_723869...', Array)
#2
/usr/share/nginx/html/limesurvey/application/controllers/admin/tokens.php(2479):
Token::createTable('723869')
#3
/usr/share/nginx/html/limesurvey/application/controllers/admin/tokens.php(49):
tokens->_newtokentable('723869')
#4 [internal function]: tokens->index('723869')
#5 /usr/share/nginx/html/limesurvey/framework/web/actions/CAction.php(108):
ReflectionMethod->invokeArgs(Object(tokens), Array)
#6
/usr/share/nginx/html/limesurvey/application/core/Survey_Common_Action.php(99):
CAction->runWithParamsInternal(Object(tokens), Object(ReflectionMethod),
Array)
#7 /usr/share/nginx/html/limesurvey/framework/web/CController.php(308):
Survey_Common_Action->runWithParams(Array)
#8 /usr/share/nginx/html/limesurvey/framework/web/CController.php(286):
CController->runAction(Object(tokens))
#9 /usr/share/nginx/html/limesurvey/framework/web/CController.php(265):
CController->runActionWithFilters(Object(tokens), Array)
#10
/usr/share/nginx/html/limesurvey/application/controllers/AdminController.php(164):
CController->run('tokens')
#11
/usr/share/nginx/html/limesurvey/framework/web/CWebApplication.php(282):
AdminController->run('tokens')
#12
/usr/share/nginx/html/limesurvey/framework/web/CWebApplication.php(141):
CWebApplication->runController('admin/tokens/sa...')
#13 /usr/share/nginx/html/limesurvey/framework/base/CApplication.php(180):
CWebApplication->processRequest()
#14 /usr/share/nginx/html/limesurvey/index.php(200): CApplication->run()
#15 {main}
REQUEST_URI=/limesurvey/index.php/admin/tokens/sa/index/surveyid/723869/createtable/Y
HTTP_REFERER=http://localhost/limesurvey/index.php/admin/tokens/sa/index/surveyid/723869
---
00:44:02.991314 trace system.CModule
Loading "errorHandler" application component
Profiling Summary Report (Tiempo: 0.45040s, Memoria: 4,061KB)
Procedimiento Cuenta Total (es) Promedio (s) Min. (s) Máx. (s)
system.db.CDbCommand.execute(CREATE TABLE "lime_tokens_723869" ( "tid" serial NOT NULL PRIMARY KEY, "participant_id" string(50), "firstname" string(40), "lastname" string(40), "email" text, "emailstatus" text, "token" string(35), "language" string(25), "blacklisted" string(17), "sent" string(17) DEFAULT 'N', "remindersent" string(17) DEFAULT 'N', "remindercount" integer DEFAULT 0, "completed" string(17) DEFAULT 'N', "usesleft" integer DEFAULT 1, "validfrom" timestamp, "validuntil" timestamp, "mpid" integer )) 1 0.01733 0.01733 0.01733 0.01733
system.db.CDbCommand.query(SELECT table_name, table_schema FROM information_schema.tables WHERE table_schema=:schema AND table_type='BASE TABLE'. Bound with :schema='public') 1 0.00949 0.00949 0.00949 0.00949
system.db.CDbCommand.query(SELECT a.attname, LOWER(format_type(a.atttypid, a.atttypmod)) AS type, d.adsrc, a.attnotnull, a.atthasdef, pg_catalog.col_description(a.attrelid, a.attnum) AS comment FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attnum > 0 AND NOT a.attisdropped AND a.attrelid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace WHERE nspname = :schema)) ORDER BY a.attnum. Bound with :table='lime_settings_global', :schema='public') 1 0.00875 0.00875 0.00875 0.00875
system.db.CDbCommand.query(SELECT conname, consrc, contype, indkey FROM ( SELECT conname, CASE WHEN contype='f' THEN pg_catalog.pg_get_constraintdef(oid) ELSE 'CHECK (' || consrc || ')' END AS consrc, contype, conrelid AS relid, NULL AS indkey FROM pg_catalog.pg_constraint WHERE contype IN ('f', 'c') UNION ALL SELECT pc.relname, NULL, CASE WHEN indisprimary THEN 'p' ELSE 'u' END, pi.indrelid, indkey FROM pg_catalog.pg_class pc, pg_catalog.pg_index pi WHERE pc.oid=pi.indexrelid AND EXISTS ( SELECT 1 FROM pg_catalog.pg_depend d JOIN pg_catalog.pg_constraint c ON (d.refclassid = c.tableoid AND d.refobjid = c.oid) WHERE d.classid = pc.tableoid AND d.objid = pc.oid AND d.deptype = 'i' AND c.contype IN ('u', 'p') ) ) AS sub WHERE relid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace WHERE nspname=:schema)). Bound with :table='lime_settings_global', :schema='public') 1 0.00527 0.00527 0.00527 0.00527
system.db.CDbCommand.query(SELECT conname, consrc, contype, indkey FROM ( SELECT conname, CASE WHEN contype='f' THEN pg_catalog.pg_get_constraintdef(oid) ELSE 'CHECK (' || consrc || ')' END AS consrc, contype, conrelid AS relid, NULL AS indkey FROM pg_catalog.pg_constraint WHERE contype IN ('f', 'c') UNION ALL SELECT pc.relname, NULL, CASE WHEN indisprimary THEN 'p' ELSE 'u' END, pi.indrelid, indkey FROM pg_catalog.pg_class pc, pg_catalog.pg_index pi WHERE pc.oid=pi.indexrelid AND EXISTS ( SELECT 1 FROM pg_catalog.pg_depend d JOIN pg_catalog.pg_constraint c ON (d.refclassid = c.tableoid AND d.refobjid = c.oid) WHERE d.classid = pc.tableoid AND d.objid = pc.oid AND d.deptype = 'i' AND c.contype IN ('u', 'p') ) ) AS sub WHERE relid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace WHERE nspname=:schema)). Bound with :table='lime_surveys', :schema='public') 1 0.00451 0.00451 0.00451 0.00451
system.db.CDbCommand.query(SELECT conname, consrc, contype, indkey FROM ( SELECT conname, CASE WHEN contype='f' THEN pg_catalog.pg_get_constraintdef(oid) ELSE 'CHECK (' || consrc || ')' END AS consrc, contype, conrelid AS relid, NULL AS indkey FROM pg_catalog.pg_constraint WHERE contype IN ('f', 'c') UNION ALL SELECT pc.relname, NULL, CASE WHEN indisprimary THEN 'p' ELSE 'u' END, pi.indrelid, indkey FROM pg_catalog.pg_class pc, pg_catalog.pg_index pi WHERE pc.oid=pi.indexrelid AND EXISTS ( SELECT 1 FROM pg_catalog.pg_depend d JOIN pg_catalog.pg_constraint c ON (d.refclassid = c.tableoid AND d.refobjid = c.oid) WHERE d.classid = pc.tableoid AND d.objid = pc.oid AND d.deptype = 'i' AND c.contype IN ('u', 'p') ) ) AS sub WHERE relid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace WHERE nspname=:schema)). Bound with :table='lime_plugins', :schema='public') 1 0.00399 0.00399 0.00399 0.00399
system.db.CDbCommand.query(SELECT a.attname, LOWER(format_type(a.atttypid, a.atttypmod)) AS type, d.adsrc, a.attnotnull, a.atthasdef, pg_catalog.col_description(a.attrelid, a.attnum) AS comment FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attnum > 0 AND NOT a.attisdropped AND a.attrelid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace WHERE nspname = :schema)) ORDER BY a.attnum. Bound with :table='lime_surveys_languagesettings', :schema='public') 1 0.00380 0.00380 0.00380 0.00380
system.db.CDbCommand.query(SELECT conname, consrc, contype, indkey FROM ( SELECT conname, CASE WHEN contype='f' THEN pg_catalog.pg_get_constraintdef(oid) ELSE 'CHECK (' || consrc || ')' END AS consrc, contype, conrelid AS relid, NULL AS indkey FROM pg_catalog.pg_constraint WHERE contype IN ('f', 'c') UNION ALL SELECT pc.relname, NULL, CASE WHEN indisprimary THEN 'p' ELSE 'u' END, pi.indrelid, indkey FROM pg_catalog.pg_class pc, pg_catalog.pg_index pi WHERE pc.oid=pi.indexrelid AND EXISTS ( SELECT 1 FROM pg_catalog.pg_depend d JOIN pg_catalog.pg_constraint c ON (d.refclassid = c.tableoid AND d.refobjid = c.oid) WHERE d.classid = pc.tableoid AND d.objid = pc.oid AND d.deptype = 'i' AND c.contype IN ('u', 'p') ) ) AS sub WHERE relid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace WHERE nspname=:schema)). Bound with :table='lime_surveys_languagesettings', :schema='public') 1 0.00362 0.00362 0.00362 0.00362
system.db.CDbCommand.query(SELECT a.attname, LOWER(format_type(a.atttypid, a.atttypmod)) AS type, d.adsrc, a.attnotnull, a.atthasdef, pg_catalog.col_description(a.attrelid, a.attnum) AS comment FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attnum > 0 AND NOT a.attisdropped AND a.attrelid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace WHERE nspname = :schema)) ORDER BY a.attnum. Bound with :table='lime_plugins', :schema='public') 1 0.00345 0.00345 0.00345 0.00345
system.db.CDbCommand.query(SELECT conname, consrc, contype, indkey FROM ( SELECT conname, CASE WHEN contype='f' THEN pg_catalog.pg_get_constraintdef(oid) ELSE 'CHECK (' || consrc || ')' END AS consrc, contype, conrelid AS relid, NULL AS indkey FROM pg_catalog.pg_constraint WHERE contype IN ('f', 'c') UNION ALL SELECT pc.relname, NULL, CASE WHEN indisprimary THEN 'p' ELSE 'u' END, pi.indrelid, indkey FROM pg_catalog.pg_class pc, pg_catalog.pg_index pi WHERE pc.oid=pi.indexrelid AND EXISTS ( SELECT 1 FROM pg_catalog.pg_depend d JOIN pg_catalog.pg_constraint c ON (d.refclassid = c.tableoid AND d.refobjid = c.oid) WHERE d.classid = pc.tableoid AND d.objid = pc.oid AND d.deptype = 'i' AND c.contype IN ('u', 'p') ) ) AS sub WHERE relid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace WHERE nspname=:schema)). Bound with :table='lime_permissions', :schema='public') 1 0.00340 0.00340 0.00340 0.00340
system.db.CDbCommand.query(SELECT "t"."surveyls_survey_id" AS "t0_c0", "t"."surveyls_language" AS "t0_c1", "t"."surveyls_title" AS "t0_c2", "t"."surveyls_description" AS "t0_c3", "t"."surveyls_welcometext" AS "t0_c4", "t"."surveyls_endtext" AS "t0_c5", "t"."surveyls_url" AS "t0_c6", "t"."surveyls_urldescription" AS "t0_c7", "t"."surveyls_email_invite_subj" AS "t0_c8", "t"."surveyls_email_invite" AS "t0_c9", "t"."surveyls_email_remind_subj" AS "t0_c10", "t"."surveyls_email_remind" AS "t0_c11", "t"."surveyls_email_register_subj" AS "t0_c12", "t"."surveyls_email_register" AS "t0_c13", "t"."surveyls_email_confirm_subj" AS "t0_c14", "t"."surveyls_email_confirm" AS "t0_c15", "t"."surveyls_dateformat" AS "t0_c16", "t"."surveyls_attributecaptions" AS "t0_c17", "t"."email_admin_notification_subj" AS "t0_c18", "t"."email_admin_notification" AS "t0_c19", "t"."email_admin_responses_subj" AS "t0_c20", "t"."email_admin_responses" AS "t0_c21", "t"."surveyls_numberformat" AS "t0_c22", "t"."attachments" AS "t0_c23", "survey"."sid" AS "t1_c0", "survey"."owner_id" AS "t1_c1", "survey"."admin" AS "t1_c2", "survey"."active" AS "t1_c3", "survey"."expires" AS "t1_c4", "survey"."startdate" AS "t1_c5", "survey"."adminemail" AS "t1_c6", "survey"."anonymized" AS "t1_c7", "survey"."faxto" AS "t1_c8", "survey"."format" AS "t1_c9", "survey"."savetimings" AS "t1_c10", "survey"."template" AS "t1_c11", "survey"."language" AS "t1_c12", "survey"."additional_languages" AS "t1_c13", "survey"."datestamp" AS "t1_c14", "survey"."usecookie" AS "t1_c15", "survey"."allowregister" AS "t1_c16", "survey"."allowsave" AS "t1_c17", "survey"."autonumber_start" AS "t1_c18", "survey"."autoredirect" AS "t1_c19", "survey"."allowprev" AS "t1_c20", "survey"."printanswers" AS "t1_c21", "survey"."ipaddr" AS "t1_c22", "survey"."refurl" AS "t1_c23", "survey"."datecreated" AS "t1_c24", "survey"."publicstatistics" AS "t1_c25", "survey"."publicgraphs" AS "t1_c26", "survey"."listpublic" AS "t1_c27", "survey"."htmlemail" AS "t1_c28", "survey"."sendconfirmation" AS "t1_c29", "survey"."tokenanswerspersistence" AS "t1_c30", "survey"."assessments" AS "t1_c31", "survey"."usecaptcha" AS "t1_c32", "survey"."usetokens" AS "t1_c33", "survey"."bounce_email" AS "t1_c34", "survey"."attributedescriptions" AS "t1_c35", "survey"."emailresponseto" AS "t1_c36", "survey"."emailnotificationto" AS "t1_c37", "survey"."tokenlength" AS "t1_c38", "survey"."showxquestions" AS "t1_c39", "survey"."showgroupinfo" AS "t1_c40", "survey"."shownoanswer" AS "t1_c41", "survey"."showqnumcode" AS "t1_c42", "survey"."bouncetime" AS "t1_c43", "survey"."bounceprocessing" AS "t1_c44", "survey"."bounceaccounttype" AS "t1_c45", "survey"."bounceaccounthost" AS "t1_c46", "survey"."bounceaccountpass" AS "t1_c47", "survey"."bounceaccountencryption" AS "t1_c48", "survey"."bounceaccountuser" AS "t1_c49", "survey"."showwelcome" AS "t1_c50", "survey"."showprogress" AS "t1_c51", "survey"."questionindex" AS "t1_c52", "survey"."navigationdelay" AS "t1_c53", "survey"."nokeyboard" AS "t1_c54", "survey"."alloweditaftercompletion" AS "t1_c55", "survey"."googleanalyticsstyle" AS "t1_c56", "survey"."googleanalyticsapikey" AS "t1_c57" FROM "lime_surveys_languagesettings" "t" LEFT OUTER JOIN "lime_surveys" "survey" ON (t.surveyls_survey_id = survey.sid) WHERE ("t"."surveyls_survey_id"=723869 AND "t"."surveyls_language"='es')) 1 0.00295 0.00295 0.00295 0.00295
system.db.CDbCommand.query(SELECT a.attname, LOWER(format_type(a.atttypid, a.atttypmod)) AS type, d.adsrc, a.attnotnull, a.atthasdef, pg_catalog.col_description(a.attrelid, a.attnum) AS comment FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attnum > 0 AND NOT a.attisdropped AND a.attrelid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace WHERE nspname = :schema)) ORDER BY a.attnum. Bound with :table='lime_permissions', :schema='public') 1 0.00282 0.00282 0.00282 0.00282
system.db.CDbCommand.query(SELECT * FROM "lime_surveys" "t" WHERE "t"."sid"=723869 LIMIT 1) 1 0.00273 0.00273 0.00273 0.00273
system.db.CDbCommand.query(SELECT a.attname, LOWER(format_type(a.atttypid, a.atttypmod)) AS type, d.adsrc, a.attnotnull, a.atthasdef, pg_catalog.col_description(a.attrelid, a.attnum) AS comment FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attnum > 0 AND NOT a.attisdropped AND a.attrelid = (SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND relnamespace = (SELECT oid FROM pg_catalog.pg_namespace WHERE nspname = :schema)) ORDER BY a.attnum. Bound with :table='lime_surveys', :schema='public') 1 0.00217 0.00217 0.00217 0.00217
system.db.CDbCommand.query(SELECT * FROM "lime_permissions" "t" WHERE "t"."entity_id"=:yp0 AND "t"."entity"=:yp1 AND "t"."uid"=:yp2 AND "t"."permission"=:yp3 LIMIT 1. Bound with :yp0=0, :yp1='global', :yp2=1, :yp3='superadmin') 1 0.00157 0.00157 0.00157 0.00157
system.db.CDbCommand.query(SELECT attnum, attname FROM pg_catalog.pg_attribute WHERE attrelid=( SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND relnamespace=( SELECT oid FROM pg_catalog.pg_namespace WHERE nspname=:schema ) ) AND attnum IN (1). Bound with :table='lime_plugins', :schema='public') 1 0.00154 0.00154 0.00154 0.00154
system.db.CDbCommand.query(SELECT attnum, attname FROM pg_catalog.pg_attribute WHERE attrelid=( SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND relnamespace=( SELECT oid FROM pg_catalog.pg_namespace WHERE nspname=:schema ) ) AND attnum IN (1). Bound with :table='lime_surveys', :schema='public') 1 0.00144 0.00144 0.00144 0.00144
system.db.CDbCommand.query(SELECT * FROM "lime_plugins" "t" WHERE "t"."active"=:yp0. Bound with :yp0=1) 1 0.00132 0.00132 0.00132 0.00132
system.db.CDbCommand.query(SELECT attnum, attname FROM pg_catalog.pg_attribute WHERE attrelid=( SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND relnamespace=( SELECT oid FROM pg_catalog.pg_namespace WHERE nspname=:schema ) ) AND attnum IN (1, 2). Bound with :table='lime_surveys_languagesettings', :schema='public') 1 0.00130 0.00130 0.00130 0.00130
system.db.CDbCommand.query(SELECT attnum, attname FROM pg_catalog.pg_attribute WHERE attrelid=( SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND relnamespace=( SELECT oid FROM pg_catalog.pg_namespace WHERE nspname=:schema ) ) AND attnum IN (1). Bound with :table='lime_settings_global', :schema='public') 1 0.00108 0.00108 0.00108 0.00108
system.db.CDbCommand.query(SELECT * FROM "lime_settings_global" "t") 1 0.00102 0.00102 0.00102 0.00102
system.db.CDbCommand.query(SELECT attnum, attname FROM pg_catalog.pg_attribute WHERE attrelid=( SELECT oid FROM pg_catalog.pg_class WHERE relname=:table AND relnamespace=( SELECT oid FROM pg_catalog.pg_namespace WHERE nspname=:schema ) ) AND attnum IN (1). Bound with :table='lime_permissions', :schema='public') 1 0.00098 0.00098 0.00098 0.00098