Mohammad Dashti

Results 16 issues of Mohammad Dashti

Hi all, I have the following (minimized) program: ```rust #[macro_use] extern crate serde_derive; extern crate serde; extern crate serde_xml_rs as serde_xml; #[derive(Deserialize, Debug)] pub struct ListBucketResult { #[serde(rename = "IsTruncated")]...

enhancement

There were some related discussions here: https://github.com/MikeInnes/MacroTools.jl/commit/18448ba5e26624345f6f4eef9f05e4aa09b03387#r30081444 This one-liner fixes backward compatibility with 0.6. All the 0.6 packages that depend on MacroTools and are marked as `__precompile__(true)` won't work without...

Let's say we have the following module structure, where `ChildCxxWrap` is a module that uses `CxxWrap`: ```julia module Parent module ChildCxxWrap using CxxWrap const depsfile = joinpath(Pkg.dir("Parent"), "deps", "deps.jl") if...

Currently, this invocation of `ZonedDateTime` constructor throws an error: ```julia julia> ZonedDateTime("1988-04-29 09:00", "yyyy-mm-dd HH:MM") ERROR: ArgumentError: Unable to parse string "1988-04-29 09:00" using format dateformat"yyyy-mm-dd HH:MM". Unknown time zone...

Currently we have trivial optimization of converting "X = Y \* 0" to "X = 0" in NumericOpsExpOpt trait and it works fine for integers, but it is not a...

bug

I am using LMS for my project, but unfortunately, it is not possible (or at best, not that easy) to use it for my whole system. Currently, it is only...

feature

**Is your feature request related to a problem? Please describe.** Currently, `pgcat` is using [sqlparser-rs](https://github.com/crystalcld/sqlparser-rs) to parse user queries. That's taken us to where we are today, which is great....

Currently, not all acceptable PostgreSQL queries are parsed correctly by `sqlparser`. As a long-term direction, I think we should invest in making it possible. I created issue #620 to track...

This is a preview for the `transparent` mode, which transparently supports distributed transactions (with two-phase commit). The current PR is created for the purpose of getting your feedback. The main...

The `truncate` command can accept a list of tables (as per the documentation: https://www.postgresql.org/docs/current/sql-truncate.html). This PR fixes the current limitation that only one table can be used in the `TRUNCATE`...