skip to Main Content

Postgresql – postgres table functions

Hi I have some questions regarding table functions in PostgreSQL From https://www.postgresql.org/docs/16/queries-table-expressions.html#QUERIES-TABLEFUNCTIONS CREATE TABLE foo (fooid int, foosubid int, fooname text); CREATE FUNCTION getfoo(int) RETURNS SETOF foo AS $$ SELECT * FROM foo WHERE fooid = $1; $$ LANGUAGE SQL;…

VIEW QUESTION

Firebase functions V2: Memory Configuration

How to set options {memory: "1GiB"} on firestore triggered cloud function. I can't find it in the documentation: https://firebase.google.com/docs/functions/2nd-gen-upgrade There is an exemple for https functions but it seem to have a different syntaxe for onDocumentCreated(), etc.. export const statisticsDataCreated…

VIEW QUESTION
Back To Top
Search