projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c658d5a
)
Fix compile breakage due to 0315dfa8f4afa8390383119330ca0bf241be4ad4.
author
Robert Haas
<
[email protected]
>
Fri, 4 Mar 2016 17:11:30 +0000
(12:11 -0500)
committer
Robert Haas
<
[email protected]
>
Fri, 4 Mar 2016 17:18:21 +0000
(12:18 -0500)
I wasn't careful enough when back-patching.
src/bin/psql/tab-complete.c
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/psql/tab-complete.c
b/src/bin/psql/tab-complete.c
index 2d99443e729fb26fa5ee606fd79396fd71fd168e..3473dc91bcc5a34629365f4d2e30d1ae2daa7585 100644
(file)
--- a/
src/bin/psql/tab-complete.c
+++ b/
src/bin/psql/tab-complete.c
@@
-3229,8
+3229,8
@@
_complete_from_query(int is_schema_query, const char *text, int state)
result = NULL;
/* Set up suitably-escaped copies of textual inputs */
- e_text = pg_malloc(
string
_length * 2 + 1);
- PQescapeString(e_text, text,
string
_length);
+ e_text = pg_malloc(
byte
_length * 2 + 1);
+ PQescapeString(e_text, text,
byte
_length);
if (completion_info_charp)
{