Configuration menu Browse the repository at this point in the history
Commits on Feb 24, 2022
Configuration menu Browse the repository at this point in the history
Commits on Feb 25, 2022
Configuration menu Browse the repository at this point in the history
Configuration menu Browse the repository at this point in the history
Commits on Feb 28, 2022
Configuration menu Browse the repository at this point in the history
Configuration menu Browse the repository at this point in the history
Commits on Mar 1, 2022
Configuration menu Browse the repository at this point in the history
Configuration menu Browse the repository at this point in the history
Configuration menu Browse the repository at this point in the history
Commits on Mar 2, 2022
Configuration menu Browse the repository at this point in the history
Commits on Mar 3, 2022
Configuration menu Browse the repository at this point in the history
Configuration menu Browse the repository at this point in the history
Configuration menu Browse the repository at this point in the history
Commits on Mar 5, 2022
fix: catch ExecutionException for op.getName (#1729) Following exception is thrown: java.util.concurrent.ExecutionException: com.google.api.gax.rpc.FailedPreconditionException: io.grpc.StatusRuntimeException: FAILED_PRECONDITION. So, changing the catch to catch ExecutionException as well. Catch both SpannerException and ExecutionException. Co-authored-by: Knut Olav Løite koloite@gmail.com Configuration menu Browse the repository at this point in the history
Commits on Mar 8, 2022
Configuration menu Browse the repository at this point in the history
Configuration menu Browse the repository at this point in the history
fix: PostgreSQL supports newline in quoted literals and identifiers PostgreSQL supports newline characters in string literals and quoted identifiers. Trying to execute a statement with a string literal or quoted identifier that contained a newline character would cause an 'Unclosed string literal' error. Fixes #1730
fix: typo Configuration menu Browse the repository at this point in the history
fix: PostgreSQL supports newline in quoted literals and identifiers PostgreSQL supports newline characters in string literals and quoted identifiers. Trying to execute a statement with a string literal or quoted identifier that contained a newline character would cause an 'Unclosed string literal' error. Fixes #1730
feat: parse query parameters in PostgreSQL query Adds a helper method to get the parameters from a PostgreSQL query. This is needed for DESCRIBE statement messages in PGAdapter, as it must return the data types of all query parameters in a query string. Even though this parser is not able to determine the parameter types, it is able to determine the number of parameters. This again makes it possible to PGAdapter to return Oid.UNSPECIFIED for each parameter in the query string, which is enough for most clients. Configuration menu Browse the repository at this point in the history
Configuration menu Browse the repository at this point in the history