GithubHelp home page GithubHelp logo

Comments (4)

knownasilya avatar knownasilya commented on September 7, 2024

maybe leave a comment in the code why it is 👯

from cartodb.

calvinmetcalf avatar calvinmetcalf commented on September 7, 2024

honestly I put it in because I thought maybe it would be cool, never tested or anything

from cartodb.

knownasilya avatar knownasilya commented on September 7, 2024

Would love to know why it broke things though, not really familiar with all the things this lib does.

from cartodb.

calvinmetcalf avatar calvinmetcalf commented on September 7, 2024

so the way we parameterize stuff is by going like this for most stuff

BEGIN;
prepare _named_expression(numeric, text, boolean) as
select foo from bar where col = $1 and col2 = $2 and col3 = $3;
execute _named_expression(numeric $$5$$, $cartodb$string$cartodb$, true);
commit;

but for inserts we did

BEGIN;
prepare _named_expression(numeric,text, boolean) as
insert into table (col1, col2, col3) values ($1, $2, $3);
execute _named_expression(numeric $$1$$, $cartodb$string1$cartodb$, true);
execute _named_expression(numeric $$2$$, $cartodb$string2$cartodb$, false);
execute _named_expression(numeric $$3$$, $cartodb$string3$cartodb$, true);
commit;

but i had no proof that this was actually a speedup and assumed it was just me being clever so when I did the stuff to make it so you could quote columns and tables i changed it to be

BEGIN;
prepare _named_expression(numeric,text, boolean) as
insert into table (col1, col2, col3) values ($1, $2, $3), ($4, $5, $6),($7, $8, $9);
execute _named_expression(numeric $$1$$, $cartodb$string1$cartodb$, true, numeric $$2$$, $cartodb$string2$cartodb$, false, numeric $$3$$, $cartodb$string3$cartodb$, true);
commit;

which seems to be much less performant

from cartodb.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.