Closed (fixed)
Project:
Flickr
Version:
5.x-1.1
Component:
flickr (main module)
Priority:
Normal
Category:
Feature request
Assigned:
Reporter:
Created:
1 Nov 2007 at 16:28 UTC
Updated:
16 Feb 2008 at 23:44 UTC
Jump to comment: Most recent file
Comments
Comment #1
andrewlevine commentedCan you post the CREATE TABLE queries that you used? We'll need more info to debug. Not sure what queries are MySQL specific if any.
Comment #2
artfikan commentedSure, this is what I get when I export the table:
--
-- PostgreSQL database dump
--
SET client_encoding = 'LATIN1';
SET check_function_bodies = false;
SET SESSION AUTHORIZATION 'adm_cac';
SET search_path = public, pg_catalog;
--
-- TOC entry 3 (OID 2317770)
-- Name: flickr_users; Type: TABLE; Schema: public; Owner: adm_cac
--
CREATE TABLE flickr_users (
identifier character varying(64) NOT NULL,
nsid character varying(64) NOT NULL,
uid integer DEFAULT 0 NOT NULL
);
--
-- Data for TOC entry 5 (OID 2317770)
-- Name: flickr_users; Type: TABLE DATA; Schema: public; Owner: adm_cac
--
COPY flickr_users (identifier, nsid, uid) FROM stdin;
1
\.
--
-- TOC entry 4 (OID 2318461)
-- Name: PRIMARY; Type: INDEX; Schema: public; Owner: adm_cac
--
CREATE INDEX "PRIMARY" ON flickr_users USING btree (uid);
----------------
I hope that can help.
Comment #3
HorsePunchKid commentedHere's a patch I just whipped up. Works for me!
Comment #4
HorsePunchKid commentedStill working fine + pretty trivial patch = RTBC?
Comment #5
drewish commentedcommitted to DRUPAL-5.
Comment #6
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.