-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes and improvements for postgresql #3
base: postgresql_v2
Are you sure you want to change the base?
Conversation
Added support to date null values
…o missing $key variable error
@@ -1831,7 +1831,7 @@ CREATE TABLE "#__modules" ( | |||
"id" serial NOT NULL, | |||
"title" character varying(100) DEFAULT '' NOT NULL, | |||
"note" character varying(255) DEFAULT '' NOT NULL, | |||
"content" text NOT NULL, | |||
"content" text DEFAULT '' NOT NULL, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
MySQL version hasn't default value, see here, why have you added this ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I must verify what is the exactly error this generated. But as I can remember, PostgreSQL is not so fair like MySQL with bad SQL.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tested this today and this is not necessary anymore. I think I changed this before last fix in postgresql driver. This is related to problems with null values. I will revert this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, I'll wait your changes and then I'll merge.
Thanks!
…extensions installation is broken.
…e is protected again
Gabriele,
I made a lot of improvements in postgresql driver adding support to numeric and null values in a generic way. Please, take a look and let me know if you will merge them.
Thanks.