This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
postgres=# CREATE TABLE t (a int); | |
CREATE TABLE | |
postgres=# SELECT * FROM pg_attrdef; | |
oid | adrelid | adnum | adbin | |
-----+---------+-------+------- | |
(0 rows) | |
postgres=# INSERT INTO t VALUES (1); | |
INSERT 0 1 | |
postgres=# ALTER TABLE t ADD b int DEFAULT 2; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit 11eef04f83d6995c9e64654f99f0154f6f422348 | |
Author: Andreas Karlsson <[email protected]> | |
Date: Sun Oct 29 01:35:34 2017 +0200 | |
PoC | |
diff --git a/src/backend/utils/adt/ri_triggers.c b/src/backend/utils/adt/ri_triggers.c | |
index ed11c7a265..166d6c6970 100644 | |
--- a/src/backend/utils/adt/ri_triggers.c | |
+++ b/src/backend/utils/adt/ri_triggers.c |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row"> | |
<!-- SIDEBAR, CASINO GAMES TREE --> | |
<div id="casino-games-sidebar"> | |
<div class="casino-sidebar-box game-menu"> | |
<<<<<<< HEAD | |
<% box(:theme => 'featured-2', :heading => 'Browse our games', :no_box => whitebet_brand? ) do %> | |
<ul> | |
<% | |
@game_categories.each_with_index do |category, i| | |
first = i == 0 ? 'first' : '' |