Hengfeng Li
Hengfeng Li
Hi, Currently, when the user has already logged into Facebook and `hello('facebook').login({ force: true })` is called, the login window only asks for re-entering the password (not for email). I...
The following statement is from a discussion: It is nice that spanner package has Decoder interface, but we don't use it because it is hard to reuse buffers (needed for...
Hi there, I am using the prepared statement in mysql. But when I put multiple statements into con:query, I got errors: ``` con:query(string.format("SET @p1 = %d; SET @p2 = %d;...
* Paramerized queries (encoding): PG.OID is passed in as the int64 in Go and will be converted to TypeCode_INT64. It does not need a specific type. * Decoding PG.OID values:...
Hi there, I would like to uncompress some hadoop-format snappy files. Is it possible to do it with `snappy-java`? Cheers.
This adds the support to run TPCC benchmarking with the following runners: - PGAdapter + PG JDBC - Spanner JDBC In addition, we enabled the client library's metrics and added...
Mutations per commit has been updated to [80,000](https://cloud.google.com/spanner/quotas#limits-for). We should update it, e.g., in https://github.com/GoogleCloudPlatform/pgadapter/blob/postgresql-dialect/docs/copy.md#non-atomic-copy-from-stdin-example.
When we use `pg_dump`, we get the following command, e.g., ``` COPY public.table1 (id, col1, col2, col3, col4, col5, col6, col7, col8, col9, col10) FROM stdin; ``` But currently, we...
Currently, this is set to 10,000 in https://github.com/GoogleCloudPlatform/spanner-migration-tool/blob/89802cf90407ca0785e426a0044d03da35f59e80/spanner/writer/batchwriter.go#L37. We should increase it to a higher limit as Spanner now supports 80,000 mutations per commit ([doc](https://cloud.google.com/spanner/quotas#limits-for)).