aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/jsonpath_scan.l
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2019-04-17 13:37:00 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2019-04-17 13:37:00 -0400
commitb4f96d69ad197731c1f5b959e1234c9ba3517ecb (patch)
treed17a8548d3391a77b01bf495349ffa62ddd9af19 /src/backend/utils/adt/jsonpath_scan.l
parent252b707bc41cc9bf6c55c18d8cb302a6176b7e48 (diff)
downloadpostgresql-b4f96d69ad197731c1f5b959e1234c9ba3517ecb.tar.gz
postgresql-b4f96d69ad197731c1f5b959e1234c9ba3517ecb.zip
Minor jsonpath fixes.
Restore missed "make clean" rule, fix misspelling. John Naylor Discussion: https://postgr.es/m/CACPNZCt5B8jDCCGQiFoSuqmg-za_NCy4QDioBTLaNRih9+-bXg@mail.gmail.com
Diffstat (limited to 'src/backend/utils/adt/jsonpath_scan.l')
-rw-r--r--src/backend/utils/adt/jsonpath_scan.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/adt/jsonpath_scan.l b/src/backend/utils/adt/jsonpath_scan.l
index 12ef81b3083..72bb5e3937b 100644
--- a/src/backend/utils/adt/jsonpath_scan.l
+++ b/src/backend/utils/adt/jsonpath_scan.l
@@ -478,7 +478,7 @@ parsejsonpath(const char *str, int len)
jsonpath_scanner_init(str, len);
if (jsonpath_yyparse((void *) &parseresult) != 0)
- jsonpath_yyerror(NULL, "bugus input");
+ jsonpath_yyerror(NULL, "bogus input"); /* shouldn't happen */
jsonpath_scanner_finish();