Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f27da05 commit 3af2827Copy full SHA for 3af2827
src/backend/utils/adt/varbit.c
@@ -9,7 +9,7 @@
9
* Portions Copyright (c) 1994, Regents of the University of California
10
*
11
* IDENTIFICATION
12
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/varbit.c,v 1.10 2000/10/31 10:22:11 petere Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/varbit.c,v 1.11 2000/11/07 11:35:16 momjian Exp $
13
14
*-------------------------------------------------------------------------
15
*/
@@ -1212,7 +1212,7 @@ bitposition(PG_FUNCTION_ARGS)
1212
is_match = ((cmp ^ *p) & mask1) == 0;
1213
if (!is_match)
1214
break;
1215
- // Move on to the next byte
+ /* Move on to the next byte */
1216
p++;
1217
if (p == VARBITEND(arg)) {
1218
mask2 = end_mask << (BITS_PER_BYTE - is);
0 commit comments