Remove num for int size spec on create temp table

This commit is contained in:
Miles Lott 2001-02-28 22:09:09 +00:00
parent 1ff5f201a9
commit af02fc4df7

View File

@ -323,7 +323,7 @@
$this->db3 = $this->db2 = $this->db; // Create new result objects before our queries
// start create sql for temp table
$tempcreate = "CREATE TABLE ".$tmp_table." (id int(11),";
$tempcreate = "CREATE TABLE ".$tmp_table." (id int,";
// construct query and count rows based on filter sent to function
$this->db->query("select id from $this->std_table ".$filtermethod,__LINE__,__FILE__);