Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 430169a

Browse files
committed
FIx for indexing regex stuff. Change rowoid to objoid.
1 parent ea4223c commit 430169a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/parser/gram.y

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
*
1212
* IDENTIFICATION
13-
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 1.65 1997/11/14 05:57:23 momjian Exp $
13+
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 1.66 1997/11/14 06:09:07 momjian Exp $
1414
*
1515
* HISTORY
1616
* AUTHOR DATE MAJOR EVENT
@@ -3572,7 +3572,7 @@ static Node *makeIndexable(char *opname, Node *lexpr, Node *rexpr)
35723572
n->val.val.str[pos] == '*' ||
35733573
n->val.val.str[pos] == '[' ||
35743574
n->val.val.str[pos] == '$' ||
3575-
(strcmp(opname,"~*") == 0 && isalpha(n->val.val.str[pos]))
3575+
(strcmp(opname,"~*") == 0 && isalpha(n->val.val.str[pos])))
35763576
break;
35773577
if (n->val.val.str[pos] == '\\')
35783578
pos++;

0 commit comments

Comments
 (0)