Joe
Joe
you mean like this ? > create table users (name, age, height, actived, bytes, create_at, update_at, deleted_at, email, role, pass) values ("jinzhu?", 1, 999.990000, true, "12345", "2020-02-22 19:10:10 PST", "2020-02-23...
> if so, how does the sql look like ? `DB.Find(&results, emptyConds)` could be like `select * from xxx where NULL` or `select * from xxx where in (NULL)` ?
> you need to build this via CMAKE how ?
@jonathandune ROAPI supports Postgres. The error you encountered is because your schema is not correct. Change the URL to `postgresql://postgres:dune@localhost:5432/postgres`.
This error arises from crate (`postgres`): ```rust /// Opens a connection to a PostgreSQL database. pub fn connect(&self, tls: T) -> Result where T: MakeTlsConnect + 'static + Send, T::TlsConnect:...
> It looks like we are using the wrong connectorx api, we are effectively calling a blocking api from an async function, would be better to call the async `self.config.connect(tls)`...
Any plans to support parsing SQL directly?
> > Any plans to support parsing SQL directly? > > Absolutely. I think a logical next step would be to add builders for the parsed types, which could be...
I found a problem here. When we use a dynamic file source, it makes the logical plan resolve the relations using the file path, which makes the logical plan unreadable....
> > Is there any way we can improve this? > > The root cause is that we directly use the path as the table name. I guess we can...