]> Untitled Git - lemmy.git/commitdiff
Travis
authorDessalines <tyhou13@gmx.com>
Sat, 6 Apr 2019 17:01:02 +0000 (10:01 -0700)
committerDessalines <tyhou13@gmx.com>
Sat, 6 Apr 2019 17:01:02 +0000 (10:01 -0700)
.travis.yml
server/migrations/2019-03-30-212058_create_post_view/up.sql

index 84d9cf8367bfd1904c6b58e47785a592d814c667..69c6bb17f6ad9f980e32ea9348fa5dcad839b081 100644 (file)
@@ -22,4 +22,4 @@ script:
 env:
   - DATABASE_URL=postgres://rrr:rrr@localhost/rrr
 addons:
-  postgresql: "10"
+  postgresql: "9.4"
index 79084a47e764401fac4ed6e911a98e59c254720e..95789c734b6927a2df10599cb05ebf01ef2f4e46 100644 (file)
@@ -5,7 +5,7 @@ create or replace function hot_rank(
 returns integer as $$
 begin
   -- hours_diff:=EXTRACT(EPOCH FROM (timezone('utc',now()) - published))/3600
-  return 10000*sign(score)*log(1 + abs(score)) / power(((EXTRACT(EPOCH FROM (timezone('utc',now()) - published))/3600) + 2), 1.8);
+  return floor(10000*sign(score)*log(1 + abs(score)) / power(((EXTRACT(EPOCH FROM (timezone('utc',now()) - published))/3600) + 2), 1.8))::integer;
 end; $$
 LANGUAGE plpgsql;