Skip to content

Commit 2cf32bc

Browse files
committed
Update to 16-latest branch
1 parent 502d8d4 commit 2cf32bc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ benchmark:
1616

1717
# --- Below only needed for releasing new versions
1818

19-
LIB_PG_QUERY_TAG = c492b8f6fa54811fb194b6964055bb7d480f8c91
19+
LIB_PG_QUERY_TAG = 43bad3cbcd1a70a30494b64f464c3f60579884ed
2020

2121
root_dir := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
2222
LIB_TMPDIR = $(root_dir)/tmp

Diff for: parser/pg_query_scan.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ PgQueryScanResult pg_query_scan(const char* input)
9393
output_tokens[i] = malloc(sizeof(PgQuery__ScanToken));
9494
pg_query__scan_token__init(output_tokens[i]);
9595
output_tokens[i]->start = yylloc;
96-
if (tok == SCONST || tok == BCONST || tok == XCONST || tok == IDENT || tok == C_COMMENT) {
96+
if (tok == SCONST || tok == USCONST || tok == BCONST || tok == XCONST || tok == IDENT || tok == UIDENT || tok == C_COMMENT) {
9797
output_tokens[i]->end = yyextra.yyllocend;
9898
} else {
9999
output_tokens[i]->end = yylloc + ((struct yyguts_t*) yyscanner)->yyleng_r;

0 commit comments

Comments
 (0)