Fix https urls

This commit is contained in:
aboyko
2024-11-01 15:08:37 -04:00
parent b31e63468f
commit 342f9f7fe2

View File

@@ -35,7 +35,7 @@ https://github.com/tunnelvisionlabs/antlr4-grammar-postgresql/blob/master/src/co
lexer grammar PostgreSqlLexer;
/* Reference:
* http://www.postgresql.org/docs/9.3/static/sql-syntax-lexical.html
* https://www.postgresql.org/docs/9.3/static/sql-syntax-lexical.html
*/
options {
@@ -1592,7 +1592,7 @@ UnterminatedBlockComment:
//
// http://www.postgresql.org/docs/9.3/static/app-psql.html
// https://www.postgresql.org/docs/9.3/static/app-psql.html
MetaCommand: '\\' (~ [\r\n\\"] | '"' ~ [\r\n"]* '"')* ('"' ~ [\r\n"]*)?;