Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
61783651
Commit
61783651
authored
Jan 07, 2005
by
Dries
Browse files
- Patch
#15254
: removed hardcoded 'public' schema from the PostgreSQL backend.
parent
0f91dce4
Changes
1
Hide whitespace changes
Inline
Side-by-side
includes/database.pgsql.inc
View file @
61783651
...
...
@@ -145,7 +145,7 @@ function db_error() {
* will be created.
*/
function
db_next_id
(
$name
)
{
$id
=
db_result
(
db_query
(
"SELECT nextval('
public.
%s_seq')"
,
db_prefix_tables
(
$name
)));
$id
=
db_result
(
db_query
(
"SELECT nextval('%s_seq')"
,
db_prefix_tables
(
$name
)));
return
$id
;
}
...
...
@@ -234,4 +234,4 @@ function db_escape_string($text) {
* @} End of "ingroup database".
*/
?>
\ No newline at end of file
?>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment