CI Session bug |
[eluser]Nemke[/eluser]
It's late and I'm pretty much tired but isn't this a bug: 1. Please first look at this: http://dev.mysql.com/doc/refman/4.1/en/blob.html http://dev.mysql.com/doc/refman/5.0/en/blob.html http://dev.mysql.com/doc/refman/5.1/en/blob.html http://dev.mysql.com/doc/refman/5.5/en/blob.html as you can see for eache version of MySQL there is this line of text "BLOB and TEXT columns cannot have DEFAULT values." and if you go to User Guide and look a page about Session library: http://ellislab.com/codeigniter/user-gui...sions.html you will notice this database structure: "CREATE TABLE IF NOT EXISTS `ci_sessions` ( session_id varchar(40) DEFAULT '0' NOT NULL, ip_address varchar(16) DEFAULT '0' NOT NULL, user_agent varchar(50) NOT NULL, last_activity int(10) unsigned DEFAULT 0 NOT NULL, user_data text DEFAULT '' NOT NULL, PRIMARY KEY (session_id) );" in which as you can see user_data is TEXT type field and is declared with default value. So can anybody tell me is this a bug, or I'm I just to tired |
Messages In This Thread |
CI Session bug - by El Forum - 04-07-2011, 04:12 PM
CI Session bug - by El Forum - 04-07-2011, 04:19 PM
CI Session bug - by El Forum - 04-07-2011, 04:23 PM
|