summaryrefslogtreecommitdiff
path: root/ext/pdo_pgsql/tests
diff options
context:
space:
mode:
authorPablo Santiago Sánchez <phackwer@gmail.com>2016-07-27 22:12:56 -0300
committerAnatol Belski <ab@php.net>2016-08-02 14:34:30 +0200
commit90c6cbd09baa8802cd0d92ad13d9d791a3e4025d (patch)
tree9ef469fd8d4c2be918ababecd69c4b907b91e6f4 /ext/pdo_pgsql/tests
parentc9d3ff0c6e86398b9471428ab49c6a6fa47ae977 (diff)
downloadphp-git-90c6cbd09baa8802cd0d92ad13d9d791a3e4025d.tar.gz
- lastInsertId using Postgres Lastval() function
Diffstat (limited to 'ext/pdo_pgsql/tests')
-rw-r--r--ext/pdo_pgsql/tests/bug_last_insert_id.phpt36
1 files changed, 36 insertions, 0 deletions
diff --git a/ext/pdo_pgsql/tests/bug_last_insert_id.phpt b/ext/pdo_pgsql/tests/bug_last_insert_id.phpt
new file mode 100644
index 0000000000..af5d342798
--- /dev/null
+++ b/ext/pdo_pgsql/tests/bug_last_insert_id.phpt
@@ -0,0 +1,36 @@
+--TEST--
+currval() vs lastval() - PDO PgSQL Bug #1134 [BUG] New record, PostgreSQL and the Primary key https://github.com/phalcon/cphalcon/issues/1134
+--SKIPIF--
+<?php
+if (!extension_loaded('pdo') || !extension_loaded('pdo_pgsql')) die('skip not loaded');
+require dirname(__FILE__) . '/config.inc';
+require dirname(__FILE__) . '/../../../ext/pdo/tests/pdo_test.inc';
+PDOTest::skip();
+?>
+--FILE--
+<?php
+
+require dirname(__FILE__) . '/../../../ext/pdo/tests/pdo_test.inc';
+
+$db = PDOTest::test_factory(dirname(__FILE__) . '/common.phpt');
+
+$db->setAttribute(PDO::ATTR_STRINGIFY_FETCHES, false);
+
+@$db->query('CREATE TABLE test_last_id (id SERIAL NOT NULL, field1 VARCHAR(10))');
+
+$stmt = $db->prepare("INSERT INTO test_last_id (field1) VALUES ('test')");
+
+$stmt->execute();
+
+/**
+ * No sequence name informed
+ */
+var_dump($db->lastInsertId());
+/**
+ * Sequence name informed
+ */
+var_dump($db->lastInsertId('test_last_id_id_seq'));
+?>
+--EXPECTREGEX--
+string\([0-9]*\)\ \"[0-9]*\"
+string\([0-9]*\)\ \"[0-9]*\" \ No newline at end of file