Skip to content

Commit

Permalink
fix for oracle cloud db
Browse files Browse the repository at this point in the history
  • Loading branch information
Uroš Marolt committed Jul 31, 2024
1 parent 2f32acb commit 431fd00
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions backend/src/database/migrations/R__array_accum.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
CREATE OR REPLACE AGGREGATE array_accum (ANYARRAY) (
SFUNC = array_append,
STYPE = ANYARRAY,
CREATE OR REPLACE AGGREGATE array_accum (anycompatiblearray) (
SFUNC = array_cat,
STYPE = anycompatiblearray,
INITCOND = '{}'
);
);

0 comments on commit 431fd00

Please sign in to comment.