aboutsummaryrefslogtreecommitdiff
path: root/src/backend/parser/scan.l
Commit message (Expand)AuthorAge
* Implement nested block comments in the backend and in psql.Thomas G. Lockhart2000-07-14
* Big warnings cleanup for Solaris/GCC. Down to about 40 now, butPeter Eisentraut2000-06-14
* Lexer defended us against overlength plain identifiers, but not againstTom Lane2000-06-01
* Generated header files parse.h and fmgroids.h are now copied intoTom Lane2000-05-29
* define YY_NEVER_INTERACTIVE for flex, to persuade flex that it's notTom Lane2000-05-27
* Modify lexing of multi-char operators per pghackers discussion aroundTom Lane2000-03-18
* Performance improvement for lexing long strings: increase flex'sTom Lane2000-03-13
* Finish cleaning up backend's handling of /* ... */ and -- comments,Tom Lane2000-03-11
* Change parse-time representation of float literals (which include oversizeTom Lane2000-02-21
* Clean up scan.l's handling of \r vs \n --- they are reliably treated asTom Lane2000-02-19
* Add:Bruce Momjian2000-01-26
* updated install filePeter Eisentraut2000-01-23
* Clean up longstanding gcc warnings by adding missing externTom Lane2000-01-20
* Remove fixed-size literal buffer from scan.l, and repairTom Lane1999-10-18
* Allow \r as whitespace.Bruce Momjian1999-10-09
* Fix for "--" comment and no trailing newline, as seen in Perl.Bruce Momjian1999-10-08
* Reverse out last scan.l patch for minus handling.\Bruce Momjian1999-09-28
* Sorry, guys. Here is the ultimate patch which keeps the entireBruce Momjian1999-09-27
* Following advice from Michael Ansley, I broke up the patch inBruce Momjian1999-09-27
* Eliminate token length assumption in scanstr().Tom Lane1999-09-11
* Mike Ansley's fixes for long queries. This change justTom Lane1999-09-07
* Move some system includes into c.h, and remove duplicates.Bruce Momjian1999-07-17
* Final cleanup.Bruce Momjian1999-07-16
* Add ^ precidence.Bruce Momjian1999-07-08
* Keep long non-quoted numeric strings *as* untyped strings if they failThomas G. Lockhart1999-05-12
* here are some patches for 6.5.0 which I already submitted but have neverBruce Momjian1999-05-03
* Have % operator have precedence like /.Bruce Momjian1999-03-17
* Change my-function-name-- to my_function_name, and optimizer renames.Bruce Momjian1999-02-13
* Simplify lexer's rules for string constants, eliminate potential buffer overrun.Tom Lane1999-02-07
* Make functions static or ifdef NOT_USED. Prevent pg_version creation.Bruce Momjian1998-10-08
* Renaming cleanup, no pgindent yet.Bruce Momjian1998-09-01
* Fix scanner name length trimming.Bruce Momjian1998-08-29
* Truncate identifiers at NAMEDATALEN length.Bruce Momjian1998-08-29
* Hi, here are the patches to enhance existing MB handling. This timeBruce Momjian1998-06-16
* Allow more variations on valid floating point numbers (e.g. ".1", "1e6").Thomas G. Lockhart1998-05-09
* Temporarily back out fixes for unary minus parsing.Thomas G. Lockhart1998-04-08
* Allow parsing expressions with ") -" (scan.l, scan.c only).Thomas G. Lockhart1998-03-18
* Fix parsing for <identifier>-<number> which was mis-identified as a unaryThomas G. Lockhart1998-02-18
* Automatically promote out of range integers to floats.Thomas G. Lockhart1998-02-11
* Change some ABORTS to ERROR. Add line number when COPY Failure.Bruce Momjian1998-01-05
* Change elog(WARN) to elog(ERROR) and elog(ABORT).Bruce Momjian1998-01-05
* Fix tolower loops to go in proper direction for cache.Bruce Momjian1997-12-05
* Add comments and move a few declaration blocks to help readability.Thomas G. Lockhart1997-11-30
* Remove all time travel stuff. Small parser cleanup.Bruce Momjian1997-11-20
* Implement SQL92 binary and hexadecimal string decoding (b'10' and x'1F').Thomas G. Lockhart1997-11-17
* Add flag to supress one compiler warning regarding unused "unput" functionThomas G. Lockhart1997-11-14
* Add support for delimited identifiers. Include new exclusive state "xd".Thomas G. Lockhart1997-10-30
* Fix for international identifiers, from Tatsuo IshiiBruce Momjian1997-10-30
* Generate error on large integer.Bruce Momjian1997-10-30
* Include SQL/92 string continuation across newlines.Thomas G. Lockhart1997-10-15